Example #1
0
        private void AddChildTables(GridEXTable table, int indent)
        {
            Janus.Windows.EditControls.UIComboBoxItem item = new Janus.Windows.EditControls.UIComboBoxItem(table.Caption, table);
            item.ImageIndex = table.ImageIndex;
            item.IndentLevel = indent;

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

        }
Example #2
0
        private void loadComboLop()
        {
            DataTable tblLop = Memory.GetData("select malop,tenlop from LopGiaoLy where makhoi = ? and Nam = ?", new object[] { cbKhoi.SelectedItem.Value, cbNam.Text });

            cbLop.Items.Clear();
            Janus.Windows.EditControls.UIComboBoxItem it = new Janus.Windows.EditControls.UIComboBoxItem();
            it.Text  = " - - Chọn lớp - - ";
            it.Value = -1;
            cbLop.Items.Add(it);
            if (tblLop.Rows.Count > 0)
            {
                foreach (DataRow dr in tblLop.Rows)
                {
                    it       = new Janus.Windows.EditControls.UIComboBoxItem();
                    it.Value = dr["malop"];
                    it.Text  = dr["tenlop"].ToString();
                    cbLop.Items.Add(it);
                }
            }

            cbLop.SelectedIndex = 0;
        }
Example #3
0
        private void loadCmbDefaul()
        {
            int i;

            for (i = 2000; i < 2050; i++)
            {
                cbNam.Items.Add(i.ToString());
                if (i == NamGiaoLy + 1)
                {
                    cbNam.SelectedIndex = i - 2000;
                }
            }
            cbNam.Enabled = true;
            DataTable tblKhoi = Memory.GetData("select makhoi,tenkhoi from KhoiGiaoLy ");

            cbKhoi.ValueMember   = "makhoi";
            cbKhoi.DisplayMember = "tenkhoi";
            Janus.Windows.EditControls.UIComboBoxItem it = new Janus.Windows.EditControls.UIComboBoxItem();
            it.Text  = " - - Chọn khối - - ";
            it.Value = -1;
            cbKhoi.Items.Add(it);
            if (tblKhoi.Rows.Count > 0)
            {
                foreach (DataRow dr in tblKhoi.Rows)
                {
                    it       = new Janus.Windows.EditControls.UIComboBoxItem();
                    it.Value = dr["makhoi"];
                    it.Text  = dr["tenkhoi"].ToString();
                    cbKhoi.Items.Add(it);
                }
            }

            cbKhoi.SelectedIndex = 0;
            cbLop.Items.Add(" - - Chọn lớp - - ");
            cbLop.SelectedIndex = 0;
            this.cbKhoi.SelectedIndexChanged += new System.EventHandler(this.cbKhoi_SelectedIndexChanged);
            this.cbNam.SelectedIndexChanged  += new System.EventHandler(this.cbNam_SelectedIndexChanged);
        }
Example #4
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(FrmLogin));
     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();
     this.txtUserName       = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtPassWord       = new Janus.Windows.GridEX.EditControls.EditBox();
     this.cmdLogin          = new Janus.Windows.EditControls.UIButton();
     this.cmdExit           = new Janus.Windows.EditControls.UIButton();
     this.chkRemember       = new Janus.Windows.EditControls.UICheckBox();
     this.label1            = new System.Windows.Forms.Label();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     this.panel1            = new System.Windows.Forms.Panel();
     this.label2            = new System.Windows.Forms.Label();
     this.label3            = new System.Windows.Forms.Label();
     this.label4            = new System.Windows.Forms.Label();
     this.vbLine1           = new VNS.UCs.VBLine();
     this.progressBar1      = new System.Windows.Forms.ProgressBar();
     this.lblMsg            = new System.Windows.Forms.Label();
     this.label5            = new System.Windows.Forms.Label();
     this.lnkHelp           = new System.Windows.Forms.LinkLabel();
     this.toolTip1          = new System.Windows.Forms.ToolTip(this.components);
     this.cmdSettings       = new Janus.Windows.EditControls.UIButton();
     this.label6            = new System.Windows.Forms.Label();
     this.cbogiaodien       = new Janus.Windows.EditControls.UIComboBox();
     this.cboKhoaKCB        = new Janus.Windows.EditControls.UIComboBox();
     this.SuspendLayout();
     //
     // txtUserName
     //
     this.txtUserName.BackColor       = System.Drawing.Color.White;
     this.txtUserName.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtUserName.Font            = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtUserName.Location        = new System.Drawing.Point(125, 132);
     this.txtUserName.MaxLength       = 100;
     this.txtUserName.Name            = "txtUserName";
     this.txtUserName.Size            = new System.Drawing.Size(292, 21);
     this.txtUserName.TabIndex        = 1;
     this.txtUserName.VisualStyle     = Janus.Windows.GridEX.VisualStyle.Office2003;
     this.txtUserName.TextChanged    += new System.EventHandler(this.txtUserName_TextChanged);
     //
     // txtPassWord
     //
     this.txtPassWord.Font         = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPassWord.Location     = new System.Drawing.Point(125, 159);
     this.txtPassWord.MaxLength    = 100;
     this.txtPassWord.Name         = "txtPassWord";
     this.txtPassWord.PasswordChar = '*';
     this.txtPassWord.Size         = new System.Drawing.Size(292, 21);
     this.txtPassWord.TabIndex     = 2;
     this.txtPassWord.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2003;
     this.txtPassWord.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.txtPassWord_KeyDown);
     //
     // cmdLogin
     //
     this.cmdLogin.Font        = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdLogin.Location    = new System.Drawing.Point(152, 218);
     this.cmdLogin.Name        = "cmdLogin";
     this.cmdLogin.Size        = new System.Drawing.Size(101, 34);
     this.cmdLogin.TabIndex    = 3;
     this.cmdLogin.Text        = "Đăng nhập";
     this.cmdLogin.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
     this.cmdLogin.Click      += new System.EventHandler(this.cmdLogin_Click);
     //
     // cmdExit
     //
     this.cmdExit.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cmdExit.Font         = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdExit.ImageSize    = new System.Drawing.Size(24, 24);
     this.cmdExit.Location     = new System.Drawing.Point(268, 218);
     this.cmdExit.Name         = "cmdExit";
     this.cmdExit.Size         = new System.Drawing.Size(101, 34);
     this.cmdExit.TabIndex     = 4;
     this.cmdExit.TabStop      = false;
     this.cmdExit.Text         = "&Thoát(Esc)";
     this.cmdExit.VisualStyle  = Janus.Windows.UI.VisualStyle.Office2007;
     this.cmdExit.Click       += new System.EventHandler(this.cmdExit_Click);
     //
     // chkRemember
     //
     this.chkRemember.BackColor       = System.Drawing.Color.Transparent;
     this.chkRemember.Font            = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkRemember.Location        = new System.Drawing.Point(126, 223);
     this.chkRemember.Name            = "chkRemember";
     this.chkRemember.Size            = new System.Drawing.Size(286, 23);
     this.chkRemember.TabIndex        = 3;
     this.chkRemember.TabStop         = false;
     this.chkRemember.Text            = "Ghi lại thông tin cho lần đăng nhập kế tiếp?";
     this.chkRemember.Visible         = false;
     this.chkRemember.VisualStyle     = Janus.Windows.UI.VisualStyle.OfficeXP;
     this.chkRemember.CheckedChanged += new System.EventHandler(this.chkRemember_CheckedChanged);
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font      = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.label1.Location  = new System.Drawing.Point(114, 24);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(303, 32);
     this.label1.TabIndex  = 7;
     this.label1.Text      = "ĐĂNG NHẬP HỆ THỐNG";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panel1
     //
     this.panel1.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
     this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.panel1.Location = new System.Drawing.Point(4, -1);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(104, 84);
     this.panel1.TabIndex = 8;
     //
     // label2
     //
     this.label2.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location  = new System.Drawing.Point(27, 132);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(95, 21);
     this.label2.TabIndex  = 9;
     this.label2.Text      = "Tên đăng nhập:";
     this.label2.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(27, 157);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(95, 23);
     this.label3.TabIndex  = 10;
     this.label3.Text      = "Mật khẩu:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label4
     //
     this.label4.Font      = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.label4.Location  = new System.Drawing.Point(111, 51);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(301, 26);
     this.label4.TabIndex  = 11;
     this.label4.Text      = "Mời bạn nhập Tên đăng nhập+mật khẩu";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.label4.Visible   = false;
     //
     // vbLine1
     //
     this.vbLine1._FontColor = System.Drawing.SystemColors.HotTrack;
     this.vbLine1.Anchor     = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.vbLine1.BackColor = System.Drawing.Color.Transparent;
     this.vbLine1.Font      = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.vbLine1.FontText  = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.vbLine1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.vbLine1.Location  = new System.Drawing.Point(0, 84);
     this.vbLine1.Margin    = new System.Windows.Forms.Padding(4);
     this.vbLine1.Name      = "vbLine1";
     this.vbLine1.Size      = new System.Drawing.Size(473, 22);
     this.vbLine1.TabIndex  = 12;
     this.vbLine1.YourText  = "Thông tin đăng nhập";
     //
     // progressBar1
     //
     this.progressBar1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.progressBar1.Location = new System.Drawing.Point(0, 267);
     this.progressBar1.Name     = "progressBar1";
     this.progressBar1.Size     = new System.Drawing.Size(445, 16);
     this.progressBar1.TabIndex = 14;
     //
     // 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(0, 246);
     this.lblMsg.Name      = "lblMsg";
     this.lblMsg.Size      = new System.Drawing.Size(445, 21);
     this.lblMsg.TabIndex  = 15;
     this.lblMsg.Text      = "Msg";
     this.lblMsg.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label5
     //
     this.label5.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location  = new System.Drawing.Point(27, 103);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(95, 23);
     this.label5.TabIndex  = 16;
     this.label5.Text      = "Chọn giao diện:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lnkHelp
     //
     this.lnkHelp.AutoSize     = true;
     this.lnkHelp.Font         = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lnkHelp.Location     = new System.Drawing.Point(393, 252);
     this.lnkHelp.Name         = "lnkHelp";
     this.lnkHelp.Size         = new System.Drawing.Size(53, 15);
     this.lnkHelp.TabIndex     = 17;
     this.lnkHelp.TabStop      = true;
     this.lnkHelp.Text         = "Trợ giúp";
     this.lnkHelp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkHelp_LinkClicked);
     //
     // toolTip1
     //
     this.toolTip1.IsBalloon    = true;
     this.toolTip1.ToolTipTitle = "Trợ giúp";
     //
     // cmdSettings
     //
     this.cmdSettings.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdSettings.Font   = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdSettings.Image  = ((System.Drawing.Image)(resources.GetObject("cmdSettings.Image")));
     this.cmdSettings.ImageHorizontalAlignment = Janus.Windows.EditControls.ImageHorizontalAlignment.Center;
     this.cmdSettings.ImageSize             = new System.Drawing.Size(23, 23);
     this.cmdSettings.Location              = new System.Drawing.Point(415, 0);
     this.cmdSettings.Name                  = "cmdSettings";
     this.cmdSettings.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
     this.cmdSettings.Office2007CustomColor = System.Drawing.Color.White;
     this.cmdSettings.Size                  = new System.Drawing.Size(35, 28);
     this.cmdSettings.TabIndex              = 546;
     this.cmdSettings.TabStop               = false;
     this.toolTip1.SetToolTip(this.cmdSettings, "Cấu hình ứng dụng");
     this.cmdSettings.ToolTipText = "Settings";
     this.cmdSettings.Visible     = false;
     this.cmdSettings.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
     this.cmdSettings.Click      += new System.EventHandler(this.cmdSettings_Click_1);
     //
     // label6
     //
     this.label6.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location  = new System.Drawing.Point(27, 184);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(95, 23);
     this.label6.TabIndex  = 19;
     this.label6.Text      = "Khoa làm việc:";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cbogiaodien
     //
     this.cbogiaodien.BackColor        = System.Drawing.SystemColors.Menu;
     this.cbogiaodien.BorderStyle      = Janus.Windows.UI.BorderStyle.Flat;
     this.cbogiaodien.Font             = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.IsSeparator       = false;
     uiComboBoxItem1.Text              = "Giao diện menu truyền thống";
     uiComboBoxItem1.Value             = 1;
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator       = false;
     uiComboBoxItem2.Text              = "Giao diện chức năng Outlook";
     uiComboBoxItem2.Value             = 0;
     this.cbogiaodien.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2
     });
     this.cbogiaodien.Location    = new System.Drawing.Point(125, 105);
     this.cbogiaodien.Name        = "cbogiaodien";
     this.cbogiaodien.Size        = new System.Drawing.Size(292, 21);
     this.cbogiaodien.TabIndex    = 610;
     this.cbogiaodien.TabStop     = false;
     this.cbogiaodien.Text        = "Chọn giao diện hiển thị";
     this.cbogiaodien.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
     //
     // cboKhoaKCB
     //
     this.cboKhoaKCB.BackColor         = System.Drawing.SystemColors.Menu;
     this.cboKhoaKCB.BorderStyle       = Janus.Windows.UI.BorderStyle.Flat;
     this.cboKhoaKCB.Font              = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator       = false;
     uiComboBoxItem3.Text              = "Nữ";
     uiComboBoxItem3.Value             = 1;
     uiComboBoxItem4.FormatStyle.Alpha = 0;
     uiComboBoxItem4.IsSeparator       = false;
     uiComboBoxItem4.Text              = "Nam";
     uiComboBoxItem4.Value             = 0;
     uiComboBoxItem5.FormatStyle.Alpha = 0;
     uiComboBoxItem5.IsSeparator       = false;
     uiComboBoxItem5.Text              = "Khác";
     uiComboBoxItem5.Value             = 2;
     this.cboKhoaKCB.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem3,
         uiComboBoxItem4,
         uiComboBoxItem5
     });
     this.cboKhoaKCB.Location    = new System.Drawing.Point(125, 186);
     this.cboKhoaKCB.Name        = "cboKhoaKCB";
     this.cboKhoaKCB.Size        = new System.Drawing.Size(292, 21);
     this.cboKhoaKCB.TabIndex    = 611;
     this.cboKhoaKCB.TabStop     = false;
     this.cboKhoaKCB.Text        = "Chọn khoa làm việc";
     this.cboKhoaKCB.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
     //
     // FrmLogin
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize    = new System.Drawing.Size(445, 283);
     this.ControlBox    = false;
     this.Controls.Add(this.cmdExit);
     this.Controls.Add(this.cmdLogin);
     this.Controls.Add(this.cboKhoaKCB);
     this.Controls.Add(this.cbogiaodien);
     this.Controls.Add(this.cmdSettings);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.lnkHelp);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.lblMsg);
     this.Controls.Add(this.progressBar1);
     this.Controls.Add(this.vbLine1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.txtPassWord);
     this.Controls.Add(this.txtUserName);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.chkRemember);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.KeyPreview      = true;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FrmLogin";
     this.ShowIcon        = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Người dùng";
     this.TopMost         = true;
     this.Load           += new System.EventHandler(this.frm_Login_Load);
     this.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.frm_Login_KeyDown);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #5
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Janus.Windows.GridEX.GridEXLayout grdData_DesignTimeLayout     = new Janus.Windows.GridEX.GridEXLayout();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(frmPrintList));
     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();
     this.xLabel1        = new MMIS.Component.XLabel();
     this.xLabel2        = new MMIS.Component.XLabel();
     this.xQueryEditBox1 = new MMIS.Component.XQueryEditBox();
     this.cboStatus      = new MMIS.Component.XQueryCombobox();
     this.lblStatus      = new MMIS.Component.XLabel();
     this.xLabel3        = new MMIS.Component.XLabel();
     this.dtBegin        = new MMIS.Component.XQueryDatePicker();
     this.dtEnd          = new MMIS.Component.XQueryDatePicker();
     this.btnPrint       = new MMIS.Component.XButton();
     this.btnModify      = new MMIS.Component.XButton();
     this.btnDel         = new MMIS.Component.XButton();
     this.xSelectEquipmentCustEditBox1 = new MMIS.UI.XSelectEquipmentCustEditBox();
     this.xQueryCheckBox1 = new MMIS.Component.XQueryCheckBox();
     this.xQueryCheckBox2 = new MMIS.Component.XQueryCheckBox();
     ((System.ComponentModel.ISupportInitialize)(this.grdData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpQuery)).BeginInit();
     this.grpQuery.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xCommandManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmRight)).BeginInit();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ListToolBar)).BeginInit();
     this.panel3.SuspendLayout();
     this.panel7.SuspendLayout();
     this.panel8.SuspendLayout();
     this.SuspendLayout();
     //
     // grdData
     //
     grdData_DesignTimeLayout.LayoutString = resources.GetString("grdData_DesignTimeLayout.LayoutString");
     this.grdData.DesignTimeLayout         = grdData_DesignTimeLayout;
     this.grdData.Font   = new System.Drawing.Font("微软雅黑", 9F);
     this.grdData.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.grdData.Size   = new System.Drawing.Size(989, 408);
     //
     // grpQuery
     //
     this.grpQuery.Controls.Add(this.xQueryCheckBox2);
     this.grpQuery.Controls.Add(this.xQueryCheckBox1);
     this.grpQuery.Controls.Add(this.dtEnd);
     this.grpQuery.Controls.Add(this.dtBegin);
     this.grpQuery.Controls.Add(this.xLabel3);
     this.grpQuery.Controls.Add(this.cboStatus);
     this.grpQuery.Controls.Add(this.lblStatus);
     this.grpQuery.Controls.Add(this.xQueryEditBox1);
     this.grpQuery.Controls.Add(this.xLabel2);
     this.grpQuery.Controls.Add(this.xSelectEquipmentCustEditBox1);
     this.grpQuery.Controls.Add(this.xLabel1);
     this.grpQuery.Location = new System.Drawing.Point(7, 5);
     this.grpQuery.Margin   = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.grpQuery.Size     = new System.Drawing.Size(996, 53);
     this.grpQuery.Controls.SetChildIndex(this.btnQuery, 0);
     this.grpQuery.Controls.SetChildIndex(this.chkChecked, 0);
     this.grpQuery.Controls.SetChildIndex(this.xLabel1, 0);
     this.grpQuery.Controls.SetChildIndex(this.xSelectEquipmentCustEditBox1, 0);
     this.grpQuery.Controls.SetChildIndex(this.xLabel2, 0);
     this.grpQuery.Controls.SetChildIndex(this.xQueryEditBox1, 0);
     this.grpQuery.Controls.SetChildIndex(this.lblStatus, 0);
     this.grpQuery.Controls.SetChildIndex(this.cboStatus, 0);
     this.grpQuery.Controls.SetChildIndex(this.xLabel3, 0);
     this.grpQuery.Controls.SetChildIndex(this.dtBegin, 0);
     this.grpQuery.Controls.SetChildIndex(this.dtEnd, 0);
     this.grpQuery.Controls.SetChildIndex(this.xQueryCheckBox1, 0);
     this.grpQuery.Controls.SetChildIndex(this.xQueryCheckBox2, 0);
     //
     // btnQuery
     //
     this.btnQuery.Location = new System.Drawing.Point(4371, 16);
     this.btnQuery.Margin   = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnQuery.Size     = new System.Drawing.Size(73, 26);
     //
     // panel2
     //
     this.panel2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.panel2.Size   = new System.Drawing.Size(1009, 66);
     //
     // ListToolBar
     //
     this.ListToolBar.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     //
     // panel3
     //
     this.panel3.Location = new System.Drawing.Point(0, 66);
     this.panel3.Margin   = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.panel3.Size     = new System.Drawing.Size(1009, 457);
     //
     // panel7
     //
     this.panel7.Controls.Add(this.btnDel);
     this.panel7.Controls.Add(this.btnModify);
     this.panel7.Controls.Add(this.btnPrint);
     this.panel7.Location = new System.Drawing.Point(10, 418);
     this.panel7.Margin   = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.panel7.Size     = new System.Drawing.Size(989, 39);
     this.panel7.Visible  = true;
     //
     // panel8
     //
     this.panel8.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.panel8.Size   = new System.Drawing.Size(989, 408);
     //
     // imageList
     //
     this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.Images.SetKeyName(0, "");
     this.imageList.Images.SetKeyName(1, "");
     this.imageList.Images.SetKeyName(2, "");
     this.imageList.Images.SetKeyName(3, "");
     this.imageList.Images.SetKeyName(4, "");
     this.imageList.Images.SetKeyName(5, "");
     this.imageList.Images.SetKeyName(6, "");
     this.imageList.Images.SetKeyName(7, "");
     this.imageList.Images.SetKeyName(8, "");
     this.imageList.Images.SetKeyName(9, "");
     this.imageList.Images.SetKeyName(10, "");
     this.imageList.Images.SetKeyName(11, "");
     this.imageList.Images.SetKeyName(12, "");
     this.imageList.Images.SetKeyName(13, "");
     this.imageList.Images.SetKeyName(14, "");
     this.imageList.Images.SetKeyName(15, "");
     this.imageList.Images.SetKeyName(16, "");
     this.imageList.Images.SetKeyName(17, "");
     this.imageList.Images.SetKeyName(18, "");
     this.imageList.Images.SetKeyName(19, "");
     this.imageList.Images.SetKeyName(20, "");
     this.imageList.Images.SetKeyName(21, "");
     this.imageList.Images.SetKeyName(22, "");
     this.imageList.Images.SetKeyName(23, "");
     this.imageList.Images.SetKeyName(24, "");
     this.imageList.Images.SetKeyName(25, "");
     this.imageList.Images.SetKeyName(26, "");
     this.imageList.Images.SetKeyName(27, "");
     this.imageList.Images.SetKeyName(28, "");
     this.imageList.Images.SetKeyName(29, "");
     this.imageList.Images.SetKeyName(30, "");
     this.imageList.Images.SetKeyName(31, "");
     this.imageList.Images.SetKeyName(32, "");
     this.imageList.Images.SetKeyName(33, "");
     this.imageList.Images.SetKeyName(34, "");
     this.imageList.Images.SetKeyName(35, "");
     this.imageList.Images.SetKeyName(36, "");
     this.imageList.Images.SetKeyName(37, "");
     this.imageList.Images.SetKeyName(38, "");
     this.imageList.Images.SetKeyName(39, "");
     this.imageList.Images.SetKeyName(40, "");
     this.imageList.Images.SetKeyName(41, "");
     this.imageList.Images.SetKeyName(42, "");
     this.imageList.Images.SetKeyName(43, "");
     this.imageList.Images.SetKeyName(44, "");
     this.imageList.Images.SetKeyName(45, "");
     this.imageList.Images.SetKeyName(46, "");
     this.imageList.Images.SetKeyName(47, "");
     this.imageList.Images.SetKeyName(48, "");
     this.imageList.Images.SetKeyName(49, "");
     this.imageList.Images.SetKeyName(50, "");
     this.imageList.Images.SetKeyName(51, "");
     this.imageList.Images.SetKeyName(52, "");
     this.imageList.Images.SetKeyName(53, "");
     this.imageList.Images.SetKeyName(54, "");
     this.imageList.Images.SetKeyName(55, "");
     this.imageList.Images.SetKeyName(56, "");
     this.imageList.Images.SetKeyName(57, "");
     this.imageList.Images.SetKeyName(58, "");
     this.imageList.Images.SetKeyName(59, "");
     this.imageList.Images.SetKeyName(60, "");
     this.imageList.Images.SetKeyName(61, "");
     this.imageList.Images.SetKeyName(62, "");
     this.imageList.Images.SetKeyName(63, "");
     this.imageList.Images.SetKeyName(64, "");
     this.imageList.Images.SetKeyName(65, "");
     this.imageList.Images.SetKeyName(66, "");
     this.imageList.Images.SetKeyName(67, "");
     this.imageList.Images.SetKeyName(68, "");
     this.imageList.Images.SetKeyName(69, "");
     this.imageList.Images.SetKeyName(70, "");
     this.imageList.Images.SetKeyName(71, "");
     this.imageList.Images.SetKeyName(72, "");
     this.imageList.Images.SetKeyName(73, "");
     this.imageList.Images.SetKeyName(74, "");
     this.imageList.Images.SetKeyName(75, "");
     this.imageList.Images.SetKeyName(76, "");
     this.imageList.Images.SetKeyName(77, "");
     this.imageList.Images.SetKeyName(78, "");
     this.imageList.Images.SetKeyName(79, "");
     this.imageList.Images.SetKeyName(80, "");
     this.imageList.Images.SetKeyName(81, "");
     this.imageList.Images.SetKeyName(82, "");
     this.imageList.Images.SetKeyName(83, "");
     this.imageList.Images.SetKeyName(84, "");
     this.imageList.Images.SetKeyName(85, "");
     this.imageList.Images.SetKeyName(86, "");
     this.imageList.Images.SetKeyName(87, "");
     this.imageList.Images.SetKeyName(88, "");
     this.imageList.Images.SetKeyName(89, "");
     this.imageList.Images.SetKeyName(90, "");
     this.imageList.Images.SetKeyName(91, "");
     this.imageList.Images.SetKeyName(92, "");
     this.imageList.Images.SetKeyName(93, "");
     this.imageList.Images.SetKeyName(94, "");
     this.imageList.Images.SetKeyName(95, "");
     this.imageList.Images.SetKeyName(96, "");
     this.imageList.Images.SetKeyName(97, "");
     this.imageList.Images.SetKeyName(98, "");
     this.imageList.Images.SetKeyName(99, "");
     this.imageList.Images.SetKeyName(100, "");
     this.imageList.Images.SetKeyName(101, "");
     this.imageList.Images.SetKeyName(102, "");
     this.imageList.Images.SetKeyName(103, "");
     this.imageList.Images.SetKeyName(104, "");
     this.imageList.Images.SetKeyName(105, "");
     this.imageList.Images.SetKeyName(106, "");
     this.imageList.Images.SetKeyName(107, "");
     this.imageList.Images.SetKeyName(108, "");
     this.imageList.Images.SetKeyName(109, "");
     this.imageList.Images.SetKeyName(110, "");
     this.imageList.Images.SetKeyName(111, "");
     this.imageList.Images.SetKeyName(112, "");
     this.imageList.Images.SetKeyName(113, "");
     this.imageList.Images.SetKeyName(114, "");
     this.imageList.Images.SetKeyName(115, "");
     this.imageList.Images.SetKeyName(116, "");
     this.imageList.Images.SetKeyName(117, "");
     this.imageList.Images.SetKeyName(118, "");
     this.imageList.Images.SetKeyName(119, "");
     this.imageList.Images.SetKeyName(120, "");
     this.imageList.Images.SetKeyName(121, "");
     this.imageList.Images.SetKeyName(122, "");
     this.imageList.Images.SetKeyName(123, "");
     //
     // chkChecked
     //
     this.chkChecked.Location = new System.Drawing.Point(4292, 18);
     this.chkChecked.Margin   = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.chkChecked.Size     = new System.Drawing.Size(73, 22);
     //
     // xLabel1
     //
     this.xLabel1.AutoSize  = true;
     this.xLabel1.ForeColor = System.Drawing.Color.Black;
     this.xLabel1.Location  = new System.Drawing.Point(10, 22);
     this.xLabel1.Name      = "xLabel1";
     this.xLabel1.Size      = new System.Drawing.Size(56, 17);
     this.xLabel1.TabIndex  = 1001;
     this.xLabel1.Text      = "送检单位";
     //
     // xLabel2
     //
     this.xLabel2.AutoSize  = true;
     this.xLabel2.ForeColor = System.Drawing.Color.Black;
     this.xLabel2.Location  = new System.Drawing.Point(262, 22);
     this.xLabel2.Name      = "xLabel2";
     this.xLabel2.Size      = new System.Drawing.Size(56, 17);
     this.xLabel2.TabIndex  = 1003;
     this.xLabel2.Text      = "设备名称";
     //
     // xQueryEditBox1
     //
     this.xQueryEditBox1.IsAllowEmpty     = false;
     this.xQueryEditBox1.Location         = new System.Drawing.Point(320, 19);
     this.xQueryEditBox1.Name             = "xQueryEditBox1";
     this.xQueryEditBox1.QueryCheckBox    = null;
     this.xQueryEditBox1.QueryFieldName   = "EquipmentName";
     this.xQueryEditBox1.QueryOperateType = MMIS.Component.XQueryOperateType.Contain;
     this.xQueryEditBox1.Size             = new System.Drawing.Size(105, 23);
     this.xQueryEditBox1.TabIndex         = 1004;
     this.xQueryEditBox1.VisualStyle      = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // cboStatus
     //
     this.cboStatus.ComboStyle         = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.cboStatus.IsAllowEmpty       = false;
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.IsSeparator       = false;
     uiComboBoxItem1.Text = "";
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator       = false;
     uiComboBoxItem2.Text              = "接收";
     uiComboBoxItem2.Value             = "接收";
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator       = false;
     uiComboBoxItem3.Text              = "检定";
     uiComboBoxItem3.Value             = "检定";
     uiComboBoxItem4.FormatStyle.Alpha = 0;
     uiComboBoxItem4.IsSeparator       = false;
     uiComboBoxItem4.Text              = "核验";
     uiComboBoxItem4.Value             = "核验";
     uiComboBoxItem5.FormatStyle.Alpha = 0;
     uiComboBoxItem5.IsSeparator       = false;
     uiComboBoxItem5.Text              = "签发";
     uiComboBoxItem5.Value             = "签发";
     uiComboBoxItem6.FormatStyle.Alpha = 0;
     uiComboBoxItem6.IsSeparator       = false;
     uiComboBoxItem6.Text              = "制证";
     uiComboBoxItem6.Value             = "制证";
     this.cboStatus.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2,
         uiComboBoxItem3,
         uiComboBoxItem4,
         uiComboBoxItem5,
         uiComboBoxItem6
     });
     this.cboStatus.Location         = new System.Drawing.Point(493, 19);
     this.cboStatus.Name             = "cboStatus";
     this.cboStatus.QueryCheckBox    = null;
     this.cboStatus.QueryFieldName   = "CurrentStatus";
     this.cboStatus.QueryOperateType = MMIS.Component.XQueryOperateType.Equal;
     this.cboStatus.SelectedIndex    = 0;
     this.cboStatus.Size             = new System.Drawing.Size(103, 23);
     this.cboStatus.TabIndex         = 1009;
     this.cboStatus.VisualStyle      = Janus.Windows.UI.VisualStyle.Office2007;
     //
     // lblStatus
     //
     this.lblStatus.AutoSize  = true;
     this.lblStatus.ForeColor = System.Drawing.Color.Black;
     this.lblStatus.Location  = new System.Drawing.Point(433, 22);
     this.lblStatus.Name      = "lblStatus";
     this.lblStatus.Size      = new System.Drawing.Size(56, 17);
     this.lblStatus.TabIndex  = 1008;
     this.lblStatus.Text      = "当前状态";
     //
     // xLabel3
     //
     this.xLabel3.AutoSize  = true;
     this.xLabel3.ForeColor = System.Drawing.Color.Black;
     this.xLabel3.Location  = new System.Drawing.Point(602, 22);
     this.xLabel3.Name      = "xLabel3";
     this.xLabel3.Size      = new System.Drawing.Size(56, 17);
     this.xLabel3.TabIndex  = 1010;
     this.xLabel3.Text      = "接收时间";
     //
     // dtBegin
     //
     //
     //
     //
     this.dtBegin.DropDownCalendar.Name        = "";
     this.dtBegin.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
     this.dtBegin.Location         = new System.Drawing.Point(664, 19);
     this.dtBegin.Name             = "dtBegin";
     this.dtBegin.QueryCheckBox    = null;
     this.dtBegin.QueryFieldName   = "ReceiveDate";
     this.dtBegin.QueryOperateType = MMIS.Component.XQueryOperateType.MoreThanOrEqual;
     this.dtBegin.ShowCheckBox     = true;
     this.dtBegin.Size             = new System.Drawing.Size(109, 23);
     this.dtBegin.TabIndex         = 1011;
     this.dtBegin.VisualStyle      = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
     //
     // dtEnd
     //
     //
     //
     //
     this.dtEnd.DropDownCalendar.Name        = "";
     this.dtEnd.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
     this.dtEnd.Location         = new System.Drawing.Point(776, 19);
     this.dtEnd.Name             = "dtEnd";
     this.dtEnd.QueryCheckBox    = null;
     this.dtEnd.QueryFieldName   = "ReceiveDate";
     this.dtEnd.QueryOperateType = MMIS.Component.XQueryOperateType.LessThanOrEqual;
     this.dtEnd.ShowCheckBox     = true;
     this.dtEnd.Size             = new System.Drawing.Size(111, 23);
     this.dtEnd.TabIndex         = 1012;
     this.dtEnd.VisualStyle      = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
     //
     // btnPrint
     //
     this.btnPrint.Location    = new System.Drawing.Point(10, 8);
     this.btnPrint.Name        = "btnPrint";
     this.btnPrint.Size        = new System.Drawing.Size(131, 23);
     this.btnPrint.TabIndex    = 1013;
     this.btnPrint.Text        = "新增接收单";
     this.btnPrint.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
     this.btnPrint.Click      += new System.EventHandler(this.btnPrint_Click);
     //
     // btnModify
     //
     this.btnModify.Location    = new System.Drawing.Point(153, 8);
     this.btnModify.Name        = "btnModify";
     this.btnModify.Size        = new System.Drawing.Size(131, 23);
     this.btnModify.TabIndex    = 1013;
     this.btnModify.Text        = "修改接收单";
     this.btnModify.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
     this.btnModify.Click      += new System.EventHandler(this.btnModify_Click);
     //
     // btnDel
     //
     this.btnDel.Location    = new System.Drawing.Point(298, 8);
     this.btnDel.Name        = "btnDel";
     this.btnDel.Size        = new System.Drawing.Size(131, 23);
     this.btnDel.TabIndex    = 1013;
     this.btnDel.Text        = "删除接收单";
     this.btnDel.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
     this.btnDel.Click      += new System.EventHandler(this.btnDel_Click);
     //
     // xSelectEquipmentCustEditBox1
     //
     this.xSelectEquipmentCustEditBox1.ButtonStyle      = Janus.Windows.GridEX.EditControls.EditButtonStyle.Ellipsis;
     this.xSelectEquipmentCustEditBox1.DisplayMember    = "";
     this.xSelectEquipmentCustEditBox1.IsAllowEmpty     = false;
     this.xSelectEquipmentCustEditBox1.Location         = new System.Drawing.Point(70, 19);
     this.xSelectEquipmentCustEditBox1.Name             = "xSelectEquipmentCustEditBox1";
     this.xSelectEquipmentCustEditBox1.QueryCheckBox    = null;
     this.xSelectEquipmentCustEditBox1.QueryFieldName   = "EquipmentCustId";
     this.xSelectEquipmentCustEditBox1.QueryOperateType = MMIS.Component.XQueryOperateType.Equal;
     this.xSelectEquipmentCustEditBox1.ReadOnly         = true;
     this.xSelectEquipmentCustEditBox1.SelectedModel    = null;
     this.xSelectEquipmentCustEditBox1.Size             = new System.Drawing.Size(186, 23);
     this.xSelectEquipmentCustEditBox1.TabIndex         = 1002;
     this.xSelectEquipmentCustEditBox1.ValueMember      = "";
     this.xSelectEquipmentCustEditBox1.VisualStyle      = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // xQueryCheckBox1
     //
     this.xQueryCheckBox1.IsBoolValue            = false;
     this.xQueryCheckBox1.IsStringValue          = false;
     this.xQueryCheckBox1.Location               = new System.Drawing.Point(894, 18);
     this.xQueryCheckBox1.Model                  = null;
     this.xQueryCheckBox1.Name                   = "xQueryCheckBox1";
     this.xQueryCheckBox1.QueryCheckBox          = this.xQueryCheckBox1;
     this.xQueryCheckBox1.QueryCheckedValue      = "0";
     this.xQueryCheckBox1.QueryFieldName         = "InvoiceFlag";
     this.xQueryCheckBox1.QueryIsNotCheckedIsAll = true;
     this.xQueryCheckBox1.QueryNotCheckedValue   = "0";
     this.xQueryCheckBox1.QueryOperateType       = MMIS.Component.XQueryOperateType.Equal;
     this.xQueryCheckBox1.Size                   = new System.Drawing.Size(60, 23);
     this.xQueryCheckBox1.TabIndex               = 1013;
     this.xQueryCheckBox1.Text                   = "未开票";
     this.xQueryCheckBox1.VisualStyle            = Janus.Windows.UI.VisualStyle.Office2007;
     //
     // xQueryCheckBox2
     //
     this.xQueryCheckBox2.IsBoolValue            = false;
     this.xQueryCheckBox2.IsStringValue          = false;
     this.xQueryCheckBox2.Location               = new System.Drawing.Point(955, 17);
     this.xQueryCheckBox2.Model                  = null;
     this.xQueryCheckBox2.Name                   = "xQueryCheckBox2";
     this.xQueryCheckBox2.QueryCheckBox          = this.xQueryCheckBox2;
     this.xQueryCheckBox2.QueryCheckedValue      = "1";
     this.xQueryCheckBox2.QueryFieldName         = "InvoiceFlag";
     this.xQueryCheckBox2.QueryIsNotCheckedIsAll = true;
     this.xQueryCheckBox2.QueryNotCheckedValue   = "0";
     this.xQueryCheckBox2.QueryOperateType       = MMIS.Component.XQueryOperateType.Equal;
     this.xQueryCheckBox2.Size                   = new System.Drawing.Size(60, 23);
     this.xQueryCheckBox2.TabIndex               = 1014;
     this.xQueryCheckBox2.Text                   = "已开票";
     this.xQueryCheckBox2.VisualStyle            = Janus.Windows.UI.VisualStyle.Office2007;
     //
     // frmPrintList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1009, 551);
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name   = "frmPrintList";
     this.Text   = "接收单打印";
     ((System.ComponentModel.ISupportInitialize)(this.grdData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpQuery)).EndInit();
     this.grpQuery.ResumeLayout(false);
     this.grpQuery.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xCommandManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmRight)).EndInit();
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ListToolBar)).EndInit();
     this.panel3.ResumeLayout(false);
     this.panel7.ResumeLayout(false);
     this.panel8.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_chuyendoituongkcb));
            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();
            this.panel1 = new System.Windows.Forms.Panel();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.panel2 = new System.Windows.Forms.Panel();
            this.cmdSave = new Janus.Windows.EditControls.UIButton();
            this.cmdClose = new Janus.Windows.EditControls.UIButton();
            this.panel3 = new System.Windows.Forms.Panel();
            this.txtTuoi = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
            this.label46 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.label21 = new System.Windows.Forms.Label();
            this.label9 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.txtSoDT = new System.Windows.Forms.TextBox();
            this.label8 = new System.Windows.Forms.Label();
            this.label11 = new System.Windows.Forms.Label();
            this.txtTEN_BN = new System.Windows.Forms.TextBox();
            this.txtNamSinh = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
            this.cboPatientSex = new Janus.Windows.EditControls.UIComboBox();
            this.label7 = new System.Windows.Forms.Label();
            this.txtCMT = new System.Windows.Forms.TextBox();
            this.label17 = new System.Windows.Forms.Label();
            this.label12 = new System.Windows.Forms.Label();
            this.panel4 = new System.Windows.Forms.Panel();
            this.cboDoituongKCB = new Janus.Windows.EditControls.UIComboBox();
            this.txtOldName = new System.Windows.Forms.TextBox();
            this.label10 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.pnlBHYT = new System.Windows.Forms.Panel();
            this.label13 = new System.Windows.Forms.Label();
            this.chkGiayBHYT = new Janus.Windows.EditControls.UICheckBox();
            this.chkTraiTuyen = new Janus.Windows.EditControls.UICheckBox();
            this.chkChuyenVien = new Janus.Windows.EditControls.UICheckBox();
            this.txtMaDtuong_BHYT = new System.Windows.Forms.TextBox();
            this.txtNoiDKKCBBD = new System.Windows.Forms.TextBox();
            this.label39 = new System.Windows.Forms.Label();
            this.dtInsToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.txtNoiDongtrusoKCBBD = new System.Windows.Forms.TextBox();
            this.label40 = new System.Windows.Forms.Label();
            this.label16 = new System.Windows.Forms.Label();
            this.dtInsFromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.txtOthu6 = new System.Windows.Forms.TextBox();
            this.label20 = new System.Windows.Forms.Label();
            this.lnkThem = new System.Windows.Forms.LinkLabel();
            this.lblClinicName = new System.Windows.Forms.Label();
            this.txtOthu5 = new System.Windows.Forms.TextBox();
            this.label24 = new System.Windows.Forms.Label();
            this.txtOthu4 = new System.Windows.Forms.TextBox();
            this.lblNoiCapThe = new System.Windows.Forms.Label();
            this.diachi = new System.Windows.Forms.Label();
            this.txtMaQuyenloi_BHYT = new System.Windows.Forms.TextBox();
            this.txtNoiphattheBHYT = new System.Windows.Forms.TextBox();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
            this.txtMaDTsinhsong = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.txtDiachi_bhyt = new VNS.HIS.UCs.AutoCompleteTextbox_Diachi();
            this.txtNgheNghiep = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.txtDiachi = new VNS.HIS.UCs.AutoCompleteTextbox_Diachi();
            this.txtDantoc = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.txtTrieuChungBD = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.vbLine1 = new VNS.UCs.VBLine();
            this.lblPtramdauthe = new System.Windows.Forms.Label();
            this.txtptramDauthe = new System.Windows.Forms.TextBox();
            this.txtPtramBHYT = new System.Windows.Forms.TextBox();
            this.label25 = new System.Windows.Forms.Label();
            this.lblPtram = new System.Windows.Forms.Label();
            this.panel1.SuspendLayout();
            this.panel3.SuspendLayout();
            this.panel4.SuspendLayout();
            this.pnlBHYT.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
            this.SuspendLayout();
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.label2);
            this.panel1.Controls.Add(this.label1);
            this.panel1.Controls.Add(this.panel2);
            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(617, 63);
            this.panel1.TabIndex = 2;
            // 
            // label2
            // 
            this.label2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.Location = new System.Drawing.Point(127, 33);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(445, 21);
            this.label2.TabIndex = 542;
            this.label2.Text = "Điều kiện chuyển đổi là Bệnh nhân chưa được thanh toán dịch vụ nào...";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // label1
            // 
            this.label1.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.Location = new System.Drawing.Point(77, 9);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(464, 21);
            this.label1.TabIndex = 541;
            this.label1.Text = "Chuyển đổi đối tượng khám chữa bệnh";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // panel2
            // 
            this.panel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel2.BackgroundImage")));
            this.panel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.panel2.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel2.Location = new System.Drawing.Point(0, 0);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(71, 63);
            this.panel2.TabIndex = 0;
            // 
            // cmdSave
            // 
            this.cmdSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdSave.Font = new System.Drawing.Font("Arial", 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(20, 20);
            this.cmdSave.Location = new System.Drawing.Point(237, 429);
            this.cmdSave.Name = "cmdSave";
            this.cmdSave.Size = new System.Drawing.Size(114, 35);
            this.cmdSave.TabIndex = 16;
            this.cmdSave.Text = "Đồng ý (Ctrl+S)";
            this.cmdSave.ToolTipText = "Nhấn vào đây để thực hiện chuyển đổi đối tượng";
            // 
            // cmdClose
            // 
            this.cmdClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdClose.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdClose.Image = ((System.Drawing.Image)(resources.GetObject("cmdClose.Image")));
            this.cmdClose.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdClose.Location = new System.Drawing.Point(368, 429);
            this.cmdClose.Name = "cmdClose";
            this.cmdClose.Size = new System.Drawing.Size(114, 35);
            this.cmdClose.TabIndex = 17;
            this.cmdClose.Text = "Thoát(Esc)";
            this.cmdClose.ToolTipText = "Nhấn vào đây để thoát khỏi chức năng";
            // 
            // panel3
            // 
            this.panel3.Controls.Add(this.txtNgheNghiep);
            this.panel3.Controls.Add(this.txtTuoi);
            this.panel3.Controls.Add(this.label46);
            this.panel3.Controls.Add(this.txtDiachi);
            this.panel3.Controls.Add(this.label4);
            this.panel3.Controls.Add(this.label21);
            this.panel3.Controls.Add(this.label9);
            this.panel3.Controls.Add(this.label6);
            this.panel3.Controls.Add(this.txtSoDT);
            this.panel3.Controls.Add(this.label8);
            this.panel3.Controls.Add(this.label11);
            this.panel3.Controls.Add(this.txtDantoc);
            this.panel3.Controls.Add(this.txtTrieuChungBD);
            this.panel3.Controls.Add(this.txtTEN_BN);
            this.panel3.Controls.Add(this.txtNamSinh);
            this.panel3.Controls.Add(this.cboPatientSex);
            this.panel3.Controls.Add(this.label7);
            this.panel3.Controls.Add(this.txtCMT);
            this.panel3.Controls.Add(this.label17);
            this.panel3.Controls.Add(this.label12);
            this.panel3.Location = new System.Drawing.Point(12, 344);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(53, 40);
            this.panel3.TabIndex = 542;
            this.panel3.Visible = false;
            // 
            // txtTuoi
            // 
            this.txtTuoi.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTuoi.Location = new System.Drawing.Point(261, 119);
            this.txtTuoi.MaxLength = 3;
            this.txtTuoi.Name = "txtTuoi";
            this.txtTuoi.Numeric = true;
            this.txtTuoi.Size = new System.Drawing.Size(99, 21);
            this.txtTuoi.TabIndex = 587;
            this.txtTuoi.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // label46
            // 
            this.label46.AutoSize = true;
            this.label46.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label46.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.label46.Location = new System.Drawing.Point(223, 122);
            this.label46.Name = "label46";
            this.label46.Size = new System.Drawing.Size(31, 15);
            this.label46.TabIndex = 584;
            this.label46.Text = "&Tuổi";
            // 
            // 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.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.label4.Location = new System.Drawing.Point(32, 10);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(115, 21);
            this.label4.TabIndex = 595;
            this.label4.Text = "&Tên BN :";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label21
            // 
            this.label21.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label21.Location = new System.Drawing.Point(36, 148);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(98, 21);
            this.label21.TabIndex = 600;
            this.label21.Text = "Nghề nghiệp:";
            this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // 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(36, 202);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(98, 21);
            this.label9.TabIndex = 596;
            this.label9.Text = "Số ĐT liên hệ:";
            this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label6
            // 
            this.label6.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label6.Location = new System.Drawing.Point(36, 173);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(98, 21);
            this.label6.TabIndex = 602;
            this.label6.Text = "Dân tộc:";
            this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtSoDT
            // 
            this.txtSoDT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtSoDT.Location = new System.Drawing.Point(138, 199);
            this.txtSoDT.Name = "txtSoDT";
            this.txtSoDT.Size = new System.Drawing.Size(222, 20);
            this.txtSoDT.TabIndex = 594;
            this.txtSoDT.TabStop = false;
            // 
            // label8
            // 
            this.label8.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.label8.Location = new System.Drawing.Point(36, 122);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(98, 21);
            this.label8.TabIndex = 601;
            this.label8.Text = "Năm sinh:";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label11
            // 
            this.label11.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label11.Location = new System.Drawing.Point(32, 39);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(115, 21);
            this.label11.TabIndex = 597;
            this.label11.Text = "&Giới tính";
            this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtTEN_BN
            // 
            this.txtTEN_BN.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtTEN_BN.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTEN_BN.Location = new System.Drawing.Point(149, 11);
            this.txtTEN_BN.Name = "txtTEN_BN";
            this.txtTEN_BN.Size = new System.Drawing.Size(348, 21);
            this.txtTEN_BN.TabIndex = 585;
            // 
            // txtNamSinh
            // 
            this.txtNamSinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNamSinh.Location = new System.Drawing.Point(138, 119);
            this.txtNamSinh.MaxLength = 4;
            this.txtNamSinh.Name = "txtNamSinh";
            this.txtNamSinh.Numeric = true;
            this.txtNamSinh.Size = new System.Drawing.Size(78, 21);
            this.txtNamSinh.TabIndex = 586;
            this.txtNamSinh.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // cboPatientSex
            // 
            this.cboPatientSex.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboPatientSex.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 = "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.cboPatientSex.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3});
            this.cboPatientSex.Location = new System.Drawing.Point(149, 40);
            this.cboPatientSex.Name = "cboPatientSex";
            this.cboPatientSex.Size = new System.Drawing.Size(70, 21);
            this.cboPatientSex.TabIndex = 588;
            this.cboPatientSex.Text = "Giới tính";
            // 
            // label7
            // 
            this.label7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label7.Location = new System.Drawing.Point(32, 67);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(115, 21);
            this.label7.TabIndex = 603;
            this.label7.Text = "Địa chỉ Bệnh nhân:";
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtCMT
            // 
            this.txtCMT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtCMT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtCMT.Location = new System.Drawing.Point(298, 84);
            this.txtCMT.MaxLength = 30;
            this.txtCMT.Name = "txtCMT";
            this.txtCMT.Size = new System.Drawing.Size(227, 21);
            this.txtCMT.TabIndex = 589;
            // 
            // label17
            // 
            this.label17.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label17.Location = new System.Drawing.Point(32, 94);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(115, 21);
            this.label17.TabIndex = 599;
            this.label17.Text = "Triệu chứng BĐ:";
            this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // 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(250, 86);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(42, 15);
            this.label12.TabIndex = 598;
            this.label12.Text = "&CMT:";
            this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // panel4
            // 
            this.panel4.Controls.Add(this.cboDoituongKCB);
            this.panel4.Controls.Add(this.txtOldName);
            this.panel4.Controls.Add(this.label10);
            this.panel4.Controls.Add(this.label3);
            this.panel4.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel4.Location = new System.Drawing.Point(0, 63);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(617, 61);
            this.panel4.TabIndex = 0;
            this.panel4.TabStop = true;
            // 
            // cboDoituongKCB
            // 
            this.cboDoituongKCB.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboDoituongKCB.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, 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.cboDoituongKCB.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem4,
            uiComboBoxItem5,
            uiComboBoxItem6});
            this.cboDoituongKCB.Location = new System.Drawing.Point(123, 34);
            this.cboDoituongKCB.Name = "cboDoituongKCB";
            this.cboDoituongKCB.Size = new System.Drawing.Size(250, 21);
            this.cboDoituongKCB.TabIndex = 601;
            this.cboDoituongKCB.Text = "Đối tượng KCB";
            // 
            // txtOldName
            // 
            this.txtOldName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtOldName.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtOldName.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtOldName.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtOldName.Location = new System.Drawing.Point(123, 7);
            this.txtOldName.MaxLength = 1;
            this.txtOldName.Name = "txtOldName";
            this.txtOldName.Size = new System.Drawing.Size(250, 22);
            this.txtOldName.TabIndex = 0;
            this.txtOldName.TabStop = false;
            this.txtOldName.Text = "DỊCH VỤ";
            this.txtOldName.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // label10
            // 
            this.label10.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label10.Location = new System.Drawing.Point(10, 34);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(112, 21);
            this.label10.TabIndex = 540;
            this.label10.Text = "Đối tượng mới:";
            this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label3
            // 
            this.label3.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label3.Location = new System.Drawing.Point(10, 6);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(112, 21);
            this.label3.TabIndex = 542;
            this.label3.Text = "Đối tượng cũ:";
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // pnlBHYT
            // 
            this.pnlBHYT.Controls.Add(this.lblPtramdauthe);
            this.pnlBHYT.Controls.Add(this.txtptramDauthe);
            this.pnlBHYT.Controls.Add(this.txtPtramBHYT);
            this.pnlBHYT.Controls.Add(this.label25);
            this.pnlBHYT.Controls.Add(this.lblPtram);
            this.pnlBHYT.Controls.Add(this.label13);
            this.pnlBHYT.Controls.Add(this.txtMaDTsinhsong);
            this.pnlBHYT.Controls.Add(this.chkGiayBHYT);
            this.pnlBHYT.Controls.Add(this.chkTraiTuyen);
            this.pnlBHYT.Controls.Add(this.chkChuyenVien);
            this.pnlBHYT.Controls.Add(this.txtMaDtuong_BHYT);
            this.pnlBHYT.Controls.Add(this.txtNoiDKKCBBD);
            this.pnlBHYT.Controls.Add(this.label39);
            this.pnlBHYT.Controls.Add(this.txtDiachi_bhyt);
            this.pnlBHYT.Controls.Add(this.dtInsToDate);
            this.pnlBHYT.Controls.Add(this.txtNoiDongtrusoKCBBD);
            this.pnlBHYT.Controls.Add(this.label40);
            this.pnlBHYT.Controls.Add(this.label16);
            this.pnlBHYT.Controls.Add(this.dtInsFromDate);
            this.pnlBHYT.Controls.Add(this.txtOthu6);
            this.pnlBHYT.Controls.Add(this.label20);
            this.pnlBHYT.Controls.Add(this.lnkThem);
            this.pnlBHYT.Controls.Add(this.lblClinicName);
            this.pnlBHYT.Controls.Add(this.txtOthu5);
            this.pnlBHYT.Controls.Add(this.label24);
            this.pnlBHYT.Controls.Add(this.txtOthu4);
            this.pnlBHYT.Controls.Add(this.lblNoiCapThe);
            this.pnlBHYT.Controls.Add(this.diachi);
            this.pnlBHYT.Controls.Add(this.txtMaQuyenloi_BHYT);
            this.pnlBHYT.Controls.Add(this.txtNoiphattheBHYT);
            this.pnlBHYT.Dock = System.Windows.Forms.DockStyle.Top;
            this.pnlBHYT.Location = new System.Drawing.Point(0, 124);
            this.pnlBHYT.Name = "pnlBHYT";
            this.pnlBHYT.Size = new System.Drawing.Size(617, 280);
            this.pnlBHYT.TabIndex = 1;
            this.pnlBHYT.TabStop = true;
            // 
            // label13
            // 
            this.label13.BackColor = System.Drawing.Color.Transparent;
            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(7, 93);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(111, 21);
            this.label13.TabIndex = 544;
            this.label13.Text = "Mã ĐT sinh sống:";
            this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // chkGiayBHYT
            // 
            this.chkGiayBHYT.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
            this.chkGiayBHYT.Location = new System.Drawing.Point(240, 121);
            this.chkGiayBHYT.Name = "chkGiayBHYT";
            this.chkGiayBHYT.Size = new System.Drawing.Size(114, 23);
            this.chkGiayBHYT.TabIndex = 542;
            this.chkGiayBHYT.TabStop = false;
            this.chkGiayBHYT.Text = "Có giấy BHYT?";
            // 
            // chkTraiTuyen
            // 
            this.chkTraiTuyen.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkTraiTuyen.Location = new System.Drawing.Point(367, 120);
            this.chkTraiTuyen.Name = "chkTraiTuyen";
            this.chkTraiTuyen.Size = new System.Drawing.Size(113, 23);
            this.chkTraiTuyen.TabIndex = 13;
            this.chkTraiTuyen.TabStop = false;
            this.chkTraiTuyen.Text = "Trái tuyến?";
            // 
            // chkChuyenVien
            // 
            this.chkChuyenVien.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkChuyenVien.Location = new System.Drawing.Point(121, 121);
            this.chkChuyenVien.Name = "chkChuyenVien";
            this.chkChuyenVien.Size = new System.Drawing.Size(110, 23);
            this.chkChuyenVien.TabIndex = 14;
            this.chkChuyenVien.TabStop = false;
            this.chkChuyenVien.Text = "Chuyển viện?";
            // 
            // txtMaDtuong_BHYT
            // 
            this.txtMaDtuong_BHYT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtMaDtuong_BHYT.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtMaDtuong_BHYT.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaDtuong_BHYT.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtMaDtuong_BHYT.Location = new System.Drawing.Point(123, 10);
            this.txtMaDtuong_BHYT.MaxLength = 2;
            this.txtMaDtuong_BHYT.Name = "txtMaDtuong_BHYT";
            this.txtMaDtuong_BHYT.Size = new System.Drawing.Size(58, 22);
            this.txtMaDtuong_BHYT.TabIndex = 2;
            this.txtMaDtuong_BHYT.Text = "DN";
            this.txtMaDtuong_BHYT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtNoiDKKCBBD
            // 
            this.txtNoiDKKCBBD.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNoiDKKCBBD.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtNoiDKKCBBD.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNoiDKKCBBD.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtNoiDKKCBBD.Location = new System.Drawing.Point(483, 10);
            this.txtNoiDKKCBBD.MaxLength = 3;
            this.txtNoiDKKCBBD.Name = "txtNoiDKKCBBD";
            this.txtNoiDKKCBBD.Size = new System.Drawing.Size(61, 22);
            this.txtNoiDKKCBBD.TabIndex = 9;
            this.txtNoiDKKCBBD.Text = "M34";
            this.txtNoiDKKCBBD.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // label39
            // 
            this.label39.BackColor = System.Drawing.Color.Transparent;
            this.label39.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label39.Location = new System.Drawing.Point(9, 39);
            this.label39.Name = "label39";
            this.label39.Size = new System.Drawing.Size(112, 21);
            this.label39.TabIndex = 432;
            this.label39.Text = "Ngày bắt đầu:";
            this.label39.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtInsToDate
            // 
            this.dtInsToDate.CustomFormat = "dd/MM/yyyy";
            this.dtInsToDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtInsToDate.DropDownCalendar.Name = "";
            this.dtInsToDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtInsToDate.Location = new System.Drawing.Point(379, 41);
            this.dtInsToDate.Name = "dtInsToDate";
            this.dtInsToDate.ShowUpDown = true;
            this.dtInsToDate.Size = new System.Drawing.Size(165, 21);
            this.dtInsToDate.TabIndex = 11;
            this.dtInsToDate.Value = new System.DateTime(2013, 9, 23, 0, 0, 0, 0);
            // 
            // txtNoiDongtrusoKCBBD
            // 
            this.txtNoiDongtrusoKCBBD.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNoiDongtrusoKCBBD.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtNoiDongtrusoKCBBD.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNoiDongtrusoKCBBD.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtNoiDongtrusoKCBBD.Location = new System.Drawing.Point(448, 10);
            this.txtNoiDongtrusoKCBBD.MaxLength = 2;
            this.txtNoiDongtrusoKCBBD.Name = "txtNoiDongtrusoKCBBD";
            this.txtNoiDongtrusoKCBBD.Size = new System.Drawing.Size(34, 22);
            this.txtNoiDongtrusoKCBBD.TabIndex = 8;
            this.txtNoiDongtrusoKCBBD.Text = "01";
            this.txtNoiDongtrusoKCBBD.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // label40
            // 
            this.label40.AutoSize = true;
            this.label40.BackColor = System.Drawing.SystemColors.Control;
            this.label40.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label40.Location = new System.Drawing.Point(293, 44);
            this.label40.Name = "label40";
            this.label40.Size = new System.Drawing.Size(78, 15);
            this.label40.TabIndex = 433;
            this.label40.Text = "ngày kết thúc";
            // 
            // 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(9, 9);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(112, 21);
            this.label16.TabIndex = 421;
            this.label16.Text = "Mã thẻ BHYT:";
            this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtInsFromDate
            // 
            this.dtInsFromDate.CustomFormat = "dd/MM/yyyy";
            this.dtInsFromDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtInsFromDate.DropDownCalendar.Name = "";
            this.dtInsFromDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtInsFromDate.Location = new System.Drawing.Point(123, 41);
            this.dtInsFromDate.Name = "dtInsFromDate";
            this.dtInsFromDate.ShowUpDown = true;
            this.dtInsFromDate.Size = new System.Drawing.Size(158, 21);
            this.dtInsFromDate.TabIndex = 10;
            this.dtInsFromDate.Value = new System.DateTime(2013, 9, 23, 0, 0, 0, 0);
            // 
            // txtOthu6
            // 
            this.txtOthu6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtOthu6.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtOthu6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtOthu6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtOthu6.Location = new System.Drawing.Point(373, 10);
            this.txtOthu6.MaxLength = 5;
            this.txtOthu6.Name = "txtOthu6";
            this.txtOthu6.Size = new System.Drawing.Size(74, 22);
            this.txtOthu6.TabIndex = 7;
            this.txtOthu6.Text = "00001";
            this.txtOthu6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // label20
            // 
            this.label20.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label20.Location = new System.Drawing.Point(10, 190);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(112, 21);
            this.label20.TabIndex = 438;
            this.label20.Text = "Nơi cấp thẻ :";
            this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lnkThem
            // 
            this.lnkThem.AutoSize = true;
            this.lnkThem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lnkThem.Location = new System.Drawing.Point(130, 223);
            this.lnkThem.Name = "lnkThem";
            this.lnkThem.Size = new System.Drawing.Size(130, 15);
            this.lnkThem.TabIndex = 15;
            this.lnkThem.TabStop = true;
            this.lnkThem.Text = "Thêm mới nơi KCBBĐ";
            this.lnkThem.Visible = false;
            // 
            // lblClinicName
            // 
            this.lblClinicName.Location = new System.Drawing.Point(121, 224);
            this.lblClinicName.Name = "lblClinicName";
            this.lblClinicName.Size = new System.Drawing.Size(484, 43);
            this.lblClinicName.TabIndex = 439;
            this.lblClinicName.Text = "ClinicName";
            this.lblClinicName.Visible = false;
            // 
            // txtOthu5
            // 
            this.txtOthu5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtOthu5.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtOthu5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtOthu5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtOthu5.Location = new System.Drawing.Point(317, 10);
            this.txtOthu5.MaxLength = 3;
            this.txtOthu5.Name = "txtOthu5";
            this.txtOthu5.Size = new System.Drawing.Size(55, 22);
            this.txtOthu5.TabIndex = 6;
            this.txtOthu5.Text = "001";
            this.txtOthu5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // label24
            // 
            this.label24.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label24.Location = new System.Drawing.Point(10, 220);
            this.label24.Name = "label24";
            this.label24.Size = new System.Drawing.Size(112, 21);
            this.label24.TabIndex = 440;
            this.label24.Text = "Nơi ĐKKCBBĐ :";
            this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtOthu4
            // 
            this.txtOthu4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtOthu4.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtOthu4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtOthu4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtOthu4.Location = new System.Drawing.Point(261, 10);
            this.txtOthu4.MaxLength = 3;
            this.txtOthu4.Name = "txtOthu4";
            this.txtOthu4.Size = new System.Drawing.Size(54, 22);
            this.txtOthu4.TabIndex = 5;
            this.txtOthu4.Text = "001";
            this.txtOthu4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // lblNoiCapThe
            // 
            this.lblNoiCapThe.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblNoiCapThe.Location = new System.Drawing.Point(121, 193);
            this.lblNoiCapThe.Name = "lblNoiCapThe";
            this.lblNoiCapThe.Size = new System.Drawing.Size(424, 18);
            this.lblNoiCapThe.TabIndex = 441;
            this.lblNoiCapThe.Text = "Hà Nội";
            this.lblNoiCapThe.Visible = false;
            // 
            // diachi
            // 
            this.diachi.BackColor = System.Drawing.Color.Transparent;
            this.diachi.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.diachi.Location = new System.Drawing.Point(9, 67);
            this.diachi.Name = "diachi";
            this.diachi.Size = new System.Drawing.Size(112, 21);
            this.diachi.TabIndex = 537;
            this.diachi.Text = "Địa chỉ BHYT:";
            this.diachi.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtMaQuyenloi_BHYT
            // 
            this.txtMaQuyenloi_BHYT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtMaQuyenloi_BHYT.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtMaQuyenloi_BHYT.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaQuyenloi_BHYT.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtMaQuyenloi_BHYT.Location = new System.Drawing.Point(182, 10);
            this.txtMaQuyenloi_BHYT.MaxLength = 1;
            this.txtMaQuyenloi_BHYT.Name = "txtMaQuyenloi_BHYT";
            this.txtMaQuyenloi_BHYT.Size = new System.Drawing.Size(33, 22);
            this.txtMaQuyenloi_BHYT.TabIndex = 3;
            this.txtMaQuyenloi_BHYT.Text = "3";
            this.txtMaQuyenloi_BHYT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtNoiphattheBHYT
            // 
            this.txtNoiphattheBHYT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNoiphattheBHYT.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtNoiphattheBHYT.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNoiphattheBHYT.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtNoiphattheBHYT.Location = new System.Drawing.Point(217, 10);
            this.txtNoiphattheBHYT.MaxLength = 2;
            this.txtNoiphattheBHYT.Name = "txtNoiphattheBHYT";
            this.txtNoiphattheBHYT.Size = new System.Drawing.Size(42, 22);
            this.txtNoiphattheBHYT.TabIndex = 4;
            this.txtNoiphattheBHYT.Text = "01";
            this.txtNoiphattheBHYT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // toolTip1
            // 
            this.toolTip1.IsBalloon = true;
            this.toolTip1.ToolTipTitle = "Trợ giúp";
            // 
            // errorProvider1
            // 
            this.errorProvider1.ContainerControl = this;
            // 
            // txtMaDTsinhsong
            // 
            this.txtMaDTsinhsong._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtMaDTsinhsong._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaDTsinhsong.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtMaDTsinhsong.AutoCompleteList")));
            this.txtMaDTsinhsong.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtMaDTsinhsong.CaseSensitive = false;
            this.txtMaDTsinhsong.CompareNoID = true;
            this.txtMaDTsinhsong.DefaultCode = "-1";
            this.txtMaDTsinhsong.DefaultID = "-1";
            this.txtMaDTsinhsong.Drug_ID = null;
            this.txtMaDTsinhsong.ExtraWidth = 0;
            this.txtMaDTsinhsong.FillValueAfterSelect = false;
            this.txtMaDTsinhsong.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaDTsinhsong.LOAI_DANHMUC = "MADOITUONGSINHSONG";
            this.txtMaDTsinhsong.Location = new System.Drawing.Point(122, 94);
            this.txtMaDTsinhsong.MaxHeight = -1;
            this.txtMaDTsinhsong.MinTypedCharacters = 2;
            this.txtMaDTsinhsong.MyCode = "-1";
            this.txtMaDTsinhsong.MyID = "-1";
            this.txtMaDTsinhsong.Name = "txtMaDTsinhsong";
            this.txtMaDTsinhsong.RaiseEvent = false;
            this.txtMaDTsinhsong.RaiseEventEnter = true;
            this.txtMaDTsinhsong.RaiseEventEnterWhenEmpty = false;
            this.txtMaDTsinhsong.SelectedIndex = -1;
            this.txtMaDTsinhsong.Size = new System.Drawing.Size(423, 21);
            this.txtMaDTsinhsong.splitChar = '@';
            this.txtMaDTsinhsong.splitCharIDAndCode = '#';
            this.txtMaDTsinhsong.TabIndex = 543;
            this.txtMaDTsinhsong.TakeCode = false;
            this.toolTip1.SetToolTip(this.txtMaDTsinhsong, "Mã đối tượng sinh sống");
            this.txtMaDTsinhsong.txtMyCode = null;
            this.txtMaDTsinhsong.txtMyCode_Edit = null;
            this.txtMaDTsinhsong.txtMyID = null;
            this.txtMaDTsinhsong.txtMyID_Edit = null;
            this.txtMaDTsinhsong.txtMyName = null;
            this.txtMaDTsinhsong.txtMyName_Edit = null;
            this.txtMaDTsinhsong.txtNext = null;
            // 
            // txtDiachi_bhyt
            // 
            this.txtDiachi_bhyt._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtDiachi_bhyt._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDiachi_bhyt.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtDiachi_bhyt.AutoCompleteList")));
            this.txtDiachi_bhyt.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtDiachi_bhyt.CaseSensitive = false;
            this.txtDiachi_bhyt.Drug_ID = null;
            this.txtDiachi_bhyt.ExtraWidth = 0;
            this.txtDiachi_bhyt.FillValueAfterSelect = false;
            this.txtDiachi_bhyt.Location = new System.Drawing.Point(122, 68);
            this.txtDiachi_bhyt.MaxHeight = 289;
            this.txtDiachi_bhyt.MinTypedCharacters = 2;
            this.txtDiachi_bhyt.Name = "txtDiachi_bhyt";
            this.txtDiachi_bhyt.RaiseEvent = false;
            this.txtDiachi_bhyt.SelectedIndex = -1;
            this.txtDiachi_bhyt.Size = new System.Drawing.Size(423, 20);
            this.txtDiachi_bhyt.splitChar = '\0';
            this.txtDiachi_bhyt.splitCharIDAndCode = '\0';
            this.txtDiachi_bhyt.TabIndex = 12;
            this.txtDiachi_bhyt.txtMyCode = null;
            this.txtDiachi_bhyt.txtMyCode_Edit = null;
            this.txtDiachi_bhyt.txtMyID = null;
            this.txtDiachi_bhyt.txtMyID_Edit = null;
            this.txtDiachi_bhyt.txtMyName = null;
            this.txtDiachi_bhyt.txtMyName_Edit = null;
            this.txtDiachi_bhyt.txtNext = null;
            // 
            // txtNgheNghiep
            // 
            this.txtNgheNghiep._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtNgheNghiep._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNgheNghiep.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtNgheNghiep.AutoCompleteList")));
            this.txtNgheNghiep.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNgheNghiep.CaseSensitive = false;
            this.txtNgheNghiep.CompareNoID = true;
            this.txtNgheNghiep.DefaultCode = "-1";
            this.txtNgheNghiep.DefaultID = "-1";
            this.txtNgheNghiep.Drug_ID = null;
            this.txtNgheNghiep.ExtraWidth = 0;
            this.txtNgheNghiep.FillValueAfterSelect = true;
            this.txtNgheNghiep.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNgheNghiep.Location = new System.Drawing.Point(138, 146);
            this.txtNgheNghiep.MaxHeight = 289;
            this.txtNgheNghiep.MinTypedCharacters = 2;
            this.txtNgheNghiep.MyCode = "-1";
            this.txtNgheNghiep.MyID = "-1";
            this.txtNgheNghiep.Name = "txtNgheNghiep";
            this.txtNgheNghiep.RaiseEvent = false;
            this.txtNgheNghiep.RaiseEventEnter = false;
            this.txtNgheNghiep.RaiseEventEnterWhenEmpty = false;
            this.txtNgheNghiep.SelectedIndex = -1;
            this.txtNgheNghiep.Size = new System.Drawing.Size(222, 21);
            this.txtNgheNghiep.splitChar = '@';
            this.txtNgheNghiep.splitCharIDAndCode = '#';
            this.txtNgheNghiep.TabIndex = 590;
            this.txtNgheNghiep.TakeCode = false;
            this.txtNgheNghiep.txtMyCode = null;
            this.txtNgheNghiep.txtMyCode_Edit = null;
            this.txtNgheNghiep.txtMyID = null;
            this.txtNgheNghiep.txtMyID_Edit = null;
            this.txtNgheNghiep.txtMyName = null;
            this.txtNgheNghiep.txtMyName_Edit = null;
            this.txtNgheNghiep.txtNext = null;
            // 
            // txtDiachi
            // 
            this.txtDiachi._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtDiachi._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDiachi.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtDiachi.AutoCompleteList")));
            this.txtDiachi.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtDiachi.CaseSensitive = false;
            this.txtDiachi.Drug_ID = null;
            this.txtDiachi.ExtraWidth = 0;
            this.txtDiachi.FillValueAfterSelect = false;
            this.txtDiachi.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDiachi.Location = new System.Drawing.Point(148, 69);
            this.txtDiachi.MaxHeight = 289;
            this.txtDiachi.MinTypedCharacters = 2;
            this.txtDiachi.Name = "txtDiachi";
            this.txtDiachi.RaiseEvent = false;
            this.txtDiachi.SelectedIndex = -1;
            this.txtDiachi.Size = new System.Drawing.Size(350, 21);
            this.txtDiachi.splitChar = '\0';
            this.txtDiachi.splitCharIDAndCode = '\0';
            this.txtDiachi.TabIndex = 591;
            this.txtDiachi.txtMyCode = null;
            this.txtDiachi.txtMyCode_Edit = null;
            this.txtDiachi.txtMyID = null;
            this.txtDiachi.txtMyID_Edit = null;
            this.txtDiachi.txtMyName = null;
            this.txtDiachi.txtMyName_Edit = null;
            this.txtDiachi.txtNext = null;
            // 
            // txtDantoc
            // 
            this.txtDantoc._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtDantoc._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDantoc.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtDantoc.AutoCompleteList")));
            this.txtDantoc.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtDantoc.CaseSensitive = false;
            this.txtDantoc.CompareNoID = true;
            this.txtDantoc.DefaultCode = "-1";
            this.txtDantoc.DefaultID = "-1";
            this.txtDantoc.Drug_ID = null;
            this.txtDantoc.ExtraWidth = 0;
            this.txtDantoc.FillValueAfterSelect = false;
            this.txtDantoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDantoc.Location = new System.Drawing.Point(138, 173);
            this.txtDantoc.MaxHeight = 289;
            this.txtDantoc.MinTypedCharacters = 2;
            this.txtDantoc.MyCode = "-1";
            this.txtDantoc.MyID = "-1";
            this.txtDantoc.Name = "txtDantoc";
            this.txtDantoc.RaiseEvent = false;
            this.txtDantoc.RaiseEventEnter = false;
            this.txtDantoc.RaiseEventEnterWhenEmpty = false;
            this.txtDantoc.SelectedIndex = -1;
            this.txtDantoc.Size = new System.Drawing.Size(222, 21);
            this.txtDantoc.splitChar = '@';
            this.txtDantoc.splitCharIDAndCode = '#';
            this.txtDantoc.TabIndex = 592;
            this.txtDantoc.TabStop = false;
            this.txtDantoc.TakeCode = false;
            this.txtDantoc.txtMyCode = null;
            this.txtDantoc.txtMyCode_Edit = null;
            this.txtDantoc.txtMyID = null;
            this.txtDantoc.txtMyID_Edit = null;
            this.txtDantoc.txtMyName = null;
            this.txtDantoc.txtMyName_Edit = null;
            this.txtDantoc.txtNext = null;
            // 
            // txtTrieuChungBD
            // 
            this.txtTrieuChungBD._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtTrieuChungBD._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTrieuChungBD.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtTrieuChungBD.AutoCompleteList")));
            this.txtTrieuChungBD.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtTrieuChungBD.CaseSensitive = false;
            this.txtTrieuChungBD.CompareNoID = true;
            this.txtTrieuChungBD.DefaultCode = "-1";
            this.txtTrieuChungBD.DefaultID = "-1";
            this.txtTrieuChungBD.Drug_ID = null;
            this.txtTrieuChungBD.ExtraWidth = 0;
            this.txtTrieuChungBD.FillValueAfterSelect = false;
            this.txtTrieuChungBD.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTrieuChungBD.Location = new System.Drawing.Point(149, 95);
            this.txtTrieuChungBD.MaxHeight = 289;
            this.txtTrieuChungBD.MinTypedCharacters = 2;
            this.txtTrieuChungBD.MyCode = "-1";
            this.txtTrieuChungBD.MyID = "-1";
            this.txtTrieuChungBD.Name = "txtTrieuChungBD";
            this.txtTrieuChungBD.RaiseEvent = false;
            this.txtTrieuChungBD.RaiseEventEnter = false;
            this.txtTrieuChungBD.RaiseEventEnterWhenEmpty = false;
            this.txtTrieuChungBD.SelectedIndex = -1;
            this.txtTrieuChungBD.Size = new System.Drawing.Size(348, 21);
            this.txtTrieuChungBD.splitChar = '@';
            this.txtTrieuChungBD.splitCharIDAndCode = '#';
            this.txtTrieuChungBD.TabIndex = 593;
            this.txtTrieuChungBD.TabStop = false;
            this.txtTrieuChungBD.TakeCode = false;
            this.txtTrieuChungBD.txtMyCode = null;
            this.txtTrieuChungBD.txtMyCode_Edit = null;
            this.txtTrieuChungBD.txtMyID = null;
            this.txtTrieuChungBD.txtMyID_Edit = null;
            this.txtTrieuChungBD.txtMyName = null;
            this.txtTrieuChungBD.txtMyName_Edit = null;
            this.txtTrieuChungBD.txtNext = null;
            // 
            // vbLine1
            // 
            this.vbLine1._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.vbLine1.BackColor = System.Drawing.Color.Transparent;
            this.vbLine1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine1.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine1.Location = new System.Drawing.Point(12, 407);
            this.vbLine1.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine1.Name = "vbLine1";
            this.vbLine1.Size = new System.Drawing.Size(605, 22);
            this.vbLine1.TabIndex = 18;
            this.vbLine1.TabStop = false;
            this.vbLine1.YourText = "Hành động";
            // 
            // lblPtramdauthe
            // 
            this.lblPtramdauthe.BackColor = System.Drawing.Color.Transparent;
            this.lblPtramdauthe.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblPtramdauthe.Location = new System.Drawing.Point(202, 151);
            this.lblPtramdauthe.Name = "lblPtramdauthe";
            this.lblPtramdauthe.Size = new System.Drawing.Size(95, 21);
            this.lblPtramdauthe.TabIndex = 550;
            this.lblPtramdauthe.Text = "P.trăm đầu thẻ:";
            this.lblPtramdauthe.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtptramDauthe
            // 
            this.txtptramDauthe.BackColor = System.Drawing.Color.White;
            this.txtptramDauthe.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtptramDauthe.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtptramDauthe.ForeColor = System.Drawing.Color.Blue;
            this.txtptramDauthe.Location = new System.Drawing.Point(298, 146);
            this.txtptramDauthe.MaxLength = 3;
            this.txtptramDauthe.Name = "txtptramDauthe";
            this.txtptramDauthe.ReadOnly = true;
            this.txtptramDauthe.Size = new System.Drawing.Size(50, 29);
            this.txtptramDauthe.TabIndex = 549;
            this.txtptramDauthe.TabStop = false;
            this.txtptramDauthe.Text = "100";
            this.txtptramDauthe.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtPtramBHYT
            // 
            this.txtPtramBHYT.BackColor = System.Drawing.Color.White;
            this.txtPtramBHYT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtPtramBHYT.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPtramBHYT.ForeColor = System.Drawing.Color.Blue;
            this.txtPtramBHYT.Location = new System.Drawing.Point(120, 146);
            this.txtPtramBHYT.MaxLength = 3;
            this.txtPtramBHYT.Name = "txtPtramBHYT";
            this.txtPtramBHYT.ReadOnly = true;
            this.txtPtramBHYT.Size = new System.Drawing.Size(50, 29);
            this.txtPtramBHYT.TabIndex = 546;
            this.txtPtramBHYT.TabStop = false;
            this.txtPtramBHYT.Text = "100";
            this.txtPtramBHYT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // label25
            // 
            this.label25.AutoSize = true;
            this.label25.BackColor = System.Drawing.Color.Transparent;
            this.label25.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label25.Location = new System.Drawing.Point(170, 150);
            this.label25.Name = "label25";
            this.label25.Size = new System.Drawing.Size(26, 15);
            this.label25.TabIndex = 548;
            this.label25.Text = "(%)";
            // 
            // lblPtram
            // 
            this.lblPtram.BackColor = System.Drawing.Color.Transparent;
            this.lblPtram.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblPtram.Location = new System.Drawing.Point(7, 148);
            this.lblPtram.Name = "lblPtram";
            this.lblPtram.Size = new System.Drawing.Size(109, 21);
            this.lblPtram.TabIndex = 547;
            this.lblPtram.Text = "Phần trăm BHYT:";
            this.lblPtram.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // frm_chuyendoituongkcb
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(617, 478);
            this.Controls.Add(this.pnlBHYT);
            this.Controls.Add(this.panel4);
            this.Controls.Add(this.panel3);
            this.Controls.Add(this.cmdClose);
            this.Controls.Add(this.cmdSave);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.vbLine1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frm_chuyendoituongkcb";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Chuyển đối tượng khám chữa bệnh";
            this.panel1.ResumeLayout(false);
            this.panel3.ResumeLayout(false);
            this.panel3.PerformLayout();
            this.panel4.ResumeLayout(false);
            this.panel4.PerformLayout();
            this.pnlBHYT.ResumeLayout(false);
            this.pnlBHYT.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Janus.Windows.GridEX.GridEXLayout grdResult_DesignTimeLayout             = new Janus.Windows.GridEX.GridEXLayout();
     System.ComponentModel.ComponentResourceManager resources                 = new System.ComponentModel.ComponentResourceManager(typeof(frmHIV_HBsAg_HCV));
     Janus.Windows.GridEX.GridEXLayout         grdStatistics_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();
     this.uiStatusBar1         = new Janus.Windows.UI.StatusBar.UIStatusBar();
     this.uiGroupBox2          = new Janus.Windows.EditControls.UIGroupBox();
     this.grdResult            = new Janus.Windows.GridEX.GridEX();
     this.uiGroupBox1          = new Janus.Windows.EditControls.UIGroupBox();
     this.dtpToDate            = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtpFromDate          = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.btnStatisticsToExcel = new Janus.Windows.EditControls.UIButton();
     this.grdStatistics        = new Janus.Windows.GridEX.GridEX();
     this.btnExit          = new Janus.Windows.EditControls.UIButton();
     this.btnResultToExcel = new Janus.Windows.EditControls.UIButton();
     this.btnSearch        = new Janus.Windows.EditControls.UIButton();
     this.label3           = new System.Windows.Forms.Label();
     this.cboSex           = new Janus.Windows.EditControls.UIComboBox();
     this.label2           = new System.Windows.Forms.Label();
     this.label1           = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
     this.uiGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdResult)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
     this.uiGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdStatistics)).BeginInit();
     this.SuspendLayout();
     //
     // uiStatusBar1
     //
     this.uiStatusBar1.Location    = new System.Drawing.Point(0, 603);
     this.uiStatusBar1.Name        = "uiStatusBar1";
     this.uiStatusBar1.Size        = new System.Drawing.Size(1364, 23);
     this.uiStatusBar1.TabIndex    = 3;
     this.uiStatusBar1.VisualStyle = Janus.Windows.UI.VisualStyle.VS2005;
     //
     // uiGroupBox2
     //
     this.uiGroupBox2.Controls.Add(this.grdResult);
     this.uiGroupBox2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.uiGroupBox2.Location = new System.Drawing.Point(242, 0);
     this.uiGroupBox2.Name     = "uiGroupBox2";
     this.uiGroupBox2.Size     = new System.Drawing.Size(1122, 603);
     this.uiGroupBox2.TabIndex = 6;
     this.uiGroupBox2.Text     = "Kết quả";
     //
     // grdResult
     //
     this.grdResult.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     grdResult_DesignTimeLayout.LayoutString = resources.GetString("grdResult_DesignTimeLayout.LayoutString");
     this.grdResult.DesignTimeLayout         = grdResult_DesignTimeLayout;
     this.grdResult.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdResult.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Bold);
     this.grdResult.GroupByBoxVisible = false;
     this.grdResult.HideSelection     = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdResult.Location          = new System.Drawing.Point(3, 19);
     this.grdResult.Name            = "grdResult";
     this.grdResult.RecordNavigator = true;
     this.grdResult.RowHeaders      = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdResult.Size            = new System.Drawing.Size(1116, 581);
     this.grdResult.TabIndex        = 1;
     //
     // uiGroupBox1
     //
     this.uiGroupBox1.Controls.Add(this.dtpToDate);
     this.uiGroupBox1.Controls.Add(this.dtpFromDate);
     this.uiGroupBox1.Controls.Add(this.btnStatisticsToExcel);
     this.uiGroupBox1.Controls.Add(this.grdStatistics);
     this.uiGroupBox1.Controls.Add(this.btnExit);
     this.uiGroupBox1.Controls.Add(this.btnResultToExcel);
     this.uiGroupBox1.Controls.Add(this.btnSearch);
     this.uiGroupBox1.Controls.Add(this.label3);
     this.uiGroupBox1.Controls.Add(this.cboSex);
     this.uiGroupBox1.Controls.Add(this.label2);
     this.uiGroupBox1.Controls.Add(this.label1);
     this.uiGroupBox1.Dock     = System.Windows.Forms.DockStyle.Left;
     this.uiGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.uiGroupBox1.Name     = "uiGroupBox1";
     this.uiGroupBox1.Size     = new System.Drawing.Size(242, 603);
     this.uiGroupBox1.TabIndex = 5;
     this.uiGroupBox1.Text     = "Thông tin tìm kiếm";
     //
     // dtpToDate
     //
     this.dtpToDate.CustomFormat = "dd/MM/yyyy";
     //
     //
     //
     this.dtpToDate.DropDownCalendar.Name = "";
     this.dtpToDate.Location      = new System.Drawing.Point(102, 66);
     this.dtpToDate.Name          = "dtpToDate";
     this.dtpToDate.Size          = new System.Drawing.Size(121, 23);
     this.dtpToDate.TabIndex      = 10;
     this.dtpToDate.ValueChanged += new System.EventHandler(this.dtpToDate_ValueChanged);
     //
     // dtpFromDate
     //
     this.dtpFromDate.CustomFormat = "dd/MM/yyyy";
     //
     //
     //
     this.dtpFromDate.DropDownCalendar.Name        = "";
     this.dtpFromDate.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
     this.dtpFromDate.Location      = new System.Drawing.Point(102, 30);
     this.dtpFromDate.Name          = "dtpFromDate";
     this.dtpFromDate.Size          = new System.Drawing.Size(121, 23);
     this.dtpFromDate.TabIndex      = 2;
     this.dtpFromDate.ValueChanged += new System.EventHandler(this.dtpFromDate_ValueChanged);
     //
     // btnStatisticsToExcel
     //
     this.btnStatisticsToExcel.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnStatisticsToExcel.Location = new System.Drawing.Point(16, 499);
     this.btnStatisticsToExcel.Name     = "btnStatisticsToExcel";
     this.btnStatisticsToExcel.Size     = new System.Drawing.Size(207, 43);
     this.btnStatisticsToExcel.TabIndex = 9;
     this.btnStatisticsToExcel.Text     = "Xuất thống kê ra excel (F5)";
     this.btnStatisticsToExcel.Click   += new System.EventHandler(this.btnStatisticsToExcel_Click);
     //
     // grdStatistics
     //
     grdStatistics_DesignTimeLayout.LayoutString = resources.GetString("grdStatistics_DesignTimeLayout.LayoutString");
     this.grdStatistics.DesignTimeLayout         = grdStatistics_DesignTimeLayout;
     this.grdStatistics.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grdStatistics.GroupByBoxVisible = false;
     this.grdStatistics.HideSelection     = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdStatistics.Location          = new System.Drawing.Point(6, 134);
     this.grdStatistics.Name     = "grdStatistics";
     this.grdStatistics.Size     = new System.Drawing.Size(230, 106);
     this.grdStatistics.TabIndex = 0;
     //
     // btnExit
     //
     this.btnExit.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnExit.Location = new System.Drawing.Point(16, 548);
     this.btnExit.Name     = "btnExit";
     this.btnExit.Size     = new System.Drawing.Size(207, 43);
     this.btnExit.TabIndex = 8;
     this.btnExit.Text     = "Thoát (Esc)";
     this.btnExit.Click   += new System.EventHandler(this.btnExit_Click);
     //
     // btnResultToExcel
     //
     this.btnResultToExcel.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnResultToExcel.Location = new System.Drawing.Point(16, 450);
     this.btnResultToExcel.Name     = "btnResultToExcel";
     this.btnResultToExcel.Size     = new System.Drawing.Size(207, 43);
     this.btnResultToExcel.TabIndex = 7;
     this.btnResultToExcel.Text     = "Xuất kết quả ra excel (F4)";
     this.btnResultToExcel.Click   += new System.EventHandler(this.btnResultToExcel_Click);
     //
     // btnSearch
     //
     this.btnSearch.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSearch.Location = new System.Drawing.Point(16, 401);
     this.btnSearch.Name     = "btnSearch";
     this.btnSearch.Size     = new System.Drawing.Size(207, 43);
     this.btnSearch.TabIndex = 6;
     this.btnSearch.Text     = "Tìm kiếm (F3)";
     this.btnSearch.Click   += new System.EventHandler(this.btnSearch_Click);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(12, 106);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(69, 17);
     this.label3.TabIndex = 5;
     this.label3.Text     = "Giới tính";
     //
     // cboSex
     //
     this.cboSex.ComboStyle            = Janus.Windows.EditControls.ComboStyle.DropDownList;
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.IsSeparator       = false;
     uiComboBoxItem1.Text              = "Tất cả";
     uiComboBoxItem1.Value             = ((short)(-1));
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator       = false;
     uiComboBoxItem2.Text              = "Nam";
     uiComboBoxItem2.Value             = ((short)(1));
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator       = false;
     uiComboBoxItem3.Text              = "Nữ";
     uiComboBoxItem3.Value             = ((short)(0));
     this.cboSex.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2,
         uiComboBoxItem3
     });
     this.cboSex.Location = new System.Drawing.Point(102, 102);
     this.cboSex.Name     = "cboSex";
     this.cboSex.Size     = new System.Drawing.Size(121, 23);
     this.cboSex.TabIndex = 4;
     this.cboSex.Text     = "uiComboBox1";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(12, 70);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(77, 17);
     this.label2.TabIndex = 1;
     this.label2.Text     = "Đến ngày";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(12, 34);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(67, 17);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Từ ngày";
     //
     // frmHIV_HBsAg_HCV
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 17F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1364, 626);
     this.Controls.Add(this.uiGroupBox2);
     this.Controls.Add(this.uiGroupBox1);
     this.Controls.Add(this.uiStatusBar1);
     this.Font          = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview    = true;
     this.Margin        = new System.Windows.Forms.Padding(4);
     this.Name          = "frmHIV_HBsAg_HCV";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "BÁO CÁO HIV HBsAg HCV";
     this.WindowState   = System.Windows.Forms.FormWindowState.Maximized;
     this.Load         += new System.EventHandler(this.frmHIV_HBsAg_HCV_Load);
     this.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.frmHIV_HBsAg_HCV_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
     this.uiGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdResult)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
     this.uiGroupBox1.ResumeLayout(false);
     this.uiGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdStatistics)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     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);
 }
        /// <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_baocaodoanhthuphongkham));
            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.GridEX.GridEXLayout grdChitiet_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            this.cmdExportToExcel = new Janus.Windows.EditControls.UIButton();
            this.dtNgayInPhieu = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label3 = new System.Windows.Forms.Label();
            this.cmdInPhieuXN = new Janus.Windows.EditControls.UIButton();
            this.cmdExit = new Janus.Windows.EditControls.UIButton();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.gridEXExporter1 = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
            this.printDialog1 = new System.Windows.Forms.PrintDialog();
            this.baocaO_TIEUDE1 = new VNS.HIS.UI.FORMs.BAOCAO.BHYT.UserControls.BAOCAO_TIEUDE();
            this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
            this.cboLoaidichvu = new Janus.Windows.EditControls.UIComboBox();
            this.label2 = new System.Windows.Forms.Label();
            this.panel1 = new System.Windows.Forms.Panel();
            this.grdChitiet = new Janus.Windows.GridEX.GridEX();
            this.cboKhoa = new Janus.Windows.EditControls.UIComboBox();
            this.label4 = new System.Windows.Forms.Label();
            this.cboNhanvien = new Janus.Windows.EditControls.UIComboBox();
            this.label8 = new System.Windows.Forms.Label();
            this.cboDoituongKCB = new Janus.Windows.EditControls.UIComboBox();
            this.label1 = new System.Windows.Forms.Label();
            this.dtToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.dtFromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.chkByDate = new Janus.Windows.EditControls.UICheckBox();
            this.grdList = new Janus.Windows.GridEX.GridEX();
            this.chkTachCDHA = new Janus.Windows.EditControls.UICheckBox();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
            this.uiGroupBox2.SuspendLayout();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
            this.SuspendLayout();
            // 
            // cmdExportToExcel
            // 
            this.cmdExportToExcel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdExportToExcel.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdExportToExcel.Image = ((System.Drawing.Image)(resources.GetObject("cmdExportToExcel.Image")));
            this.cmdExportToExcel.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdExportToExcel.Location = new System.Drawing.Point(364, 530);
            this.cmdExportToExcel.Name = "cmdExportToExcel";
            this.cmdExportToExcel.Size = new System.Drawing.Size(133, 30);
            this.cmdExportToExcel.TabIndex = 9;
            this.cmdExportToExcel.Text = "Xuất Excel";
            this.cmdExportToExcel.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
            this.cmdExportToExcel.Click += new System.EventHandler(this.cmdExportToExcel_Click);
            // 
            // dtNgayInPhieu
            // 
            this.dtNgayInPhieu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.dtNgayInPhieu.CustomFormat = "dd/MM/yyyy";
            this.dtNgayInPhieu.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtNgayInPhieu.DropDownCalendar.Name = "";
            this.dtNgayInPhieu.Font = new System.Drawing.Font("Arial", 9F);
            this.dtNgayInPhieu.Location = new System.Drawing.Point(81, 530);
            this.dtNgayInPhieu.Name = "dtNgayInPhieu";
            this.dtNgayInPhieu.ShowUpDown = true;
            this.dtNgayInPhieu.Size = new System.Drawing.Size(200, 21);
            this.dtNgayInPhieu.TabIndex = 11;
            this.dtNgayInPhieu.TabStop = false;
            this.dtNgayInPhieu.Value = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
            // 
            // label3
            // 
            this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label3.AutoSize = true;
            this.label3.Font = new System.Drawing.Font("Arial", 9F);
            this.label3.Location = new System.Drawing.Point(3, 534);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(48, 15);
            this.label3.TabIndex = 88;
            this.label3.Text = "Ngày in";
            // 
            // cmdInPhieuXN
            // 
            this.cmdInPhieuXN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdInPhieuXN.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdInPhieuXN.Image = ((System.Drawing.Image)(resources.GetObject("cmdInPhieuXN.Image")));
            this.cmdInPhieuXN.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdInPhieuXN.Location = new System.Drawing.Point(503, 530);
            this.cmdInPhieuXN.Name = "cmdInPhieuXN";
            this.cmdInPhieuXN.Size = new System.Drawing.Size(133, 30);
            this.cmdInPhieuXN.TabIndex = 8;
            this.cmdInPhieuXN.Text = "In báo cáo";
            this.cmdInPhieuXN.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
            this.cmdInPhieuXN.Click += new System.EventHandler(this.cmdInPhieuXN_Click);
            // 
            // cmdExit
            // 
            this.cmdExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdExit.Font = new System.Drawing.Font("Arial", 9F);
            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(642, 530);
            this.cmdExit.Name = "cmdExit";
            this.cmdExit.Size = new System.Drawing.Size(133, 30);
            this.cmdExit.TabIndex = 10;
            this.cmdExit.Text = "Thoát (Esc)";
            // 
            // printDialog1
            // 
            this.printDialog1.UseEXDialog = true;
            // 
            // baocaO_TIEUDE1
            // 
            this.baocaO_TIEUDE1.BackColor = System.Drawing.SystemColors.Control;
            this.baocaO_TIEUDE1.Dock = System.Windows.Forms.DockStyle.Top;
            this.baocaO_TIEUDE1.Location = new System.Drawing.Point(0, 0);
            this.baocaO_TIEUDE1.MA_BAOCAO = "THUOC_BCDSACH_BNHANLINHTHUOC";
            this.baocaO_TIEUDE1.Name = "baocaO_TIEUDE1";
            this.baocaO_TIEUDE1.Phimtat = "Bạn có thể sử dụng phím tắt";
            this.baocaO_TIEUDE1.PicImg = ((System.Drawing.Image)(resources.GetObject("baocaO_TIEUDE1.PicImg")));
            this.baocaO_TIEUDE1.ShortcutAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.baocaO_TIEUDE1.ShortcutFont = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.baocaO_TIEUDE1.showHelp = false;
            this.baocaO_TIEUDE1.Size = new System.Drawing.Size(784, 53);
            this.baocaO_TIEUDE1.TabIndex = 115;
            this.baocaO_TIEUDE1.TIEUDE = "BÁO CÁO DOANH THU PHÒNG KHÁM";
            this.baocaO_TIEUDE1.TitleFont = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            // 
            // uiGroupBox2
            // 
            this.uiGroupBox2.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.uiGroupBox2.Controls.Add(this.chkTachCDHA);
            this.uiGroupBox2.Controls.Add(this.cboLoaidichvu);
            this.uiGroupBox2.Controls.Add(this.label2);
            this.uiGroupBox2.Controls.Add(this.panel1);
            this.uiGroupBox2.Controls.Add(this.cboKhoa);
            this.uiGroupBox2.Controls.Add(this.label4);
            this.uiGroupBox2.Controls.Add(this.cboNhanvien);
            this.uiGroupBox2.Controls.Add(this.label8);
            this.uiGroupBox2.Controls.Add(this.cboDoituongKCB);
            this.uiGroupBox2.Controls.Add(this.label1);
            this.uiGroupBox2.Controls.Add(this.dtToDate);
            this.uiGroupBox2.Controls.Add(this.dtFromDate);
            this.uiGroupBox2.Controls.Add(this.chkByDate);
            this.uiGroupBox2.Font = new System.Drawing.Font("Arial", 9F);
            this.uiGroupBox2.Image = ((System.Drawing.Image)(resources.GetObject("uiGroupBox2.Image")));
            this.uiGroupBox2.Location = new System.Drawing.Point(0, 59);
            this.uiGroupBox2.Name = "uiGroupBox2";
            this.uiGroupBox2.Size = new System.Drawing.Size(784, 465);
            this.uiGroupBox2.TabIndex = 116;
            this.uiGroupBox2.Text = "Thông tin tìm kiếm";
            // 
            // cboLoaidichvu
            // 
            this.cboLoaidichvu.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 = "Tất cả";
            uiComboBoxItem1.Value = ((short)(-1));
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "Ngoại trú";
            uiComboBoxItem2.Value = ((short)(0));
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "Nội trú";
            uiComboBoxItem3.Value = ((short)(1));
            this.cboLoaidichvu.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3});
            this.cboLoaidichvu.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cboLoaidichvu.Location = new System.Drawing.Point(456, 54);
            this.cboLoaidichvu.Name = "cboLoaidichvu";
            this.cboLoaidichvu.SelectInDataSource = true;
            this.cboLoaidichvu.Size = new System.Drawing.Size(299, 21);
            this.cboLoaidichvu.TabIndex = 2;
            this.cboLoaidichvu.Text = "Chọn loại chi phí";
            // 
            // label2
            // 
            this.label2.Location = new System.Drawing.Point(329, 58);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(107, 15);
            this.label2.TabIndex = 59;
            this.label2.Text = "Kiểu thanh toán:";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // panel1
            // 
            this.panel1.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.panel1.Controls.Add(this.grdList);
            this.panel1.Controls.Add(this.grdChitiet);
            this.panel1.Location = new System.Drawing.Point(6, 150);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(772, 309);
            this.panel1.TabIndex = 46;
            // 
            // grdChitiet
            // 
            this.grdChitiet.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            grdChitiet_DesignTimeLayout.LayoutString = resources.GetString("grdChitiet_DesignTimeLayout.LayoutString");
            this.grdChitiet.DesignTimeLayout = grdChitiet_DesignTimeLayout;
            this.grdChitiet.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdChitiet.GroupByBoxVisible = false;
            this.grdChitiet.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdChitiet.Location = new System.Drawing.Point(0, 0);
            this.grdChitiet.Name = "grdChitiet";
            this.grdChitiet.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdChitiet.Size = new System.Drawing.Size(772, 309);
            this.grdChitiet.TabIndex = 21;
            this.grdChitiet.TabStop = false;
            this.grdChitiet.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdChitiet.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdChitiet.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // cboKhoa
            // 
            this.cboKhoa.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboKhoa.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cboKhoa.Location = new System.Drawing.Point(123, 27);
            this.cboKhoa.Name = "cboKhoa";
            this.cboKhoa.SelectInDataSource = true;
            this.cboKhoa.Size = new System.Drawing.Size(632, 21);
            this.cboKhoa.TabIndex = 0;
            this.cboKhoa.Text = "Khoa thực hiện";
            // 
            // label4
            // 
            this.label4.Location = new System.Drawing.Point(13, 29);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(104, 15);
            this.label4.TabIndex = 44;
            this.label4.Text = "Khoa KCB";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cboNhanvien
            // 
            this.cboNhanvien.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboNhanvien.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cboNhanvien.Location = new System.Drawing.Point(123, 81);
            this.cboNhanvien.Name = "cboNhanvien";
            this.cboNhanvien.SelectInDataSource = true;
            this.cboNhanvien.Size = new System.Drawing.Size(632, 21);
            this.cboNhanvien.TabIndex = 3;
            this.cboNhanvien.Text = "Nhân viên";
            // 
            // label8
            // 
            this.label8.Location = new System.Drawing.Point(13, 83);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(104, 15);
            this.label8.TabIndex = 30;
            this.label8.Text = "Thu ngân viên:";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cboDoituongKCB
            // 
            this.cboDoituongKCB.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboDoituongKCB.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cboDoituongKCB.Location = new System.Drawing.Point(123, 54);
            this.cboDoituongKCB.Name = "cboDoituongKCB";
            this.cboDoituongKCB.SelectInDataSource = true;
            this.cboDoituongKCB.Size = new System.Drawing.Size(200, 21);
            this.cboDoituongKCB.TabIndex = 1;
            this.cboDoituongKCB.Text = "Đối tượng";
            // 
            // label1
            // 
            this.label1.Location = new System.Drawing.Point(13, 56);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(104, 15);
            this.label1.TabIndex = 16;
            this.label1.Text = "Đối tượng KCB:";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtToDate
            // 
            this.dtToDate.CustomFormat = "dd/MM/yyyy";
            this.dtToDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtToDate.DropDownCalendar.Name = "";
            this.dtToDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtToDate.Location = new System.Drawing.Point(331, 108);
            this.dtToDate.Name = "dtToDate";
            this.dtToDate.ShowUpDown = true;
            this.dtToDate.Size = new System.Drawing.Size(200, 21);
            this.dtToDate.TabIndex = 6;
            this.dtToDate.Value = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
            // 
            // dtFromDate
            // 
            this.dtFromDate.CustomFormat = "dd/MM/yyyy";
            this.dtFromDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtFromDate.DropDownCalendar.Name = "";
            this.dtFromDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtFromDate.Location = new System.Drawing.Point(123, 108);
            this.dtFromDate.Name = "dtFromDate";
            this.dtFromDate.ShowUpDown = true;
            this.dtFromDate.Size = new System.Drawing.Size(200, 21);
            this.dtFromDate.TabIndex = 5;
            this.dtFromDate.Value = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
            // 
            // chkByDate
            // 
            this.chkByDate.Checked = true;
            this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkByDate.Location = new System.Drawing.Point(48, 109);
            this.chkByDate.Name = "chkByDate";
            this.chkByDate.Size = new System.Drawing.Size(69, 23);
            this.chkByDate.TabIndex = 4;
            this.chkByDate.Text = "Từ ngày";
            // 
            // grdList
            // 
            this.grdList.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            grdList_DesignTimeLayout.LayoutString = resources.GetString("grdList_DesignTimeLayout.LayoutString");
            this.grdList.DesignTimeLayout = grdList_DesignTimeLayout;
            this.grdList.Dock = System.Windows.Forms.DockStyle.Fill;
            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.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdList.Size = new System.Drawing.Size(772, 309);
            this.grdList.TabIndex = 22;
            this.grdList.TabStop = false;
            this.grdList.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdList.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdList.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // chkTachCDHA
            // 
            this.chkTachCDHA.Checked = true;
            this.chkTachCDHA.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkTachCDHA.Location = new System.Drawing.Point(537, 108);
            this.chkTachCDHA.Name = "chkTachCDHA";
            this.chkTachCDHA.Size = new System.Drawing.Size(209, 23);
            this.chkTachCDHA.TabIndex = 60;
            this.chkTachCDHA.Text = "Tách tiền CĐHA?";
            // 
            // frm_baocaodoanhthuphongkham
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(784, 562);
            this.Controls.Add(this.uiGroupBox2);
            this.Controls.Add(this.baocaO_TIEUDE1);
            this.Controls.Add(this.cmdExportToExcel);
            this.Controls.Add(this.dtNgayInPhieu);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.cmdInPhieuXN);
            this.Controls.Add(this.cmdExit);
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frm_baocaodoanhthuphongkham";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "BÁO CÁO THU TIỀN DỊCH VỤ KCB";
            this.Load += new System.EventHandler(this.frm_BAOCAO_TONGHOP_TAI_KKB_DTUONG_THUPHI_Load);
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
            this.uiGroupBox2.ResumeLayout(false);
            this.uiGroupBox2.PerformLayout();
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
            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();
            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();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_Taobenhnhancapcuu));
            Janus.Windows.GridEX.GridEXLayout grdGiuong_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdBuong_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout cboGia_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            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();
            this.label8 = new System.Windows.Forms.Label();
            this.label21 = new System.Windows.Forms.Label();
            this.label17 = new System.Windows.Forms.Label();
            this.lnkThem = new System.Windows.Forms.LinkLabel();
            this.lblDiachiBHYT = new System.Windows.Forms.Label();
            this.lblNoiCapThe = new System.Windows.Forms.Label();
            this.label24 = new System.Windows.Forms.Label();
            this.lblClinicName = new System.Windows.Forms.Label();
            this.label20 = new System.Windows.Forms.Label();
            this.label40 = new System.Windows.Forms.Label();
            this.label39 = new System.Windows.Forms.Label();
            this.dtInsToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.dtInsFromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.chkChuyenVien = new Janus.Windows.EditControls.UICheckBox();
            this.chkTraiTuyen = new Janus.Windows.EditControls.UICheckBox();
            this.lblMatheBHYT = new System.Windows.Forms.Label();
            this.lblPtram = new System.Windows.Forms.Label();
            this.label25 = new System.Windows.Forms.Label();
            this.chkCapCuu = new Janus.Windows.EditControls.UICheckBox();
            this.label14 = new System.Windows.Forms.Label();
            this.label12 = new System.Windows.Forms.Label();
            this.cboPatientSex = new Janus.Windows.EditControls.UIComboBox();
            this.label11 = new System.Windows.Forms.Label();
            this.label9 = new System.Windows.Forms.Label();
            this.txtTuoi = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
            this.label46 = new System.Windows.Forms.Label();
            this.lblHoten = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.dtCreateDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.cmdThemmoiDiachinh = new Janus.Windows.EditControls.UIButton();
            this.txtTrieuChungBD = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.txtDantoc = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.txtMaDTsinhsong = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.chkTudongthemmoi = new System.Windows.Forms.CheckBox();
            this.cmdLaysoBANoitru = new Janus.Windows.EditControls.UIButton();
            this.label6 = new System.Windows.Forms.Label();
            this.lblDiachiBN = new System.Windows.Forms.Label();
            this.txtMaQuyenloi_BHYT = new System.Windows.Forms.TextBox();
            this.txtNoiphattheBHYT = new System.Windows.Forms.TextBox();
            this.txtOthu4 = new System.Windows.Forms.TextBox();
            this.txtOthu5 = new System.Windows.Forms.TextBox();
            this.txtOthu6 = new System.Windows.Forms.TextBox();
            this.txtNoiDongtrusoKCBBD = new System.Windows.Forms.TextBox();
            this.txtNoiDKKCBBD = new System.Windows.Forms.TextBox();
            this.txtPtramBHYT = new System.Windows.Forms.TextBox();
            this.pnlBHYT = new System.Windows.Forms.Panel();
            this.lblPtramdauthe = new System.Windows.Forms.Label();
            this.txtptramDauthe = new System.Windows.Forms.TextBox();
            this.lblTuyenBHYT = new System.Windows.Forms.Label();
            this.label13 = new System.Windows.Forms.Label();
            this.chkGiayBHYT = new Janus.Windows.EditControls.UICheckBox();
            this.txtMaDtuong_BHYT2 = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.txtMaDtuong_BHYT = new System.Windows.Forms.TextBox();
            this.txtDiachi_bhyt = new VNS.HIS.UCs.AutoCompleteTextbox_Diachi();
            this.cmdGetBV = new Janus.Windows.EditControls.UIButton();
            this.txtTEN_BN = new System.Windows.Forms.TextBox();
            this.txtCMT = new System.Windows.Forms.TextBox();
            this.txtNamSinh = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
            this.txtMaBN = new System.Windows.Forms.TextBox();
            this.txtMaLankham = new System.Windows.Forms.TextBox();
            this.txtSolankham = new System.Windows.Forms.TextBox();
            this.pnlMain = new System.Windows.Forms.Panel();
            this.pnlRight = new System.Windows.Forms.Panel();
            this.panel2 = new System.Windows.Forms.Panel();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.txtGhiChu = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtBedCode = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.txtRoom_code = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
            this.grdGiuong = new Janus.Windows.GridEX.GridEX();
            this.grdBuong = new Janus.Windows.GridEX.GridEX();
            this.cboGia = new Janus.Windows.GridEX.EditControls.MultiColumnCombo();
            this.txtGia = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.label23 = new System.Windows.Forms.Label();
            this.label29 = new System.Windows.Forms.Label();
            this.label30 = new System.Windows.Forms.Label();
            this.txtPhut = new Janus.Windows.GridEX.EditControls.NumericEditBox();
            this.label27 = new System.Windows.Forms.Label();
            this.txtGio = new Janus.Windows.GridEX.EditControls.NumericEditBox();
            this.label28 = new System.Windows.Forms.Label();
            this.dtNgayChuyen = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.txtKhoanoitru = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.label4 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.label19 = new System.Windows.Forms.Label();
            this.label26 = new System.Windows.Forms.Label();
            this.txtSoBenhAn = new Janus.Windows.GridEX.EditControls.EditBox();
            this.vbLine3 = new VNS.UCs.VBLine();
            this.txtSoDT = new System.Windows.Forms.TextBox();
            this.chkLaysokham = new Janus.Windows.EditControls.UICheckBox();
            this.txtSoKcb = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.txtXaphuong = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.label16 = new System.Windows.Forms.Label();
            this.txtQuanhuyen = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.label15 = new System.Windows.Forms.Label();
            this.txtTinhTp = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.chkTpQH = new System.Windows.Forms.CheckBox();
            this.txtNgheNghiep = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.txtDiachi = new VNS.HIS.UCs.AutoCompleteTextbox_Diachi();
            this.dtpBOD = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.ucTamung1 = new ucTamung();
            this.txtNoichuyenden = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.cboDoituongKCB = new Janus.Windows.EditControls.UIComboBox();
            this.panel1 = new System.Windows.Forms.Panel();
            this.pnlTieuDe = new System.Windows.Forms.Panel();
            this.label18 = new System.Windows.Forms.Label();
            this.panel4 = new System.Windows.Forms.Panel();
            this.vbLine2 = new VNS.UCs.VBLine();
            this.vbLine1 = new VNS.UCs.VBLine();
            this.lblDoituongKCB = new System.Windows.Forms.Label();
            this.dtpInputDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.pnlBottom = new System.Windows.Forms.Panel();
            this.lblMsg = new System.Windows.Forms.Label();
            this.cmdThemMoiBN = new Janus.Windows.EditControls.UIButton();
            this.cmdSave = new Janus.Windows.EditControls.UIButton();
            this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
            this.pnlBHYT.SuspendLayout();
            this.pnlMain.SuspendLayout();
            this.pnlRight.SuspendLayout();
            this.panel2.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
            this.uiGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdGiuong)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdBuong)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cboGia)).BeginInit();
            this.tabPage3.SuspendLayout();
            this.panel1.SuspendLayout();
            this.pnlTieuDe.SuspendLayout();
            this.pnlBottom.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
            this.SuspendLayout();
            // 
            // label8
            // 
            this.label8.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label8.ForeColor = System.Drawing.Color.Red;
            this.label8.Location = new System.Drawing.Point(490, 9);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(98, 21);
            this.label8.TabIndex = 448;
            this.label8.Text = "Năm sinh:";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label21
            // 
            this.label21.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label21.Location = new System.Drawing.Point(490, 39);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(98, 21);
            this.label21.TabIndex = 443;
            this.label21.Text = "Nghề nghiệp:";
            this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label17
            // 
            this.label17.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label17.Location = new System.Drawing.Point(1, 88);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(108, 21);
            this.label17.TabIndex = 418;
            this.label17.Text = "Triệu chứng BĐ:";
            this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lnkThem
            // 
            this.lnkThem.AutoSize = true;
            this.lnkThem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lnkThem.Location = new System.Drawing.Point(597, 63);
            this.lnkThem.Name = "lnkThem";
            this.lnkThem.Size = new System.Drawing.Size(130, 15);
            this.lnkThem.TabIndex = 538;
            this.lnkThem.TabStop = true;
            this.lnkThem.Text = "Thêm mới nơi KCBBĐ";
            this.toolTip1.SetToolTip(this.lnkThem, "Nhấn vào đây để thêm mới nơi ĐKKCB ban đầu");
            this.lnkThem.Visible = false;
            // 
            // lblDiachiBHYT
            // 
            this.lblDiachiBHYT.BackColor = System.Drawing.Color.Transparent;
            this.lblDiachiBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblDiachiBHYT.Location = new System.Drawing.Point(6, 58);
            this.lblDiachiBHYT.Name = "lblDiachiBHYT";
            this.lblDiachiBHYT.Size = new System.Drawing.Size(115, 21);
            this.lblDiachiBHYT.TabIndex = 537;
            this.lblDiachiBHYT.Text = "Địa chỉ BHYT:";
            this.lblDiachiBHYT.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblNoiCapThe
            // 
            this.lblNoiCapThe.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblNoiCapThe.Location = new System.Drawing.Point(588, 41);
            this.lblNoiCapThe.Name = "lblNoiCapThe";
            this.lblNoiCapThe.Size = new System.Drawing.Size(221, 18);
            this.lblNoiCapThe.TabIndex = 441;
            this.lblNoiCapThe.Text = "Hà Nội";
            // 
            // label24
            // 
            this.label24.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label24.Location = new System.Drawing.Point(477, 61);
            this.label24.Name = "label24";
            this.label24.Size = new System.Drawing.Size(109, 21);
            this.label24.TabIndex = 440;
            this.label24.Text = "Nơi ĐKKCBBĐ :";
            this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblClinicName
            // 
            this.lblClinicName.Location = new System.Drawing.Point(588, 63);
            this.lblClinicName.Name = "lblClinicName";
            this.lblClinicName.Size = new System.Drawing.Size(404, 44);
            this.lblClinicName.TabIndex = 439;
            this.lblClinicName.Text = "ClinicName";
            this.lblClinicName.Visible = false;
            // 
            // label20
            // 
            this.label20.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label20.Location = new System.Drawing.Point(477, 38);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(109, 21);
            this.label20.TabIndex = 438;
            this.label20.Text = "Nơi cấp thẻ :";
            this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label40
            // 
            this.label40.AutoSize = true;
            this.label40.BackColor = System.Drawing.SystemColors.Control;
            this.label40.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label40.Location = new System.Drawing.Point(258, 38);
            this.label40.Name = "label40";
            this.label40.Size = new System.Drawing.Size(57, 15);
            this.label40.TabIndex = 433;
            this.label40.Text = "đến ngày";
            // 
            // label39
            // 
            this.label39.BackColor = System.Drawing.Color.Transparent;
            this.label39.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label39.Location = new System.Drawing.Point(6, 33);
            this.label39.Name = "label39";
            this.label39.Size = new System.Drawing.Size(115, 21);
            this.label39.TabIndex = 432;
            this.label39.Text = "Ngày đăng ký:";
            this.label39.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtInsToDate
            // 
            this.dtInsToDate.CustomFormat = "dd/MM/yyyy";
            this.dtInsToDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtInsToDate.DropDownCalendar.Name = "";
            this.dtInsToDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtInsToDate.Location = new System.Drawing.Point(317, 35);
            this.dtInsToDate.Name = "dtInsToDate";
            this.dtInsToDate.ShowUpDown = true;
            this.dtInsToDate.Size = new System.Drawing.Size(154, 21);
            this.dtInsToDate.TabIndex = 11;
            this.dtInsToDate.Value = new System.DateTime(2013, 9, 23, 0, 0, 0, 0);
            // 
            // dtInsFromDate
            // 
            this.dtInsFromDate.CustomFormat = "dd/MM/yyyy";
            this.dtInsFromDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtInsFromDate.DropDownCalendar.Name = "";
            this.dtInsFromDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtInsFromDate.Location = new System.Drawing.Point(124, 36);
            this.dtInsFromDate.Name = "dtInsFromDate";
            this.dtInsFromDate.ShowUpDown = true;
            this.dtInsFromDate.Size = new System.Drawing.Size(112, 21);
            this.dtInsFromDate.TabIndex = 10;
            this.dtInsFromDate.Value = new System.DateTime(2013, 9, 23, 0, 0, 0, 0);
            // 
            // chkChuyenVien
            // 
            this.chkChuyenVien.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkChuyenVien.Location = new System.Drawing.Point(483, 230);
            this.chkChuyenVien.Name = "chkChuyenVien";
            this.chkChuyenVien.Size = new System.Drawing.Size(111, 23);
            this.chkChuyenVien.TabIndex = 12;
            this.chkChuyenVien.TabStop = false;
            this.chkChuyenVien.Text = "BV chuyển đến";
            // 
            // chkTraiTuyen
            // 
            this.chkTraiTuyen.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkTraiTuyen.Location = new System.Drawing.Point(356, 108);
            this.chkTraiTuyen.Name = "chkTraiTuyen";
            this.chkTraiTuyen.Size = new System.Drawing.Size(99, 23);
            this.chkTraiTuyen.TabIndex = 12;
            this.chkTraiTuyen.TabStop = false;
            this.chkTraiTuyen.Text = "Trái tuyến?";
            // 
            // lblMatheBHYT
            // 
            this.lblMatheBHYT.Location = new System.Drawing.Point(8, 9);
            this.lblMatheBHYT.Name = "lblMatheBHYT";
            this.lblMatheBHYT.Size = new System.Drawing.Size(113, 21);
            this.lblMatheBHYT.TabIndex = 421;
            this.lblMatheBHYT.Text = "Mã thẻ BHYT:";
            this.lblMatheBHYT.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblPtram
            // 
            this.lblPtram.BackColor = System.Drawing.Color.Transparent;
            this.lblPtram.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblPtram.Location = new System.Drawing.Point(477, 10);
            this.lblPtram.Name = "lblPtram";
            this.lblPtram.Size = new System.Drawing.Size(109, 21);
            this.lblPtram.TabIndex = 410;
            this.lblPtram.Text = "% BHYT:";
            this.lblPtram.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label25
            // 
            this.label25.AutoSize = true;
            this.label25.BackColor = System.Drawing.Color.Transparent;
            this.label25.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label25.Location = new System.Drawing.Point(640, 12);
            this.label25.Name = "label25";
            this.label25.Size = new System.Drawing.Size(26, 15);
            this.label25.TabIndex = 411;
            this.label25.Text = "(%)";
            // 
            // chkCapCuu
            // 
            this.chkCapCuu.Checked = true;
            this.chkCapCuu.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkCapCuu.Enabled = false;
            this.chkCapCuu.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkCapCuu.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.chkCapCuu.Location = new System.Drawing.Point(123, 108);
            this.chkCapCuu.Name = "chkCapCuu";
            this.chkCapCuu.Size = new System.Drawing.Size(82, 23);
            this.chkCapCuu.TabIndex = 12;
            this.chkCapCuu.TabStop = false;
            this.chkCapCuu.Text = "Cấp cứu?";
            this.chkCapCuu.ToolTipText = "Dành cho bệnh nhân cấp cứu";
            // 
            // 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(385, 69);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(87, 21);
            this.label14.TabIndex = 412;
            this.label14.Text = "Lần khám thứ:";
            // 
            // 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(241, 41);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(82, 15);
            this.label12.TabIndex = 407;
            this.label12.Text = "Số CMT:";
            this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cboPatientSex
            // 
            this.cboPatientSex.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboPatientSex.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "Nam";
            uiComboBoxItem1.Value = 0;
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "Nữ";
            uiComboBoxItem2.Value = 1;
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "Khác";
            uiComboBoxItem3.Value = 2;
            this.cboPatientSex.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3});
            this.cboPatientSex.Location = new System.Drawing.Point(111, 36);
            this.cboPatientSex.Name = "cboPatientSex";
            this.cboPatientSex.Size = new System.Drawing.Size(126, 21);
            this.cboPatientSex.TabIndex = 16;
            this.cboPatientSex.Text = "Giới tính";
            // 
            // label11
            // 
            this.label11.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label11.ForeColor = System.Drawing.Color.Red;
            this.label11.Location = new System.Drawing.Point(1, 35);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(108, 21);
            this.label11.TabIndex = 404;
            this.label11.Text = "Giới tính";
            this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // 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(490, 90);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(98, 21);
            this.label9.TabIndex = 401;
            this.label9.Text = "Số ĐT liên hệ:";
            this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtTuoi
            // 
            this.txtTuoi.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTuoi.Location = new System.Drawing.Point(746, 10);
            this.txtTuoi.MaxLength = 3;
            this.txtTuoi.Name = "txtTuoi";
            this.txtTuoi.Numeric = true;
            this.txtTuoi.Size = new System.Drawing.Size(51, 21);
            this.txtTuoi.TabIndex = 15;
            this.txtTuoi.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // label46
            // 
            this.label46.AutoSize = true;
            this.label46.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label46.ForeColor = System.Drawing.Color.Red;
            this.label46.Location = new System.Drawing.Point(709, 13);
            this.label46.Name = "label46";
            this.label46.Size = new System.Drawing.Size(31, 15);
            this.label46.TabIndex = 4;
            this.label46.Text = "Tuổi";
            // 
            // lblHoten
            // 
            this.lblHoten.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblHoten.ForeColor = System.Drawing.Color.Red;
            this.lblHoten.Location = new System.Drawing.Point(1, 6);
            this.lblHoten.Name = "lblHoten";
            this.lblHoten.Size = new System.Drawing.Size(108, 21);
            this.lblHoten.TabIndex = 387;
            this.lblHoten.Text = "Tên BN :";
            this.lblHoten.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.ForeColor = System.Drawing.Color.Red;
            this.label3.Location = new System.Drawing.Point(515, 68);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(85, 21);
            this.label3.TabIndex = 385;
            this.label3.Text = "Ngày khám:";
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtCreateDate
            // 
            this.dtCreateDate.CustomFormat = "dd/MM/yyyy";
            this.dtCreateDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtCreateDate.DropDownCalendar.Name = "";
            this.dtCreateDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtCreateDate.Location = new System.Drawing.Point(600, 68);
            this.dtCreateDate.Name = "dtCreateDate";
            this.dtCreateDate.ShowUpDown = true;
            this.dtCreateDate.Size = new System.Drawing.Size(112, 21);
            this.dtCreateDate.TabIndex = 1;
            this.dtCreateDate.TabStop = false;
            this.dtCreateDate.Value = new System.DateTime(2013, 9, 23, 0, 0, 0, 0);
            // 
            // label2
            // 
            this.label2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.ForeColor = System.Drawing.Color.Red;
            this.label2.Location = new System.Drawing.Point(214, 68);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(72, 21);
            this.label2.TabIndex = 2;
            this.label2.Text = "Mã khám :";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label1
            // 
            this.label1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.ForeColor = System.Drawing.Color.Red;
            this.label1.Location = new System.Drawing.Point(14, 69);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(107, 21);
            this.label1.TabIndex = 0;
            this.label1.Text = "Mã Bệnh nhân :";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // toolTip1
            // 
            this.toolTip1.IsBalloon = true;
            this.toolTip1.ToolTipTitle = "Trợ giúp";
            // 
            // cmdThemmoiDiachinh
            // 
            this.cmdThemmoiDiachinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdThemmoiDiachinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemmoiDiachinh.Image")));
            this.cmdThemmoiDiachinh.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdThemmoiDiachinh.Location = new System.Drawing.Point(462, 61);
            this.cmdThemmoiDiachinh.Name = "cmdThemmoiDiachinh";
            this.cmdThemmoiDiachinh.Size = new System.Drawing.Size(25, 25);
            this.cmdThemmoiDiachinh.TabIndex = 610;
            this.cmdThemmoiDiachinh.TabStop = false;
            this.toolTip1.SetToolTip(this.cmdThemmoiDiachinh, "Thêm mới địa chính");
            // 
            // txtTrieuChungBD
            // 
            this.txtTrieuChungBD._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtTrieuChungBD._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTrieuChungBD.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtTrieuChungBD.AutoCompleteList")));
            this.txtTrieuChungBD.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtTrieuChungBD.CaseSensitive = false;
            this.txtTrieuChungBD.CompareNoID = true;
            this.txtTrieuChungBD.DefaultCode = "-1";
            this.txtTrieuChungBD.DefaultID = "-1";
            this.txtTrieuChungBD.Drug_ID = null;
            this.txtTrieuChungBD.ExtraWidth = 0;
            this.txtTrieuChungBD.FillValueAfterSelect = false;
            this.txtTrieuChungBD.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTrieuChungBD.LOAI_DANHMUC = "TRIEU_CHUNG";
            this.txtTrieuChungBD.Location = new System.Drawing.Point(111, 88);
            this.txtTrieuChungBD.MaxHeight = -1;
            this.txtTrieuChungBD.MinTypedCharacters = 2;
            this.txtTrieuChungBD.MyCode = "-1";
            this.txtTrieuChungBD.MyID = "-1";
            this.txtTrieuChungBD.Name = "txtTrieuChungBD";
            this.txtTrieuChungBD.RaiseEvent = false;
            this.txtTrieuChungBD.RaiseEventEnter = false;
            this.txtTrieuChungBD.RaiseEventEnterWhenEmpty = false;
            this.txtTrieuChungBD.SelectedIndex = -1;
            this.txtTrieuChungBD.Size = new System.Drawing.Size(348, 21);
            this.txtTrieuChungBD.splitChar = '@';
            this.txtTrieuChungBD.splitCharIDAndCode = '#';
            this.txtTrieuChungBD.TabIndex = 21;
            this.txtTrieuChungBD.TakeCode = false;
            this.toolTip1.SetToolTip(this.txtTrieuChungBD, "Nhấn vào đây để xem và bổ sung thêm danh mục triệu chứng ban đầu");
            this.txtTrieuChungBD.txtMyCode = null;
            this.txtTrieuChungBD.txtMyCode_Edit = null;
            this.txtTrieuChungBD.txtMyID = null;
            this.txtTrieuChungBD.txtMyID_Edit = null;
            this.txtTrieuChungBD.txtMyName = null;
            this.txtTrieuChungBD.txtMyName_Edit = null;
            this.txtTrieuChungBD.txtNext = null;
            // 
            // txtDantoc
            // 
            this.txtDantoc._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtDantoc._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDantoc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtDantoc.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtDantoc.AutoCompleteList")));
            this.txtDantoc.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtDantoc.CaseSensitive = false;
            this.txtDantoc.CompareNoID = true;
            this.txtDantoc.DefaultCode = "-1";
            this.txtDantoc.DefaultID = "-1";
            this.txtDantoc.Drug_ID = null;
            this.txtDantoc.ExtraWidth = 0;
            this.txtDantoc.FillValueAfterSelect = false;
            this.txtDantoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDantoc.LOAI_DANHMUC = "DAN_TOC";
            this.txtDantoc.Location = new System.Drawing.Point(592, 63);
            this.txtDantoc.MaxHeight = -1;
            this.txtDantoc.MinTypedCharacters = 2;
            this.txtDantoc.MyCode = "-1";
            this.txtDantoc.MyID = "-1";
            this.txtDantoc.Name = "txtDantoc";
            this.txtDantoc.RaiseEvent = false;
            this.txtDantoc.RaiseEventEnter = false;
            this.txtDantoc.RaiseEventEnterWhenEmpty = false;
            this.txtDantoc.SelectedIndex = -1;
            this.txtDantoc.Size = new System.Drawing.Size(384, 21);
            this.txtDantoc.splitChar = '@';
            this.txtDantoc.splitCharIDAndCode = '#';
            this.txtDantoc.TabIndex = 20;
            this.txtDantoc.TakeCode = false;
            this.toolTip1.SetToolTip(this.txtDantoc, "Nhấn vào đây để xem và bổ sung thêm danh mục dân tộc");
            this.txtDantoc.txtMyCode = null;
            this.txtDantoc.txtMyCode_Edit = null;
            this.txtDantoc.txtMyID = null;
            this.txtDantoc.txtMyID_Edit = null;
            this.txtDantoc.txtMyName = null;
            this.txtDantoc.txtMyName_Edit = null;
            this.txtDantoc.txtNext = null;
            // 
            // txtMaDTsinhsong
            // 
            this.txtMaDTsinhsong._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtMaDTsinhsong._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaDTsinhsong.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtMaDTsinhsong.AutoCompleteList")));
            this.txtMaDTsinhsong.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtMaDTsinhsong.CaseSensitive = false;
            this.txtMaDTsinhsong.CompareNoID = true;
            this.txtMaDTsinhsong.DefaultCode = "-1";
            this.txtMaDTsinhsong.DefaultID = "-1";
            this.txtMaDTsinhsong.Drug_ID = null;
            this.txtMaDTsinhsong.ExtraWidth = 0;
            this.txtMaDTsinhsong.FillValueAfterSelect = false;
            this.txtMaDTsinhsong.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaDTsinhsong.LOAI_DANHMUC = "MADOITUONGSINHSONG";
            this.txtMaDTsinhsong.Location = new System.Drawing.Point(123, 84);
            this.txtMaDTsinhsong.MaxHeight = -1;
            this.txtMaDTsinhsong.MinTypedCharacters = 2;
            this.txtMaDTsinhsong.MyCode = "-1";
            this.txtMaDTsinhsong.MyID = "-1";
            this.txtMaDTsinhsong.Name = "txtMaDTsinhsong";
            this.txtMaDTsinhsong.RaiseEvent = false;
            this.txtMaDTsinhsong.RaiseEventEnter = true;
            this.txtMaDTsinhsong.RaiseEventEnterWhenEmpty = false;
            this.txtMaDTsinhsong.SelectedIndex = -1;
            this.txtMaDTsinhsong.Size = new System.Drawing.Size(348, 21);
            this.txtMaDTsinhsong.splitChar = '@';
            this.txtMaDTsinhsong.splitCharIDAndCode = '#';
            this.txtMaDTsinhsong.TabIndex = 540;
            this.txtMaDTsinhsong.TakeCode = false;
            this.toolTip1.SetToolTip(this.txtMaDTsinhsong, "Mã đối tượng sinh sống");
            this.txtMaDTsinhsong.txtMyCode = null;
            this.txtMaDTsinhsong.txtMyCode_Edit = null;
            this.txtMaDTsinhsong.txtMyID = null;
            this.txtMaDTsinhsong.txtMyID_Edit = null;
            this.txtMaDTsinhsong.txtMyName = null;
            this.txtMaDTsinhsong.txtMyName_Edit = null;
            this.txtMaDTsinhsong.txtNext = null;
            // 
            // chkTudongthemmoi
            // 
            this.chkTudongthemmoi.AutoSize = true;
            this.chkTudongthemmoi.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkTudongthemmoi.Location = new System.Drawing.Point(12, 11);
            this.chkTudongthemmoi.Name = "chkTudongthemmoi";
            this.chkTudongthemmoi.Size = new System.Drawing.Size(240, 19);
            this.chkTudongthemmoi.TabIndex = 33;
            this.chkTudongthemmoi.TabStop = false;
            this.chkTudongthemmoi.Text = "Tự động thêm mới Bệnh nhân liên tục?";
            this.toolTip1.SetToolTip(this.chkTudongthemmoi, "Chọn mục này nếu bạn muốn hệ thống tự động chuyển sang chế độ thêm mới Bệnh nhân " +
        "khác ngay sau khi bạn vừa lưu xong Bệnh nhân hiện tại");
            this.chkTudongthemmoi.UseVisualStyleBackColor = true;
            // 
            // cmdLaysoBANoitru
            // 
            this.cmdLaysoBANoitru.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdLaysoBANoitru.Image = ((System.Drawing.Image)(resources.GetObject("cmdLaysoBANoitru.Image")));
            this.cmdLaysoBANoitru.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdLaysoBANoitru.Location = new System.Drawing.Point(734, 156);
            this.cmdLaysoBANoitru.Name = "cmdLaysoBANoitru";
            this.cmdLaysoBANoitru.Size = new System.Drawing.Size(93, 27);
            this.cmdLaysoBANoitru.TabIndex = 0;
            this.cmdLaysoBANoitru.TabStop = false;
            this.cmdLaysoBANoitru.Text = "Refresh";
            this.toolTip1.SetToolTip(this.cmdLaysoBANoitru, "Lấy lại số bệnh án nội trú");
            // 
            // label6
            // 
            this.label6.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label6.Location = new System.Drawing.Point(490, 64);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(98, 21);
            this.label6.TabIndex = 581;
            this.label6.Text = "Dân tộc:";
            this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblDiachiBN
            // 
            this.lblDiachiBN.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblDiachiBN.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.lblDiachiBN.Location = new System.Drawing.Point(1, 62);
            this.lblDiachiBN.Name = "lblDiachiBN";
            this.lblDiachiBN.Size = new System.Drawing.Size(108, 21);
            this.lblDiachiBN.TabIndex = 583;
            this.lblDiachiBN.Text = "Địa chỉ:";
            this.lblDiachiBN.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtMaQuyenloi_BHYT
            // 
            this.txtMaQuyenloi_BHYT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtMaQuyenloi_BHYT.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtMaQuyenloi_BHYT.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaQuyenloi_BHYT.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtMaQuyenloi_BHYT.Location = new System.Drawing.Point(183, 10);
            this.txtMaQuyenloi_BHYT.MaxLength = 1;
            this.txtMaQuyenloi_BHYT.Name = "txtMaQuyenloi_BHYT";
            this.txtMaQuyenloi_BHYT.Size = new System.Drawing.Size(24, 22);
            this.txtMaQuyenloi_BHYT.TabIndex = 3;
            this.txtMaQuyenloi_BHYT.Text = "3";
            this.txtMaQuyenloi_BHYT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtNoiphattheBHYT
            // 
            this.txtNoiphattheBHYT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNoiphattheBHYT.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtNoiphattheBHYT.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNoiphattheBHYT.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtNoiphattheBHYT.Location = new System.Drawing.Point(208, 10);
            this.txtNoiphattheBHYT.MaxLength = 2;
            this.txtNoiphattheBHYT.Name = "txtNoiphattheBHYT";
            this.txtNoiphattheBHYT.Size = new System.Drawing.Size(28, 22);
            this.txtNoiphattheBHYT.TabIndex = 4;
            this.txtNoiphattheBHYT.Text = "01";
            this.txtNoiphattheBHYT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtOthu4
            // 
            this.txtOthu4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtOthu4.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtOthu4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtOthu4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtOthu4.Location = new System.Drawing.Point(237, 10);
            this.txtOthu4.MaxLength = 2;
            this.txtOthu4.Name = "txtOthu4";
            this.txtOthu4.Size = new System.Drawing.Size(38, 22);
            this.txtOthu4.TabIndex = 5;
            this.txtOthu4.Text = "01";
            this.txtOthu4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtOthu5
            // 
            this.txtOthu5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtOthu5.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtOthu5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtOthu5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtOthu5.Location = new System.Drawing.Point(277, 10);
            this.txtOthu5.MaxLength = 3;
            this.txtOthu5.Name = "txtOthu5";
            this.txtOthu5.Size = new System.Drawing.Size(38, 22);
            this.txtOthu5.TabIndex = 6;
            this.txtOthu5.Text = "001";
            this.txtOthu5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtOthu6
            // 
            this.txtOthu6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtOthu6.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtOthu6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtOthu6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtOthu6.Location = new System.Drawing.Point(317, 10);
            this.txtOthu6.MaxLength = 5;
            this.txtOthu6.Name = "txtOthu6";
            this.txtOthu6.Size = new System.Drawing.Size(62, 22);
            this.txtOthu6.TabIndex = 7;
            this.txtOthu6.Text = "00001";
            this.txtOthu6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtNoiDongtrusoKCBBD
            // 
            this.txtNoiDongtrusoKCBBD.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNoiDongtrusoKCBBD.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtNoiDongtrusoKCBBD.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNoiDongtrusoKCBBD.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtNoiDongtrusoKCBBD.Location = new System.Drawing.Point(380, 10);
            this.txtNoiDongtrusoKCBBD.MaxLength = 2;
            this.txtNoiDongtrusoKCBBD.Name = "txtNoiDongtrusoKCBBD";
            this.txtNoiDongtrusoKCBBD.Size = new System.Drawing.Size(28, 22);
            this.txtNoiDongtrusoKCBBD.TabIndex = 8;
            this.txtNoiDongtrusoKCBBD.Text = "01";
            this.txtNoiDongtrusoKCBBD.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtNoiDKKCBBD
            // 
            this.txtNoiDKKCBBD.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNoiDKKCBBD.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtNoiDKKCBBD.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNoiDKKCBBD.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtNoiDKKCBBD.Location = new System.Drawing.Point(410, 10);
            this.txtNoiDKKCBBD.MaxLength = 3;
            this.txtNoiDKKCBBD.Name = "txtNoiDKKCBBD";
            this.txtNoiDKKCBBD.Size = new System.Drawing.Size(61, 22);
            this.txtNoiDKKCBBD.TabIndex = 9;
            this.txtNoiDKKCBBD.Text = "M34";
            this.txtNoiDKKCBBD.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtPtramBHYT
            // 
            this.txtPtramBHYT.BackColor = System.Drawing.Color.White;
            this.txtPtramBHYT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtPtramBHYT.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPtramBHYT.ForeColor = System.Drawing.Color.Blue;
            this.txtPtramBHYT.Location = new System.Drawing.Point(590, 8);
            this.txtPtramBHYT.MaxLength = 3;
            this.txtPtramBHYT.Name = "txtPtramBHYT";
            this.txtPtramBHYT.ReadOnly = true;
            this.txtPtramBHYT.Size = new System.Drawing.Size(50, 29);
            this.txtPtramBHYT.TabIndex = 9;
            this.txtPtramBHYT.TabStop = false;
            this.txtPtramBHYT.Text = "100";
            this.txtPtramBHYT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // pnlBHYT
            // 
            this.pnlBHYT.Controls.Add(this.lblPtramdauthe);
            this.pnlBHYT.Controls.Add(this.txtptramDauthe);
            this.pnlBHYT.Controls.Add(this.lblTuyenBHYT);
            this.pnlBHYT.Controls.Add(this.label13);
            this.pnlBHYT.Controls.Add(this.txtMaDTsinhsong);
            this.pnlBHYT.Controls.Add(this.chkGiayBHYT);
            this.pnlBHYT.Controls.Add(this.txtMaDtuong_BHYT2);
            this.pnlBHYT.Controls.Add(this.txtPtramBHYT);
            this.pnlBHYT.Controls.Add(this.txtMaDtuong_BHYT);
            this.pnlBHYT.Controls.Add(this.txtNoiDKKCBBD);
            this.pnlBHYT.Controls.Add(this.label39);
            this.pnlBHYT.Controls.Add(this.txtDiachi_bhyt);
            this.pnlBHYT.Controls.Add(this.dtInsToDate);
            this.pnlBHYT.Controls.Add(this.txtNoiDongtrusoKCBBD);
            this.pnlBHYT.Controls.Add(this.label40);
            this.pnlBHYT.Controls.Add(this.lblMatheBHYT);
            this.pnlBHYT.Controls.Add(this.dtInsFromDate);
            this.pnlBHYT.Controls.Add(this.txtOthu6);
            this.pnlBHYT.Controls.Add(this.label20);
            this.pnlBHYT.Controls.Add(this.lnkThem);
            this.pnlBHYT.Controls.Add(this.lblClinicName);
            this.pnlBHYT.Controls.Add(this.txtOthu5);
            this.pnlBHYT.Controls.Add(this.label24);
            this.pnlBHYT.Controls.Add(this.label25);
            this.pnlBHYT.Controls.Add(this.lblPtram);
            this.pnlBHYT.Controls.Add(this.txtOthu4);
            this.pnlBHYT.Controls.Add(this.lblNoiCapThe);
            this.pnlBHYT.Controls.Add(this.lblDiachiBHYT);
            this.pnlBHYT.Controls.Add(this.txtMaQuyenloi_BHYT);
            this.pnlBHYT.Controls.Add(this.txtNoiphattheBHYT);
            this.pnlBHYT.Controls.Add(this.chkTraiTuyen);
            this.pnlBHYT.Controls.Add(this.chkCapCuu);
            this.pnlBHYT.Location = new System.Drawing.Point(0, 119);
            this.pnlBHYT.Name = "pnlBHYT";
            this.pnlBHYT.Size = new System.Drawing.Size(1002, 137);
            this.pnlBHYT.TabIndex = 0;
            this.pnlBHYT.TabStop = true;
            // 
            // lblPtramdauthe
            // 
            this.lblPtramdauthe.BackColor = System.Drawing.Color.Transparent;
            this.lblPtramdauthe.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblPtramdauthe.Location = new System.Drawing.Point(672, 13);
            this.lblPtramdauthe.Name = "lblPtramdauthe";
            this.lblPtramdauthe.Size = new System.Drawing.Size(95, 21);
            this.lblPtramdauthe.TabIndex = 545;
            this.lblPtramdauthe.Text = "% Đầu thẻ:";
            this.lblPtramdauthe.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtptramDauthe
            // 
            this.txtptramDauthe.BackColor = System.Drawing.Color.White;
            this.txtptramDauthe.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtptramDauthe.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtptramDauthe.ForeColor = System.Drawing.Color.Blue;
            this.txtptramDauthe.Location = new System.Drawing.Point(768, 8);
            this.txtptramDauthe.MaxLength = 3;
            this.txtptramDauthe.Name = "txtptramDauthe";
            this.txtptramDauthe.ReadOnly = true;
            this.txtptramDauthe.Size = new System.Drawing.Size(50, 29);
            this.txtptramDauthe.TabIndex = 544;
            this.txtptramDauthe.TabStop = false;
            this.txtptramDauthe.Text = "100";
            this.txtptramDauthe.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // lblTuyenBHYT
            // 
            this.lblTuyenBHYT.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.lblTuyenBHYT.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
            this.lblTuyenBHYT.Location = new System.Drawing.Point(475, 77);
            this.lblTuyenBHYT.Name = "lblTuyenBHYT";
            this.lblTuyenBHYT.Size = new System.Drawing.Size(111, 32);
            this.lblTuyenBHYT.TabIndex = 542;
            this.lblTuyenBHYT.Text = "ĐÚNG TUYẾN";
            this.lblTuyenBHYT.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.lblTuyenBHYT.Visible = false;
            // 
            // label13
            // 
            this.label13.BackColor = System.Drawing.Color.Transparent;
            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(8, 83);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(111, 21);
            this.label13.TabIndex = 541;
            this.label13.Text = "Mã ĐT sinh sống:";
            this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // chkGiayBHYT
            // 
            this.chkGiayBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkGiayBHYT.Location = new System.Drawing.Point(219, 108);
            this.chkGiayBHYT.Name = "chkGiayBHYT";
            this.chkGiayBHYT.Size = new System.Drawing.Size(118, 23);
            this.chkGiayBHYT.TabIndex = 539;
            this.chkGiayBHYT.TabStop = false;
            this.chkGiayBHYT.Text = "Có giấy BHYT?";
            this.chkGiayBHYT.ToolTipText = "Chọn mục này sẽ được BHYT chi trả 100%";
            // 
            // txtMaDtuong_BHYT2
            // 
            this.txtMaDtuong_BHYT2._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtMaDtuong_BHYT2._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaDtuong_BHYT2._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtMaDtuong_BHYT2.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtMaDtuong_BHYT2.AutoCompleteList")));
            this.txtMaDtuong_BHYT2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtMaDtuong_BHYT2.CaseSensitive = false;
            this.txtMaDtuong_BHYT2.CompareNoID = true;
            this.txtMaDtuong_BHYT2.DefaultCode = "-1";
            this.txtMaDtuong_BHYT2.DefaultID = "-1";
            this.txtMaDtuong_BHYT2.Drug_ID = null;
            this.txtMaDtuong_BHYT2.ExtraWidth = 250;
            this.txtMaDtuong_BHYT2.FillValueAfterSelect = true;
            this.txtMaDtuong_BHYT2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaDtuong_BHYT2.Location = new System.Drawing.Point(476, 83);
            this.txtMaDtuong_BHYT2.MaxHeight = 289;
            this.txtMaDtuong_BHYT2.MinTypedCharacters = 2;
            this.txtMaDtuong_BHYT2.MyCode = "-1";
            this.txtMaDtuong_BHYT2.MyID = "-1";
            this.txtMaDtuong_BHYT2.MyText = "";
            this.txtMaDtuong_BHYT2.Name = "txtMaDtuong_BHYT2";
            this.txtMaDtuong_BHYT2.RaiseEvent = false;
            this.txtMaDtuong_BHYT2.RaiseEventEnter = false;
            this.txtMaDtuong_BHYT2.RaiseEventEnterWhenEmpty = false;
            this.txtMaDtuong_BHYT2.SelectedIndex = -1;
            this.txtMaDtuong_BHYT2.Size = new System.Drawing.Size(58, 21);
            this.txtMaDtuong_BHYT2.splitChar = '@';
            this.txtMaDtuong_BHYT2.splitCharIDAndCode = '#';
            this.txtMaDtuong_BHYT2.TabIndex = 2;
            this.txtMaDtuong_BHYT2.TakeCode = true;
            this.txtMaDtuong_BHYT2.txtMyCode = null;
            this.txtMaDtuong_BHYT2.txtMyCode_Edit = null;
            this.txtMaDtuong_BHYT2.txtMyID = null;
            this.txtMaDtuong_BHYT2.txtMyID_Edit = null;
            this.txtMaDtuong_BHYT2.txtMyName = null;
            this.txtMaDtuong_BHYT2.txtMyName_Edit = null;
            this.txtMaDtuong_BHYT2.txtNext = this.txtMaQuyenloi_BHYT;
            this.txtMaDtuong_BHYT2.Visible = false;
            // 
            // txtMaDtuong_BHYT
            // 
            this.txtMaDtuong_BHYT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtMaDtuong_BHYT.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtMaDtuong_BHYT.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaDtuong_BHYT.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtMaDtuong_BHYT.Location = new System.Drawing.Point(124, 10);
            this.txtMaDtuong_BHYT.MaxLength = 2;
            this.txtMaDtuong_BHYT.Name = "txtMaDtuong_BHYT";
            this.txtMaDtuong_BHYT.Size = new System.Drawing.Size(58, 22);
            this.txtMaDtuong_BHYT.TabIndex = 2;
            this.txtMaDtuong_BHYT.Text = "DN";
            this.txtMaDtuong_BHYT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtDiachi_bhyt
            // 
            this.txtDiachi_bhyt._backcolor = System.Drawing.SystemColors.Control;
            this.txtDiachi_bhyt._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDiachi_bhyt.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtDiachi_bhyt.AutoCompleteList")));
            this.txtDiachi_bhyt.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtDiachi_bhyt.CaseSensitive = false;
            this.txtDiachi_bhyt.Drug_ID = null;
            this.txtDiachi_bhyt.ExtraWidth = 0;
            this.txtDiachi_bhyt.FillValueAfterSelect = false;
            this.txtDiachi_bhyt.Location = new System.Drawing.Point(123, 60);
            this.txtDiachi_bhyt.MaxHeight = 289;
            this.txtDiachi_bhyt.MinTypedCharacters = 2;
            this.txtDiachi_bhyt.Name = "txtDiachi_bhyt";
            this.txtDiachi_bhyt.RaiseEvent = false;
            this.txtDiachi_bhyt.SelectedIndex = -1;
            this.txtDiachi_bhyt.Size = new System.Drawing.Size(348, 20);
            this.txtDiachi_bhyt.splitChar = '\0';
            this.txtDiachi_bhyt.splitCharIDAndCode = '\0';
            this.txtDiachi_bhyt.TabIndex = 12;
            this.txtDiachi_bhyt.txtMyCode = null;
            this.txtDiachi_bhyt.txtMyCode_Edit = null;
            this.txtDiachi_bhyt.txtMyID = null;
            this.txtDiachi_bhyt.txtMyID_Edit = null;
            this.txtDiachi_bhyt.txtMyName = null;
            this.txtDiachi_bhyt.txtMyName_Edit = null;
            this.txtDiachi_bhyt.txtNext = null;
            // 
            // cmdGetBV
            // 
            this.cmdGetBV.Enabled = false;
            this.cmdGetBV.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdGetBV.Image = ((System.Drawing.Image)(resources.GetObject("cmdGetBV.Image")));
            this.cmdGetBV.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdGetBV.Location = new System.Drawing.Point(957, 226);
            this.cmdGetBV.Name = "cmdGetBV";
            this.cmdGetBV.Size = new System.Drawing.Size(25, 25);
            this.cmdGetBV.TabIndex = 540;
            this.cmdGetBV.TabStop = false;
            // 
            // txtTEN_BN
            // 
            this.txtTEN_BN.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtTEN_BN.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTEN_BN.Location = new System.Drawing.Point(111, 7);
            this.txtTEN_BN.Name = "txtTEN_BN";
            this.txtTEN_BN.Size = new System.Drawing.Size(348, 21);
            this.txtTEN_BN.TabIndex = 13;
            // 
            // txtCMT
            // 
            this.txtCMT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtCMT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtCMT.Location = new System.Drawing.Point(323, 37);
            this.txtCMT.MaxLength = 30;
            this.txtCMT.Name = "txtCMT";
            this.txtCMT.Size = new System.Drawing.Size(137, 21);
            this.txtCMT.TabIndex = 17;
            // 
            // txtNamSinh
            // 
            this.txtNamSinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNamSinh.Location = new System.Drawing.Point(592, 10);
            this.txtNamSinh.MaxLength = 4;
            this.txtNamSinh.Name = "txtNamSinh";
            this.txtNamSinh.Numeric = true;
            this.txtNamSinh.Size = new System.Drawing.Size(111, 21);
            this.txtNamSinh.TabIndex = 14;
            this.txtNamSinh.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // txtMaBN
            // 
            this.txtMaBN.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtMaBN.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaBN.ForeColor = System.Drawing.Color.Black;
            this.txtMaBN.Location = new System.Drawing.Point(124, 69);
            this.txtMaBN.MaxLength = 10;
            this.txtMaBN.Name = "txtMaBN";
            this.txtMaBN.Size = new System.Drawing.Size(83, 21);
            this.txtMaBN.TabIndex = 0;
            this.txtMaBN.TabStop = false;
            this.txtMaBN.Text = "123456";
            this.txtMaBN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtMaLankham
            // 
            this.txtMaLankham.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtMaLankham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaLankham.ForeColor = System.Drawing.Color.Black;
            this.txtMaLankham.Location = new System.Drawing.Point(289, 68);
            this.txtMaLankham.MaxLength = 8;
            this.txtMaLankham.Name = "txtMaLankham";
            this.txtMaLankham.Size = new System.Drawing.Size(90, 21);
            this.txtMaLankham.TabIndex = 0;
            this.txtMaLankham.TabStop = false;
            this.txtMaLankham.Text = "14000001";
            this.txtMaLankham.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtSolankham
            // 
            this.txtSolankham.BackColor = System.Drawing.Color.White;
            this.txtSolankham.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtSolankham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSolankham.ForeColor = System.Drawing.Color.Black;
            this.txtSolankham.Location = new System.Drawing.Point(474, 68);
            this.txtSolankham.MaxLength = 8;
            this.txtSolankham.Name = "txtSolankham";
            this.txtSolankham.ReadOnly = true;
            this.txtSolankham.Size = new System.Drawing.Size(39, 21);
            this.txtSolankham.TabIndex = 0;
            this.txtSolankham.TabStop = false;
            this.txtSolankham.Text = "2";
            this.txtSolankham.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // pnlMain
            // 
            this.pnlMain.Controls.Add(this.pnlRight);
            this.pnlMain.Controls.Add(this.pnlBottom);
            this.pnlMain.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlMain.Location = new System.Drawing.Point(0, 0);
            this.pnlMain.Name = "pnlMain";
            this.pnlMain.Size = new System.Drawing.Size(1008, 730);
            this.pnlMain.TabIndex = 595;
            // 
            // pnlRight
            // 
            this.pnlRight.Controls.Add(this.panel2);
            this.pnlRight.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlRight.Location = new System.Drawing.Point(0, 0);
            this.pnlRight.Name = "pnlRight";
            this.pnlRight.Size = new System.Drawing.Size(1008, 691);
            this.pnlRight.TabIndex = 597;
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.tabControl1);
            this.panel2.Controls.Add(this.txtNoichuyenden);
            this.panel2.Controls.Add(this.cmdGetBV);
            this.panel2.Controls.Add(this.cboDoituongKCB);
            this.panel2.Controls.Add(this.panel1);
            this.panel2.Controls.Add(this.vbLine2);
            this.panel2.Controls.Add(this.vbLine1);
            this.panel2.Controls.Add(this.label14);
            this.panel2.Controls.Add(this.txtSolankham);
            this.panel2.Controls.Add(this.lblDoituongKCB);
            this.panel2.Controls.Add(this.txtMaLankham);
            this.panel2.Controls.Add(this.txtMaBN);
            this.panel2.Controls.Add(this.label3);
            this.panel2.Controls.Add(this.chkChuyenVien);
            this.panel2.Controls.Add(this.label1);
            this.panel2.Controls.Add(this.dtCreateDate);
            this.panel2.Controls.Add(this.label2);
            this.panel2.Controls.Add(this.pnlBHYT);
            this.panel2.Controls.Add(this.dtpInputDate);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(0, 0);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(1008, 691);
            this.panel2.TabIndex = 600;
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage3);
            this.tabControl1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tabControl1.Location = new System.Drawing.Point(2, 258);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(1003, 427);
            this.tabControl1.TabIndex = 604;
            this.tabControl1.TabStop = false;
            // 
            // tabPage1
            // 
            this.tabPage1.BackColor = System.Drawing.SystemColors.Control;
            this.tabPage1.Controls.Add(this.txtGhiChu);
            this.tabPage1.Controls.Add(this.cmdLaysoBANoitru);
            this.tabPage1.Controls.Add(this.txtBedCode);
            this.tabPage1.Controls.Add(this.txtRoom_code);
            this.tabPage1.Controls.Add(this.uiGroupBox1);
            this.tabPage1.Controls.Add(this.cboGia);
            this.tabPage1.Controls.Add(this.txtGia);
            this.tabPage1.Controls.Add(this.label23);
            this.tabPage1.Controls.Add(this.label29);
            this.tabPage1.Controls.Add(this.label30);
            this.tabPage1.Controls.Add(this.txtPhut);
            this.tabPage1.Controls.Add(this.label27);
            this.tabPage1.Controls.Add(this.txtGio);
            this.tabPage1.Controls.Add(this.label28);
            this.tabPage1.Controls.Add(this.dtNgayChuyen);
            this.tabPage1.Controls.Add(this.txtKhoanoitru);
            this.tabPage1.Controls.Add(this.label4);
            this.tabPage1.Controls.Add(this.label5);
            this.tabPage1.Controls.Add(this.label19);
            this.tabPage1.Controls.Add(this.label26);
            this.tabPage1.Controls.Add(this.txtSoBenhAn);
            this.tabPage1.Controls.Add(this.vbLine3);
            this.tabPage1.Controls.Add(this.txtSoDT);
            this.tabPage1.Controls.Add(this.chkLaysokham);
            this.tabPage1.Controls.Add(this.txtSoKcb);
            this.tabPage1.Controls.Add(this.cmdThemmoiDiachinh);
            this.tabPage1.Controls.Add(this.txtXaphuong);
            this.tabPage1.Controls.Add(this.label16);
            this.tabPage1.Controls.Add(this.txtQuanhuyen);
            this.tabPage1.Controls.Add(this.label15);
            this.tabPage1.Controls.Add(this.txtTinhTp);
            this.tabPage1.Controls.Add(this.chkTpQH);
            this.tabPage1.Controls.Add(this.lblHoten);
            this.tabPage1.Controls.Add(this.label12);
            this.tabPage1.Controls.Add(this.txtTrieuChungBD);
            this.tabPage1.Controls.Add(this.label17);
            this.tabPage1.Controls.Add(this.txtCMT);
            this.tabPage1.Controls.Add(this.txtDantoc);
            this.tabPage1.Controls.Add(this.lblDiachiBN);
            this.tabPage1.Controls.Add(this.txtNgheNghiep);
            this.tabPage1.Controls.Add(this.cboPatientSex);
            this.tabPage1.Controls.Add(this.txtTEN_BN);
            this.tabPage1.Controls.Add(this.label11);
            this.tabPage1.Controls.Add(this.label8);
            this.tabPage1.Controls.Add(this.txtTuoi);
            this.tabPage1.Controls.Add(this.label6);
            this.tabPage1.Controls.Add(this.label9);
            this.tabPage1.Controls.Add(this.label21);
            this.tabPage1.Controls.Add(this.label46);
            this.tabPage1.Controls.Add(this.txtDiachi);
            this.tabPage1.Controls.Add(this.dtpBOD);
            this.tabPage1.Controls.Add(this.txtNamSinh);
            this.tabPage1.Location = new System.Drawing.Point(4, 24);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(995, 399);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "Thông tin hành chính của bệnh nhân(F1)";
            // 
            // txtGhiChu
            // 
            this.txtGhiChu.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtGhiChu.Location = new System.Drawing.Point(590, 183);
            this.txtGhiChu.Name = "txtGhiChu";
            this.txtGhiChu.Size = new System.Drawing.Size(386, 21);
            this.txtGhiChu.TabIndex = 28;
            // 
            // txtBedCode
            // 
            this.txtBedCode._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtBedCode._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtBedCode._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtBedCode.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtBedCode.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtBedCode.AutoCompleteList")));
            this.txtBedCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtBedCode.CaseSensitive = false;
            this.txtBedCode.CompareNoID = true;
            this.txtBedCode.DefaultCode = "-1";
            this.txtBedCode.DefaultID = "-1";
            this.txtBedCode.Drug_ID = null;
            this.txtBedCode.ExtraWidth = 0;
            this.txtBedCode.FillValueAfterSelect = false;
            this.txtBedCode.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtBedCode.Location = new System.Drawing.Point(590, 207);
            this.txtBedCode.MaxHeight = 289;
            this.txtBedCode.MinTypedCharacters = 2;
            this.txtBedCode.MyCode = "-1";
            this.txtBedCode.MyID = "-1";
            this.txtBedCode.MyText = "";
            this.txtBedCode.Name = "txtBedCode";
            this.txtBedCode.RaiseEvent = true;
            this.txtBedCode.RaiseEventEnter = true;
            this.txtBedCode.RaiseEventEnterWhenEmpty = true;
            this.txtBedCode.SelectedIndex = -1;
            this.txtBedCode.Size = new System.Drawing.Size(386, 21);
            this.txtBedCode.splitChar = '@';
            this.txtBedCode.splitCharIDAndCode = '#';
            this.txtBedCode.TabIndex = 29;
            this.txtBedCode.TakeCode = false;
            this.txtBedCode.txtMyCode = null;
            this.txtBedCode.txtMyCode_Edit = null;
            this.txtBedCode.txtMyID = null;
            this.txtBedCode.txtMyID_Edit = null;
            this.txtBedCode.txtMyName = null;
            this.txtBedCode.txtMyName_Edit = null;
            this.txtBedCode.txtNext = null;
            // 
            // txtRoom_code
            // 
            this.txtRoom_code._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtRoom_code._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtRoom_code._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtRoom_code.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtRoom_code.AutoCompleteList")));
            this.txtRoom_code.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtRoom_code.CaseSensitive = false;
            this.txtRoom_code.CompareNoID = true;
            this.txtRoom_code.DefaultCode = "-1";
            this.txtRoom_code.DefaultID = "-1";
            this.txtRoom_code.Drug_ID = null;
            this.txtRoom_code.ExtraWidth = 0;
            this.txtRoom_code.FillValueAfterSelect = false;
            this.txtRoom_code.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtRoom_code.Location = new System.Drawing.Point(107, 207);
            this.txtRoom_code.MaxHeight = 289;
            this.txtRoom_code.MinTypedCharacters = 2;
            this.txtRoom_code.MyCode = "-1";
            this.txtRoom_code.MyID = "-1";
            this.txtRoom_code.MyText = "";
            this.txtRoom_code.Name = "txtRoom_code";
            this.txtRoom_code.RaiseEvent = true;
            this.txtRoom_code.RaiseEventEnter = true;
            this.txtRoom_code.RaiseEventEnterWhenEmpty = true;
            this.txtRoom_code.SelectedIndex = -1;
            this.txtRoom_code.Size = new System.Drawing.Size(350, 21);
            this.txtRoom_code.splitChar = '@';
            this.txtRoom_code.splitCharIDAndCode = '#';
            this.txtRoom_code.TabIndex = 28;
            this.txtRoom_code.TakeCode = false;
            this.txtRoom_code.txtMyCode = null;
            this.txtRoom_code.txtMyCode_Edit = null;
            this.txtRoom_code.txtMyID = null;
            this.txtRoom_code.txtMyID_Edit = null;
            this.txtRoom_code.txtMyName = null;
            this.txtRoom_code.txtMyName_Edit = null;
            this.txtRoom_code.txtNext = null;
            // 
            // uiGroupBox1
            // 
            this.uiGroupBox1.Controls.Add(this.grdGiuong);
            this.uiGroupBox1.Controls.Add(this.grdBuong);
            this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.uiGroupBox1.Location = new System.Drawing.Point(3, 255);
            this.uiGroupBox1.Name = "uiGroupBox1";
            this.uiGroupBox1.Size = new System.Drawing.Size(989, 141);
            this.uiGroupBox1.TabIndex = 644;
            // 
            // grdGiuong
            // 
            this.grdGiuong.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grdGiuong.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.grdGiuong.AutomaticSort = false;
            this.grdGiuong.DefaultFilterRowComparison = Janus.Windows.GridEX.FilterConditionOperator.Contains;
            grdGiuong_DesignTimeLayout.LayoutString = resources.GetString("grdGiuong_DesignTimeLayout.LayoutString");
            this.grdGiuong.DesignTimeLayout = grdGiuong_DesignTimeLayout;
            this.grdGiuong.DynamicFiltering = true;
            this.grdGiuong.EnterKeyBehavior = Janus.Windows.GridEX.EnterKeyBehavior.None;
            this.grdGiuong.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdGiuong.FilterRowButtonStyle = Janus.Windows.GridEX.FilterRowButtonStyle.ConditionOperatorDropDown;
            this.grdGiuong.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdGiuong.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdGiuong.Font = new System.Drawing.Font("Arial", 9F);
            this.grdGiuong.GroupByBoxVisible = false;
            this.grdGiuong.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdGiuong.Location = new System.Drawing.Point(581, 11);
            this.grdGiuong.Name = "grdGiuong";
            this.grdGiuong.RowHeaderContent = Janus.Windows.GridEX.RowHeaderContent.RowIndex;
            this.grdGiuong.Size = new System.Drawing.Size(399, 124);
            this.grdGiuong.TabIndex = 30;
            this.grdGiuong.TabStop = false;
            this.grdGiuong.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // grdBuong
            // 
            this.grdBuong.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grdBuong.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.grdBuong.AutomaticSort = false;
            grdBuong_DesignTimeLayout.LayoutString = resources.GetString("grdBuong_DesignTimeLayout.LayoutString");
            this.grdBuong.DesignTimeLayout = grdBuong_DesignTimeLayout;
            this.grdBuong.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdBuong.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdBuong.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdBuong.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdBuong.GroupByBoxVisible = false;
            this.grdBuong.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdBuong.Location = new System.Drawing.Point(3, 11);
            this.grdBuong.Name = "grdBuong";
            this.grdBuong.RowHeaderContent = Janus.Windows.GridEX.RowHeaderContent.RowIndex;
            this.grdBuong.Size = new System.Drawing.Size(572, 124);
            this.grdBuong.TabIndex = 29;
            this.grdBuong.TabStop = false;
            this.grdBuong.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // cboGia
            // 
            this.cboGia.AllowDrop = true;
            this.cboGia.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            cboGia_DesignTimeLayout.LayoutString = resources.GetString("cboGia_DesignTimeLayout.LayoutString");
            this.cboGia.DesignTimeLayout = cboGia_DesignTimeLayout;
            this.cboGia.DisplayMember = "_name";
            this.cboGia.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboGia.HoverMode = Janus.Windows.GridEX.HoverMode.Highlight;
            this.cboGia.Location = new System.Drawing.Point(194, 232);
            this.cboGia.Name = "cboGia";
            this.cboGia.SelectedIndex = -1;
            this.cboGia.SelectedItem = null;
            this.cboGia.Size = new System.Drawing.Size(782, 21);
            this.cboGia.TabIndex = 31;
            this.cboGia.TabStop = false;
            this.cboGia.Text = "CHỌN GIÁ BUỒNG GIƯỜNG";
            this.cboGia.ValueMember = "ID";
            this.cboGia.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // txtGia
            // 
            this.txtGia._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtGia._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtGia._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtGia.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtGia.AutoCompleteList")));
            this.txtGia.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtGia.CaseSensitive = false;
            this.txtGia.CompareNoID = true;
            this.txtGia.DefaultCode = "-1";
            this.txtGia.DefaultID = "-1";
            this.txtGia.Drug_ID = null;
            this.txtGia.ExtraWidth = 0;
            this.txtGia.FillValueAfterSelect = false;
            this.txtGia.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtGia.Location = new System.Drawing.Point(107, 232);
            this.txtGia.MaxHeight = 289;
            this.txtGia.MinTypedCharacters = 2;
            this.txtGia.MyCode = "-1";
            this.txtGia.MyID = "-1";
            this.txtGia.MyText = "";
            this.txtGia.Name = "txtGia";
            this.txtGia.RaiseEvent = true;
            this.txtGia.RaiseEventEnter = false;
            this.txtGia.RaiseEventEnterWhenEmpty = false;
            this.txtGia.SelectedIndex = -1;
            this.txtGia.Size = new System.Drawing.Size(81, 21);
            this.txtGia.splitChar = '@';
            this.txtGia.splitCharIDAndCode = '#';
            this.txtGia.TabIndex = 30;
            this.txtGia.TakeCode = true;
            this.txtGia.txtMyCode = null;
            this.txtGia.txtMyCode_Edit = null;
            this.txtGia.txtMyID = null;
            this.txtGia.txtMyID_Edit = null;
            this.txtGia.txtMyName = null;
            this.txtGia.txtMyName_Edit = null;
            this.txtGia.txtNext = null;
            // 
            // label23
            // 
            this.label23.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label23.ForeColor = System.Drawing.Color.Black;
            this.label23.Location = new System.Drawing.Point(1, 232);
            this.label23.Name = "label23";
            this.label23.Size = new System.Drawing.Size(100, 20);
            this.label23.TabIndex = 643;
            this.label23.Text = "Chọn giá:";
            this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label29
            // 
            this.label29.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label29.Location = new System.Drawing.Point(490, 209);
            this.label29.Name = "label29";
            this.label29.Size = new System.Drawing.Size(98, 15);
            this.label29.TabIndex = 642;
            this.label29.Text = "Chọn giường";
            this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label30
            // 
            this.label30.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label30.Location = new System.Drawing.Point(1, 205);
            this.label30.Name = "label30";
            this.label30.Size = new System.Drawing.Size(100, 20);
            this.label30.TabIndex = 641;
            this.label30.Text = "Chọn buồng";
            this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtPhut
            // 
            this.txtPhut.FormatMask = Janus.Windows.GridEX.NumericEditFormatMask.General;
            this.txtPhut.Location = new System.Drawing.Point(413, 158);
            this.txtPhut.MaxLength = 2;
            this.txtPhut.Name = "txtPhut";
            this.txtPhut.NullBehavior = Janus.Windows.GridEX.NumericEditNullBehavior.AllowNull;
            this.txtPhut.Size = new System.Drawing.Size(43, 21);
            this.txtPhut.TabIndex = 25;
            this.txtPhut.Text = "0";
            this.txtPhut.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            this.txtPhut.Value = new decimal(new int[] {
            0,
            0,
            0,
            0});
            // 
            // label27
            // 
            this.label27.AutoSize = true;
            this.label27.ForeColor = System.Drawing.Color.Red;
            this.label27.Location = new System.Drawing.Point(381, 162);
            this.label27.Name = "label27";
            this.label27.Size = new System.Drawing.Size(32, 15);
            this.label27.TabIndex = 640;
            this.label27.Text = "Phút";
            // 
            // txtGio
            // 
            this.txtGio.FormatMask = Janus.Windows.GridEX.NumericEditFormatMask.General;
            this.txtGio.Location = new System.Drawing.Point(329, 158);
            this.txtGio.MaxLength = 2;
            this.txtGio.Name = "txtGio";
            this.txtGio.NullBehavior = Janus.Windows.GridEX.NumericEditNullBehavior.AllowNull;
            this.txtGio.Size = new System.Drawing.Size(46, 21);
            this.txtGio.TabIndex = 24;
            this.txtGio.Text = "0";
            this.txtGio.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            this.txtGio.Value = new decimal(new int[] {
            0,
            0,
            0,
            0});
            // 
            // label28
            // 
            this.label28.AutoSize = true;
            this.label28.ForeColor = System.Drawing.Color.Red;
            this.label28.Location = new System.Drawing.Point(302, 161);
            this.label28.Name = "label28";
            this.label28.Size = new System.Drawing.Size(27, 15);
            this.label28.TabIndex = 639;
            this.label28.Text = "Giờ";
            // 
            // dtNgayChuyen
            // 
            this.dtNgayChuyen.CustomFormat = "dd/MM/yyyy HH:mm:ss";
            this.dtNgayChuyen.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtNgayChuyen.DropDownCalendar.Name = "";
            this.dtNgayChuyen.Location = new System.Drawing.Point(107, 158);
            this.dtNgayChuyen.Name = "dtNgayChuyen";
            this.dtNgayChuyen.ShowUpDown = true;
            this.dtNgayChuyen.Size = new System.Drawing.Size(185, 21);
            this.dtNgayChuyen.TabIndex = 23;
            this.dtNgayChuyen.Value = new System.DateTime(2014, 3, 7, 0, 0, 0, 0);
            // 
            // txtKhoanoitru
            // 
            this.txtKhoanoitru._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtKhoanoitru._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtKhoanoitru._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtKhoanoitru.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtKhoanoitru.AutoCompleteList")));
            this.txtKhoanoitru.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtKhoanoitru.CaseSensitive = false;
            this.txtKhoanoitru.CompareNoID = true;
            this.txtKhoanoitru.DefaultCode = "-1";
            this.txtKhoanoitru.DefaultID = "-1";
            this.txtKhoanoitru.Drug_ID = null;
            this.txtKhoanoitru.ExtraWidth = 0;
            this.txtKhoanoitru.FillValueAfterSelect = false;
            this.txtKhoanoitru.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtKhoanoitru.Location = new System.Drawing.Point(107, 183);
            this.txtKhoanoitru.MaxHeight = 289;
            this.txtKhoanoitru.MinTypedCharacters = 2;
            this.txtKhoanoitru.MyCode = "-1";
            this.txtKhoanoitru.MyID = "-1";
            this.txtKhoanoitru.MyText = "";
            this.txtKhoanoitru.Name = "txtKhoanoitru";
            this.txtKhoanoitru.RaiseEvent = true;
            this.txtKhoanoitru.RaiseEventEnter = true;
            this.txtKhoanoitru.RaiseEventEnterWhenEmpty = true;
            this.txtKhoanoitru.SelectedIndex = -1;
            this.txtKhoanoitru.Size = new System.Drawing.Size(350, 21);
            this.txtKhoanoitru.splitChar = '@';
            this.txtKhoanoitru.splitCharIDAndCode = '#';
            this.txtKhoanoitru.TabIndex = 27;
            this.txtKhoanoitru.TakeCode = false;
            this.txtKhoanoitru.txtMyCode = null;
            this.txtKhoanoitru.txtMyCode_Edit = null;
            this.txtKhoanoitru.txtMyID = null;
            this.txtKhoanoitru.txtMyID_Edit = null;
            this.txtKhoanoitru.txtMyName = null;
            this.txtKhoanoitru.txtMyName_Edit = null;
            this.txtKhoanoitru.txtNext = null;
            // 
            // label4
            // 
            this.label4.Location = new System.Drawing.Point(490, 188);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(98, 15);
            this.label4.TabIndex = 636;
            this.label4.Text = "Ghi chú thêm";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label5
            // 
            this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label5.ForeColor = System.Drawing.Color.Red;
            this.label5.Location = new System.Drawing.Point(490, 165);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(98, 13);
            this.label5.TabIndex = 635;
            this.label5.Text = "Số bệnh án";
            this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label19
            // 
            this.label19.ForeColor = System.Drawing.Color.Red;
            this.label19.Location = new System.Drawing.Point(1, 159);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(100, 20);
            this.label19.TabIndex = 634;
            this.label19.Text = "Ngày nhập viện";
            this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label26
            // 
            this.label26.ForeColor = System.Drawing.Color.Red;
            this.label26.Location = new System.Drawing.Point(1, 187);
            this.label26.Name = "label26";
            this.label26.Size = new System.Drawing.Size(100, 15);
            this.label26.TabIndex = 631;
            this.label26.Text = "Khoa nội trú";
            this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtSoBenhAn
            // 
            this.txtSoBenhAn.Location = new System.Drawing.Point(590, 160);
            this.txtSoBenhAn.Name = "txtSoBenhAn";
            this.txtSoBenhAn.Size = new System.Drawing.Size(138, 21);
            this.txtSoBenhAn.TabIndex = 26;
            this.txtSoBenhAn.TabStop = false;
            // 
            // vbLine3
            // 
            this.vbLine3._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.vbLine3.BackColor = System.Drawing.Color.Transparent;
            this.vbLine3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine3.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine3.Location = new System.Drawing.Point(4, 135);
            this.vbLine3.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine3.Name = "vbLine3";
            this.vbLine3.Size = new System.Drawing.Size(996, 22);
            this.vbLine3.TabIndex = 630;
            this.vbLine3.TabStop = false;
            this.vbLine3.YourText = "Thông tin nhập viện nội trú";
            // 
            // txtSoDT
            // 
            this.txtSoDT.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtSoDT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtSoDT.Location = new System.Drawing.Point(592, 88);
            this.txtSoDT.Name = "txtSoDT";
            this.txtSoDT.Size = new System.Drawing.Size(384, 21);
            this.txtSoDT.TabIndex = 22;
            // 
            // chkLaysokham
            // 
            this.chkLaysokham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkLaysokham.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.chkLaysokham.Location = new System.Drawing.Point(6, 109);
            this.chkLaysokham.Name = "chkLaysokham";
            this.chkLaysokham.Size = new System.Drawing.Size(103, 23);
            this.chkLaysokham.TabIndex = 22;
            this.chkLaysokham.Text = "Lấy sổ khám?";
            this.chkLaysokham.ToolTipText = "Dành cho bệnh nhân cấp cứu";
            // 
            // txtSoKcb
            // 
            this.txtSoKcb._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtSoKcb._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSoKcb.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtSoKcb.AutoCompleteList")));
            this.txtSoKcb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtSoKcb.CaseSensitive = false;
            this.txtSoKcb.CompareNoID = true;
            this.txtSoKcb.DefaultCode = "-1";
            this.txtSoKcb.DefaultID = "-1";
            this.txtSoKcb.Drug_ID = null;
            this.txtSoKcb.Enabled = false;
            this.txtSoKcb.ExtraWidth = 0;
            this.txtSoKcb.FillValueAfterSelect = false;
            this.txtSoKcb.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSoKcb.LOAI_DANHMUC = "SO_KCB";
            this.txtSoKcb.Location = new System.Drawing.Point(111, 111);
            this.txtSoKcb.MaxHeight = -1;
            this.txtSoKcb.MinTypedCharacters = 2;
            this.txtSoKcb.MyCode = "-1";
            this.txtSoKcb.MyID = "-1";
            this.txtSoKcb.Name = "txtSoKcb";
            this.txtSoKcb.RaiseEvent = false;
            this.txtSoKcb.RaiseEventEnter = false;
            this.txtSoKcb.RaiseEventEnterWhenEmpty = false;
            this.txtSoKcb.SelectedIndex = -1;
            this.txtSoKcb.Size = new System.Drawing.Size(348, 21);
            this.txtSoKcb.splitChar = '@';
            this.txtSoKcb.splitCharIDAndCode = '#';
            this.txtSoKcb.TabIndex = 22;
            this.txtSoKcb.TakeCode = false;
            this.txtSoKcb.txtMyCode = null;
            this.txtSoKcb.txtMyCode_Edit = null;
            this.txtSoKcb.txtMyID = null;
            this.txtSoKcb.txtMyID_Edit = null;
            this.txtSoKcb.txtMyName = null;
            this.txtSoKcb.txtMyName_Edit = null;
            this.txtSoKcb.txtNext = null;
            // 
            // txtXaphuong
            // 
            this.txtXaphuong._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtXaphuong._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtXaphuong._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtXaphuong.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtXaphuong.AutoCompleteList")));
            this.txtXaphuong.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtXaphuong.CaseSensitive = false;
            this.txtXaphuong.CompareNoID = true;
            this.txtXaphuong.DefaultCode = "-1";
            this.txtXaphuong.DefaultID = "-1";
            this.txtXaphuong.Drug_ID = null;
            this.txtXaphuong.ExtraWidth = 200;
            this.txtXaphuong.FillValueAfterSelect = false;
            this.txtXaphuong.Location = new System.Drawing.Point(870, 110);
            this.txtXaphuong.MaxHeight = 289;
            this.txtXaphuong.MinTypedCharacters = 2;
            this.txtXaphuong.MyCode = "-1";
            this.txtXaphuong.MyID = "-1";
            this.txtXaphuong.MyText = "";
            this.txtXaphuong.Name = "txtXaphuong";
            this.txtXaphuong.RaiseEvent = true;
            this.txtXaphuong.RaiseEventEnter = false;
            this.txtXaphuong.RaiseEventEnterWhenEmpty = false;
            this.txtXaphuong.SelectedIndex = -1;
            this.txtXaphuong.Size = new System.Drawing.Size(18, 21);
            this.txtXaphuong.splitChar = '@';
            this.txtXaphuong.splitCharIDAndCode = '#';
            this.txtXaphuong.TabIndex = 609;
            this.txtXaphuong.TabStop = false;
            this.txtXaphuong.TakeCode = false;
            this.txtXaphuong.txtMyCode = null;
            this.txtXaphuong.txtMyCode_Edit = null;
            this.txtXaphuong.txtMyID = null;
            this.txtXaphuong.txtMyID_Edit = null;
            this.txtXaphuong.txtMyName = null;
            this.txtXaphuong.txtMyName_Edit = null;
            this.txtXaphuong.txtNext = null;
            this.txtXaphuong.Visible = false;
            // 
            // label16
            // 
            this.label16.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label16.Location = new System.Drawing.Point(762, 111);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(96, 21);
            this.label16.TabIndex = 608;
            this.label16.Text = "Xã/phường:";
            this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.label16.Visible = false;
            // 
            // txtQuanhuyen
            // 
            this.txtQuanhuyen._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtQuanhuyen._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtQuanhuyen._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtQuanhuyen.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtQuanhuyen.AutoCompleteList")));
            this.txtQuanhuyen.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtQuanhuyen.CaseSensitive = false;
            this.txtQuanhuyen.CompareNoID = true;
            this.txtQuanhuyen.DefaultCode = "-1";
            this.txtQuanhuyen.DefaultID = "-1";
            this.txtQuanhuyen.Drug_ID = null;
            this.txtQuanhuyen.ExtraWidth = 200;
            this.txtQuanhuyen.FillValueAfterSelect = false;
            this.txtQuanhuyen.Location = new System.Drawing.Point(742, 110);
            this.txtQuanhuyen.MaxHeight = 289;
            this.txtQuanhuyen.MinTypedCharacters = 2;
            this.txtQuanhuyen.MyCode = "-1";
            this.txtQuanhuyen.MyID = "-1";
            this.txtQuanhuyen.MyText = "";
            this.txtQuanhuyen.Name = "txtQuanhuyen";
            this.txtQuanhuyen.RaiseEvent = true;
            this.txtQuanhuyen.RaiseEventEnter = false;
            this.txtQuanhuyen.RaiseEventEnterWhenEmpty = false;
            this.txtQuanhuyen.SelectedIndex = -1;
            this.txtQuanhuyen.Size = new System.Drawing.Size(14, 21);
            this.txtQuanhuyen.splitChar = '@';
            this.txtQuanhuyen.splitCharIDAndCode = '#';
            this.txtQuanhuyen.TabIndex = 607;
            this.txtQuanhuyen.TabStop = false;
            this.txtQuanhuyen.TakeCode = false;
            this.txtQuanhuyen.txtMyCode = null;
            this.txtQuanhuyen.txtMyCode_Edit = null;
            this.txtQuanhuyen.txtMyID = null;
            this.txtQuanhuyen.txtMyID_Edit = null;
            this.txtQuanhuyen.txtMyName = null;
            this.txtQuanhuyen.txtMyName_Edit = null;
            this.txtQuanhuyen.txtNext = null;
            this.txtQuanhuyen.Visible = false;
            // 
            // label15
            // 
            this.label15.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label15.Location = new System.Drawing.Point(660, 110);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(82, 21);
            this.label15.TabIndex = 606;
            this.label15.Text = "Quận/huyện:";
            this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.label15.Visible = false;
            // 
            // txtTinhTp
            // 
            this.txtTinhTp._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtTinhTp._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTinhTp._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtTinhTp.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtTinhTp.AutoCompleteList")));
            this.txtTinhTp.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtTinhTp.CaseSensitive = false;
            this.txtTinhTp.CompareNoID = true;
            this.txtTinhTp.DefaultCode = "-1";
            this.txtTinhTp.DefaultID = "-1";
            this.txtTinhTp.Drug_ID = null;
            this.txtTinhTp.ExtraWidth = 200;
            this.txtTinhTp.FillValueAfterSelect = false;
            this.txtTinhTp.Location = new System.Drawing.Point(636, 111);
            this.txtTinhTp.MaxHeight = 289;
            this.txtTinhTp.MinTypedCharacters = 2;
            this.txtTinhTp.MyCode = "-1";
            this.txtTinhTp.MyID = "-1";
            this.txtTinhTp.MyText = "";
            this.txtTinhTp.Name = "txtTinhTp";
            this.txtTinhTp.RaiseEvent = true;
            this.txtTinhTp.RaiseEventEnter = false;
            this.txtTinhTp.RaiseEventEnterWhenEmpty = false;
            this.txtTinhTp.SelectedIndex = -1;
            this.txtTinhTp.Size = new System.Drawing.Size(18, 21);
            this.txtTinhTp.splitChar = '@';
            this.txtTinhTp.splitCharIDAndCode = '#';
            this.txtTinhTp.TabIndex = 605;
            this.txtTinhTp.TabStop = false;
            this.txtTinhTp.TakeCode = false;
            this.txtTinhTp.txtMyCode = null;
            this.txtTinhTp.txtMyCode_Edit = null;
            this.txtTinhTp.txtMyID = null;
            this.txtTinhTp.txtMyID_Edit = null;
            this.txtTinhTp.txtMyName = null;
            this.txtTinhTp.txtMyName_Edit = null;
            this.txtTinhTp.txtNext = null;
            this.txtTinhTp.Visible = false;
            // 
            // chkTpQH
            // 
            this.chkTpQH.AutoSize = true;
            this.chkTpQH.Location = new System.Drawing.Point(551, 112);
            this.chkTpQH.Name = "chkTpQH";
            this.chkTpQH.Size = new System.Drawing.Size(67, 19);
            this.chkTpQH.TabIndex = 604;
            this.chkTpQH.Text = "Tỉnh/Tp";
            this.chkTpQH.UseVisualStyleBackColor = true;
            this.chkTpQH.Visible = false;
            // 
            // txtNgheNghiep
            // 
            this.txtNgheNghiep._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtNgheNghiep._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNgheNghiep.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtNgheNghiep.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtNgheNghiep.AutoCompleteList")));
            this.txtNgheNghiep.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNgheNghiep.CaseSensitive = false;
            this.txtNgheNghiep.CompareNoID = true;
            this.txtNgheNghiep.DefaultCode = "-1";
            this.txtNgheNghiep.DefaultID = "-1";
            this.txtNgheNghiep.Drug_ID = null;
            this.txtNgheNghiep.ExtraWidth = 0;
            this.txtNgheNghiep.FillValueAfterSelect = false;
            this.txtNgheNghiep.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNgheNghiep.LOAI_DANHMUC = "NGHE_NGHIEP";
            this.txtNgheNghiep.Location = new System.Drawing.Point(592, 37);
            this.txtNgheNghiep.MaxHeight = -1;
            this.txtNgheNghiep.MinTypedCharacters = 2;
            this.txtNgheNghiep.MyCode = "-1";
            this.txtNgheNghiep.MyID = "-1";
            this.txtNgheNghiep.Name = "txtNgheNghiep";
            this.txtNgheNghiep.RaiseEvent = false;
            this.txtNgheNghiep.RaiseEventEnter = false;
            this.txtNgheNghiep.RaiseEventEnterWhenEmpty = false;
            this.txtNgheNghiep.SelectedIndex = -1;
            this.txtNgheNghiep.Size = new System.Drawing.Size(384, 21);
            this.txtNgheNghiep.splitChar = '@';
            this.txtNgheNghiep.splitCharIDAndCode = '#';
            this.txtNgheNghiep.TabIndex = 18;
            this.txtNgheNghiep.TakeCode = false;
            this.txtNgheNghiep.txtMyCode = null;
            this.txtNgheNghiep.txtMyCode_Edit = null;
            this.txtNgheNghiep.txtMyID = null;
            this.txtNgheNghiep.txtMyID_Edit = null;
            this.txtNgheNghiep.txtMyName = null;
            this.txtNgheNghiep.txtMyName_Edit = null;
            this.txtNgheNghiep.txtNext = null;
            // 
            // txtDiachi
            // 
            this.txtDiachi._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtDiachi._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDiachi.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtDiachi.AutoCompleteList")));
            this.txtDiachi.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtDiachi.CaseSensitive = false;
            this.txtDiachi.Drug_ID = null;
            this.txtDiachi.ExtraWidth = 0;
            this.txtDiachi.FillValueAfterSelect = false;
            this.txtDiachi.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDiachi.Location = new System.Drawing.Point(111, 63);
            this.txtDiachi.MaxHeight = 289;
            this.txtDiachi.MinTypedCharacters = 2;
            this.txtDiachi.Name = "txtDiachi";
            this.txtDiachi.RaiseEvent = false;
            this.txtDiachi.SelectedIndex = -1;
            this.txtDiachi.Size = new System.Drawing.Size(348, 21);
            this.txtDiachi.splitChar = '\0';
            this.txtDiachi.splitCharIDAndCode = '\0';
            this.txtDiachi.TabIndex = 19;
            this.txtDiachi.txtMyCode = null;
            this.txtDiachi.txtMyCode_Edit = null;
            this.txtDiachi.txtMyID = null;
            this.txtDiachi.txtMyID_Edit = null;
            this.txtDiachi.txtMyName = null;
            this.txtDiachi.txtMyName_Edit = null;
            this.txtDiachi.txtNext = null;
            // 
            // dtpBOD
            // 
            this.dtpBOD.CustomFormat = "dd/MM/yyyy";
            this.dtpBOD.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtpBOD.DropDownCalendar.Name = "";
            this.dtpBOD.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtpBOD.Location = new System.Drawing.Point(592, 10);
            this.dtpBOD.MinDate = new System.DateTime(1950, 2, 1, 0, 0, 0, 0);
            this.dtpBOD.Name = "dtpBOD";
            this.dtpBOD.ShowUpDown = true;
            this.dtpBOD.Size = new System.Drawing.Size(112, 21);
            this.dtpBOD.TabIndex = 14;
            this.dtpBOD.Value = new System.DateTime(2013, 9, 23, 0, 0, 0, 0);
            this.dtpBOD.Visible = false;
            // 
            // tabPage3
            // 
            this.tabPage3.BackColor = System.Drawing.SystemColors.Control;
            this.tabPage3.Controls.Add(this.ucTamung1);
            this.tabPage3.Location = new System.Drawing.Point(4, 24);
            this.tabPage3.Name = "tabPage3";
            this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage3.Size = new System.Drawing.Size(995, 399);
            this.tabPage3.TabIndex = 2;
            this.tabPage3.Text = "Tạm ứng(F2)";
            // 
            // ucTamung1
            // 
            this.ucTamung1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ucTamung1.Location = new System.Drawing.Point(3, 3);
            this.ucTamung1.Name = "ucTamung1";
            this.ucTamung1.Size = new System.Drawing.Size(989, 393);
            this.ucTamung1.TabIndex = 0;
            // 
            // txtNoichuyenden
            // 
            this.txtNoichuyenden._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtNoichuyenden._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNoichuyenden._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtNoichuyenden.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtNoichuyenden.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtNoichuyenden.AutoCompleteList")));
            this.txtNoichuyenden.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNoichuyenden.CaseSensitive = false;
            this.txtNoichuyenden.CompareNoID = true;
            this.txtNoichuyenden.DefaultCode = "-1";
            this.txtNoichuyenden.DefaultID = "-1";
            this.txtNoichuyenden.Drug_ID = null;
            this.txtNoichuyenden.Enabled = false;
            this.txtNoichuyenden.ExtraWidth = 0;
            this.txtNoichuyenden.FillValueAfterSelect = false;
            this.txtNoichuyenden.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNoichuyenden.Location = new System.Drawing.Point(598, 229);
            this.txtNoichuyenden.MaxHeight = 289;
            this.txtNoichuyenden.MinTypedCharacters = 2;
            this.txtNoichuyenden.MyCode = "-1";
            this.txtNoichuyenden.MyID = "-1";
            this.txtNoichuyenden.MyText = "";
            this.txtNoichuyenden.Name = "txtNoichuyenden";
            this.txtNoichuyenden.RaiseEvent = true;
            this.txtNoichuyenden.RaiseEventEnter = true;
            this.txtNoichuyenden.RaiseEventEnterWhenEmpty = true;
            this.txtNoichuyenden.SelectedIndex = -1;
            this.txtNoichuyenden.Size = new System.Drawing.Size(357, 21);
            this.txtNoichuyenden.splitChar = '@';
            this.txtNoichuyenden.splitCharIDAndCode = '#';
            this.txtNoichuyenden.TabIndex = 12;
            this.txtNoichuyenden.TakeCode = false;
            this.txtNoichuyenden.txtMyCode = null;
            this.txtNoichuyenden.txtMyCode_Edit = null;
            this.txtNoichuyenden.txtMyID = null;
            this.txtNoichuyenden.txtMyID_Edit = null;
            this.txtNoichuyenden.txtMyName = null;
            this.txtNoichuyenden.txtMyName_Edit = null;
            this.txtNoichuyenden.txtNext = null;
            // 
            // cboDoituongKCB
            // 
            this.cboDoituongKCB.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboDoituongKCB.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, 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.cboDoituongKCB.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem4,
            uiComboBoxItem5,
            uiComboBoxItem6});
            this.cboDoituongKCB.Location = new System.Drawing.Point(792, 68);
            this.cboDoituongKCB.Name = "cboDoituongKCB";
            this.cboDoituongKCB.Size = new System.Drawing.Size(200, 21);
            this.cboDoituongKCB.TabIndex = 1;
            this.cboDoituongKCB.TabStop = false;
            this.cboDoituongKCB.Text = "Đối tượng KCB";
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.pnlTieuDe);
            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(1008, 44);
            this.panel1.TabIndex = 599;
            // 
            // pnlTieuDe
            // 
            this.pnlTieuDe.Controls.Add(this.label18);
            this.pnlTieuDe.Controls.Add(this.panel4);
            this.pnlTieuDe.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlTieuDe.Location = new System.Drawing.Point(0, 0);
            this.pnlTieuDe.Name = "pnlTieuDe";
            this.pnlTieuDe.Size = new System.Drawing.Size(1008, 44);
            this.pnlTieuDe.TabIndex = 600;
            // 
            // label18
            // 
            this.label18.Dock = System.Windows.Forms.DockStyle.Fill;
            this.label18.Font = new System.Drawing.Font("Arial", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label18.Location = new System.Drawing.Point(73, 0);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(935, 44);
            this.label18.TabIndex = 386;
            this.label18.Text = "ĐĂNG KÝ BỆNH NHÂN CẤP CỨU";
            this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // panel4
            // 
            this.panel4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel4.BackgroundImage")));
            this.panel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
            this.panel4.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel4.Location = new System.Drawing.Point(0, 0);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(73, 44);
            this.panel4.TabIndex = 0;
            // 
            // vbLine2
            // 
            this.vbLine2._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.vbLine2.BackColor = System.Drawing.Color.Transparent;
            this.vbLine2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine2.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine2.Location = new System.Drawing.Point(3, 97);
            this.vbLine2.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine2.Name = "vbLine2";
            this.vbLine2.Size = new System.Drawing.Size(1011, 22);
            this.vbLine2.TabIndex = 597;
            this.vbLine2.TabStop = false;
            this.vbLine2.YourText = "Thông tin dành cho đối tượng khám BHYT";
            // 
            // vbLine1
            // 
            this.vbLine1._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.vbLine1.BackColor = System.Drawing.Color.Transparent;
            this.vbLine1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine1.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine1.Location = new System.Drawing.Point(7, 44);
            this.vbLine1.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine1.Name = "vbLine1";
            this.vbLine1.Size = new System.Drawing.Size(1006, 22);
            this.vbLine1.TabIndex = 596;
            this.vbLine1.TabStop = false;
            this.vbLine1.YourText = "Thông tin đăng ký KCB";
            // 
            // lblDoituongKCB
            // 
            this.lblDoituongKCB.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblDoituongKCB.ForeColor = System.Drawing.Color.Red;
            this.lblDoituongKCB.Location = new System.Drawing.Point(718, 68);
            this.lblDoituongKCB.Name = "lblDoituongKCB";
            this.lblDoituongKCB.Size = new System.Drawing.Size(72, 21);
            this.lblDoituongKCB.TabIndex = 402;
            this.lblDoituongKCB.Text = "Đối tượng:";
            this.lblDoituongKCB.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtpInputDate
            // 
            this.dtpInputDate.CustomFormat = "dd/MM/yyyy";
            this.dtpInputDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtpInputDate.DropDownCalendar.Name = "";
            this.dtpInputDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtpInputDate.Location = new System.Drawing.Point(600, 68);
            this.dtpInputDate.Name = "dtpInputDate";
            this.dtpInputDate.ShowUpDown = true;
            this.dtpInputDate.Size = new System.Drawing.Size(112, 21);
            this.dtpInputDate.TabIndex = 1;
            this.dtpInputDate.TabStop = false;
            this.dtpInputDate.Value = new System.DateTime(2013, 9, 23, 0, 0, 0, 0);
            this.dtpInputDate.Visible = false;
            // 
            // pnlBottom
            // 
            this.pnlBottom.Controls.Add(this.lblMsg);
            this.pnlBottom.Controls.Add(this.chkTudongthemmoi);
            this.pnlBottom.Controls.Add(this.cmdThemMoiBN);
            this.pnlBottom.Controls.Add(this.cmdSave);
            this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.pnlBottom.Location = new System.Drawing.Point(0, 691);
            this.pnlBottom.Name = "pnlBottom";
            this.pnlBottom.Size = new System.Drawing.Size(1008, 39);
            this.pnlBottom.TabIndex = 596;
            // 
            // lblMsg
            // 
            this.lblMsg.Dock = System.Windows.Forms.DockStyle.Right;
            this.lblMsg.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblMsg.Location = new System.Drawing.Point(643, 0);
            this.lblMsg.Name = "lblMsg";
            this.lblMsg.Size = new System.Drawing.Size(365, 39);
            this.lblMsg.TabIndex = 639;
            this.lblMsg.Text = "Msg";
            this.lblMsg.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cmdThemMoiBN
            // 
            this.cmdThemMoiBN.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdThemMoiBN.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemMoiBN.Image")));
            this.cmdThemMoiBN.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdThemMoiBN.Location = new System.Drawing.Point(349, 3);
            this.cmdThemMoiBN.Name = "cmdThemMoiBN";
            this.cmdThemMoiBN.Size = new System.Drawing.Size(136, 34);
            this.cmdThemMoiBN.TabIndex = 32;
            this.cmdThemMoiBN.Text = "&Thêm mới";
            this.cmdThemMoiBN.ToolTipText = "Nhấn vào đây để thêm mới Bệnh nhân";
            // 
            // cmdSave
            // 
            this.cmdSave.Font = new System.Drawing.Font("Arial", 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(488, 3);
            this.cmdSave.Name = "cmdSave";
            this.cmdSave.Size = new System.Drawing.Size(145, 34);
            this.cmdSave.TabIndex = 31;
            this.cmdSave.Text = "Ghi (Ctrl+S)";
            this.cmdSave.ToolTipText = "Nhấn vào đây để lưu thông tin bệnh nhân";
            // 
            // errorProvider1
            // 
            this.errorProvider1.ContainerControl = this;
            // 
            // frm_Taobenhnhancapcuu
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
            this.ClientSize = new System.Drawing.Size(1008, 730);
            this.Controls.Add(this.pnlMain);
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frm_Taobenhnhancapcuu";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Đăng ký Bệnh nhân cấp cứu";
            this.pnlBHYT.ResumeLayout(false);
            this.pnlBHYT.PerformLayout();
            this.pnlMain.ResumeLayout(false);
            this.pnlRight.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.tabPage1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
            this.uiGroupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdGiuong)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdBuong)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cboGia)).EndInit();
            this.tabPage3.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.pnlTieuDe.ResumeLayout(false);
            this.pnlBottom.ResumeLayout(false);
            this.pnlBottom.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
            this.ResumeLayout(false);

        }
Example #11
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_LogError));
            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.GridEX.GridEXLayout grdLogError_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            this.toolStrip = new System.Windows.Forms.ToolStrip();
            this.cmdXoa = new System.Windows.Forms.ToolStripButton();
            this.cmdThoat = new System.Windows.Forms.ToolStripButton();
            this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
            this.dtToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.dtFromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.chkByDate = new Janus.Windows.EditControls.UICheckBox();
            this.label1 = new System.Windows.Forms.Label();
            this.cboKieu = new Janus.Windows.EditControls.UIComboBox();
            this.cmdSearch = new Janus.Windows.EditControls.UIButton();
            this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
            this.grdLogError = new Janus.Windows.GridEX.GridEX();
            this.toolStrip.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
            this.uiGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
            this.uiGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdLogError)).BeginInit();
            this.SuspendLayout();
            // 
            // toolStrip
            // 
            this.toolStrip.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.cmdXoa,
            this.cmdThoat});
            this.toolStrip.Location = new System.Drawing.Point(0, 0);
            this.toolStrip.Name = "toolStrip";
            this.toolStrip.Size = new System.Drawing.Size(697, 31);
            this.toolStrip.TabIndex = 10;
            this.toolStrip.Text = "toolStrip1";
            // 
            // cmdXoa
            // 
            this.cmdXoa.Font = new System.Drawing.Font("Tahoma", 9F);
            this.cmdXoa.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoa.Image")));
            this.cmdXoa.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.cmdXoa.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdXoa.Name = "cmdXoa";
            this.cmdXoa.Size = new System.Drawing.Size(114, 28);
            this.cmdXoa.Text = "&Xóa thông tin ";
            this.cmdXoa.Click += new System.EventHandler(this.cmdXoa_Click);
            // 
            // cmdThoat
            // 
            this.cmdThoat.Image = ((System.Drawing.Image)(resources.GetObject("cmdThoat.Image")));
            this.cmdThoat.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.cmdThoat.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdThoat.Name = "cmdThoat";
            this.cmdThoat.Size = new System.Drawing.Size(87, 28);
            this.cmdThoat.Text = "&Thoát(Esc)";
            this.cmdThoat.Click += new System.EventHandler(this.cmdThoat_Click);
            // 
            // uiGroupBox1
            // 
            this.uiGroupBox1.Controls.Add(this.dtToDate);
            this.uiGroupBox1.Controls.Add(this.dtFromDate);
            this.uiGroupBox1.Controls.Add(this.chkByDate);
            this.uiGroupBox1.Controls.Add(this.label1);
            this.uiGroupBox1.Controls.Add(this.cboKieu);
            this.uiGroupBox1.Controls.Add(this.cmdSearch);
            this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
            this.uiGroupBox1.Location = new System.Drawing.Point(0, 31);
            this.uiGroupBox1.Name = "uiGroupBox1";
            this.uiGroupBox1.Size = new System.Drawing.Size(697, 71);
            this.uiGroupBox1.TabIndex = 11;
            this.uiGroupBox1.Text = "&Thông tin tìm kiếm";
            // 
            // dtToDate
            // 
            this.dtToDate.CustomFormat = "dd/MM/yyyy";
            this.dtToDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtToDate.DropDownCalendar.Name = "";
            this.dtToDate.DropDownCalendar.Visible = false;
            this.dtToDate.Location = new System.Drawing.Point(271, 38);
            this.dtToDate.Name = "dtToDate";
            this.dtToDate.ShowUpDown = true;
            this.dtToDate.Size = new System.Drawing.Size(138, 20);
            this.dtToDate.TabIndex = 43;
            this.dtToDate.Value = new System.DateTime(2012, 8, 24, 0, 0, 0, 0);
            // 
            // dtFromDate
            // 
            this.dtFromDate.CustomFormat = "dd/MM/yyyy";
            this.dtFromDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtFromDate.DropDownCalendar.Name = "";
            this.dtFromDate.DropDownCalendar.Visible = false;
            this.dtFromDate.Location = new System.Drawing.Point(127, 38);
            this.dtFromDate.Name = "dtFromDate";
            this.dtFromDate.ShowUpDown = true;
            this.dtFromDate.Size = new System.Drawing.Size(138, 20);
            this.dtFromDate.TabIndex = 42;
            this.dtFromDate.Value = new System.DateTime(2012, 8, 24, 0, 0, 0, 0);
            // 
            // chkByDate
            // 
            this.chkByDate.Checked = true;
            this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkByDate.Image = ((System.Drawing.Image)(resources.GetObject("chkByDate.Image")));
            this.chkByDate.Location = new System.Drawing.Point(15, 40);
            this.chkByDate.Name = "chkByDate";
            this.chkByDate.Size = new System.Drawing.Size(88, 23);
            this.chkByDate.TabIndex = 41;
            this.chkByDate.Text = "&Từ ngày";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(12, 21);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(28, 13);
            this.label1.TabIndex = 2;
            this.label1.Text = "Kiểu";
            // 
            // cboKieu
            // 
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "Tất Cả";
            uiComboBoxItem1.Value = "-1";
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "ERROR";
            uiComboBoxItem2.Value = "ERROR";
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "INFO";
            uiComboBoxItem3.Value = "INFO";
            this.cboKieu.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3});
            this.cboKieu.Location = new System.Drawing.Point(127, 14);
            this.cboKieu.Name = "cboKieu";
            this.cboKieu.Size = new System.Drawing.Size(219, 20);
            this.cboKieu.TabIndex = 1;
            this.cboKieu.Text = "Kiểu";
            // 
            // cmdSearch
            // 
            this.cmdSearch.Location = new System.Drawing.Point(575, 19);
            this.cmdSearch.Name = "cmdSearch";
            this.cmdSearch.Size = new System.Drawing.Size(110, 39);
            this.cmdSearch.TabIndex = 0;
            this.cmdSearch.Text = "&Tìm kiếm(F3)";
            this.cmdSearch.Click += new System.EventHandler(this.cmdSearch_Click);
            // 
            // uiGroupBox2
            // 
            this.uiGroupBox2.Controls.Add(this.grdLogError);
            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.Image = ((System.Drawing.Image)(resources.GetObject("uiGroupBox2.Image")));
            this.uiGroupBox2.Location = new System.Drawing.Point(0, 102);
            this.uiGroupBox2.Name = "uiGroupBox2";
            this.uiGroupBox2.Size = new System.Drawing.Size(697, 440);
            this.uiGroupBox2.TabIndex = 12;
            this.uiGroupBox2.Text = "&Thông tin loại dịch vụ";
            // 
            // grdLogError
            // 
            this.grdLogError.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grdLogError.AlternatingColors = true;
            this.grdLogError.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><FilterRowInfoText>Lọc" +
                " thông tin log</FilterRowInfoText></LocalizableData>";
            this.grdLogError.ColumnAutoResize = true;
            this.grdLogError.DefaultFilterRowComparison = Janus.Windows.GridEX.FilterConditionOperator.Contains;
            grdLogError_DesignTimeLayout.LayoutString = resources.GetString("grdLogError_DesignTimeLayout.LayoutString");
            this.grdLogError.DesignTimeLayout = grdLogError_DesignTimeLayout;
            this.grdLogError.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdLogError.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdLogError.FilterRowButtonStyle = Janus.Windows.GridEX.FilterRowButtonStyle.ConditionOperatorDropDown;
            this.grdLogError.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            this.grdLogError.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdLogError.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdLogError.GroupByBoxVisible = false;
            this.grdLogError.GroupRowFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
            this.grdLogError.GroupRowFormatStyle.ForeColor = System.Drawing.Color.Red;
            this.grdLogError.GroupRowVisualStyle = Janus.Windows.GridEX.GroupRowVisualStyle.Outlook2003;
            this.grdLogError.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdLogError.Location = new System.Drawing.Point(3, 18);
            this.grdLogError.Name = "grdLogError";
            this.grdLogError.RecordNavigator = true;
            this.grdLogError.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdLogError.Size = new System.Drawing.Size(691, 419);
            this.grdLogError.TabIndex = 0;
            // 
            // frm_LogError
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(697, 542);
            this.Controls.Add(this.uiGroupBox2);
            this.Controls.Add(this.uiGroupBox1);
            this.Controls.Add(this.toolStrip);
            this.Name = "frm_LogError";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Thông tin log nhận được";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.frm_LogError_Load);
            this.toolStrip.ResumeLayout(false);
            this.toolStrip.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
            this.uiGroupBox1.ResumeLayout(false);
            this.uiGroupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
            this.uiGroupBox2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdLogError)).EndInit();
            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_PhieucapphatNoitru));
            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.GridEX.GridEXLayout grdDrugList_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            this.sysColor = new System.Windows.Forms.ToolStrip();
            this.cmdInsert = new System.Windows.Forms.ToolStripButton();
            this.cmdUpdate = new System.Windows.Forms.ToolStripButton();
            this.cmdDelete = new System.Windows.Forms.ToolStripButton();
            this.cmdCheck = new System.Windows.Forms.ToolStripButton();
            this.cmdConfirm = new System.Windows.Forms.ToolStripButton();
            this.cmdCancelConfirm = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.cmdPrint = new System.Windows.Forms.ToolStripButton();
            this.cmdInsotamtra = new System.Windows.Forms.ToolStripButton();
            this.cmdBenhnhanLinhthuoc = new System.Windows.Forms.ToolStripButton();
            this.cmdConfig = new System.Windows.Forms.ToolStripButton();
            this.cmdClose = new System.Windows.Forms.ToolStripButton();
            this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
            this.label7 = new System.Windows.Forms.Label();
            this.txtID_CAPPHAT = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
            this.label6 = new System.Windows.Forms.Label();
            this.panel4 = new System.Windows.Forms.Panel();
            this.optLinhBoSung = new System.Windows.Forms.RadioButton();
            this.optLinhThuong = new System.Windows.Forms.RadioButton();
            this.chkByDate = new Janus.Windows.EditControls.UICheckBox();
            this.label5 = new System.Windows.Forms.Label();
            this.cboStatus = new Janus.Windows.EditControls.UIComboBox();
            this.label4 = new System.Windows.Forms.Label();
            this.cmdTimKiem = new Janus.Windows.EditControls.UIButton();
            this.dtpToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.dtpFromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label3 = new System.Windows.Forms.Label();
            this.cboStaff = new Janus.Windows.EditControls.UIComboBox();
            this.label1 = new System.Windows.Forms.Label();
            this.cboDepartment = new Janus.Windows.EditControls.UIComboBox();
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.panel1 = new System.Windows.Forms.Panel();
            this.uiGroupBox3 = new Janus.Windows.EditControls.UIGroupBox();
            this.grdDrugList = new Janus.Windows.GridEX.GridEX();
            this.pnlPhatthuoc = new System.Windows.Forms.Panel();
            this.cmdPhatThuoc = new Janus.Windows.EditControls.UIButton();
            this.label9 = new System.Windows.Forms.Label();
            this.dtNgayPhatThuoc = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.lblKhoxuat = new System.Windows.Forms.Label();
            this.cboKhoxuat = new Janus.Windows.EditControls.UIComboBox();
            this.cmdHuyDonThuoc = new Janus.Windows.EditControls.UIButton();
            this.grdList = new Janus.Windows.GridEX.GridEX();
            this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
            this.sysColor.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
            this.uiGroupBox1.SuspendLayout();
            this.panel4.SuspendLayout();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).BeginInit();
            this.uiGroupBox3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdDrugList)).BeginInit();
            this.pnlPhatthuoc.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
            this.uiGroupBox2.SuspendLayout();
            this.SuspendLayout();
            // 
            // sysColor
            // 
            this.sysColor.BackColor = System.Drawing.SystemColors.Control;
            this.sysColor.Font = new System.Drawing.Font("MS Reference Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.sysColor.ImageScalingSize = new System.Drawing.Size(32, 32);
            this.sysColor.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.cmdInsert,
            this.cmdUpdate,
            this.cmdDelete,
            this.cmdCheck,
            this.cmdConfirm,
            this.cmdCancelConfirm,
            this.toolStripSeparator1,
            this.cmdPrint,
            this.cmdInsotamtra,
            this.cmdBenhnhanLinhthuoc,
            this.cmdConfig,
            this.cmdClose});
            this.sysColor.Location = new System.Drawing.Point(0, 0);
            this.sysColor.Name = "sysColor";
            this.sysColor.Size = new System.Drawing.Size(1008, 39);
            this.sysColor.TabIndex = 2;
            this.sysColor.Text = "toolStrip1";
            // 
            // cmdInsert
            // 
            this.cmdInsert.Image = ((System.Drawing.Image)(resources.GetObject("cmdInsert.Image")));
            this.cmdInsert.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdInsert.Name = "cmdInsert";
            this.cmdInsert.Size = new System.Drawing.Size(110, 36);
            this.cmdInsert.Text = "Thêm phiếu";
            this.cmdInsert.ToolTipText = "Thêm mới biên bản thanh lý thuốc";
            this.cmdInsert.Click += new System.EventHandler(this.cmdInsert_Click);
            // 
            // cmdUpdate
            // 
            this.cmdUpdate.Image = ((System.Drawing.Image)(resources.GetObject("cmdUpdate.Image")));
            this.cmdUpdate.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdUpdate.Name = "cmdUpdate";
            this.cmdUpdate.Size = new System.Drawing.Size(100, 36);
            this.cmdUpdate.Text = "Sửa phiếu";
            this.cmdUpdate.ToolTipText = "Cập nhật phiếu nhập";
            this.cmdUpdate.Click += new System.EventHandler(this.cmdUpdate_Click);
            // 
            // cmdDelete
            // 
            this.cmdDelete.Image = ((System.Drawing.Image)(resources.GetObject("cmdDelete.Image")));
            this.cmdDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdDelete.Name = "cmdDelete";
            this.cmdDelete.Size = new System.Drawing.Size(100, 36);
            this.cmdDelete.Text = "Xóa phiếu";
            this.cmdDelete.ToolTipText = "Xóa phiếu nhập";
            this.cmdDelete.Click += new System.EventHandler(this.cmdDelete_Click);
            // 
            // cmdCheck
            // 
            this.cmdCheck.Image = ((System.Drawing.Image)(resources.GetObject("cmdCheck.Image")));
            this.cmdCheck.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdCheck.Name = "cmdCheck";
            this.cmdCheck.Size = new System.Drawing.Size(127, 36);
            this.cmdCheck.Text = "Kiểm tra thuốc";
            this.cmdCheck.Click += new System.EventHandler(this.cmdCheck_Click);
            // 
            // cmdConfirm
            // 
            this.cmdConfirm.Image = ((System.Drawing.Image)(resources.GetObject("cmdConfirm.Image")));
            this.cmdConfirm.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdConfirm.Name = "cmdConfirm";
            this.cmdConfirm.Size = new System.Drawing.Size(96, 36);
            this.cmdConfirm.Text = "Xác nhận";
            this.cmdConfirm.Click += new System.EventHandler(this.cmdConfirm_Click);
            // 
            // cmdCancelConfirm
            // 
            this.cmdCancelConfirm.Image = ((System.Drawing.Image)(resources.GetObject("cmdCancelConfirm.Image")));
            this.cmdCancelConfirm.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdCancelConfirm.Name = "cmdCancelConfirm";
            this.cmdCancelConfirm.Size = new System.Drawing.Size(121, 36);
            this.cmdCancelConfirm.Text = "Hủy xác nhận";
            this.cmdCancelConfirm.ToolTipText = "Hủy cấp phát thuốc theo phiếu";
            this.cmdCancelConfirm.Click += new System.EventHandler(this.cmdCancelConfirm_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 39);
            // 
            // cmdPrint
            // 
            this.cmdPrint.Image = ((System.Drawing.Image)(resources.GetObject("cmdPrint.Image")));
            this.cmdPrint.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdPrint.Name = "cmdPrint";
            this.cmdPrint.Size = new System.Drawing.Size(90, 36);
            this.cmdPrint.Text = "In phiếu";
            this.cmdPrint.ToolTipText = "In phiếu nhập";
            this.cmdPrint.Click += new System.EventHandler(this.cmdPrint_Click);
            // 
            // cmdInsotamtra
            // 
            this.cmdInsotamtra.Image = ((System.Drawing.Image)(resources.GetObject("cmdInsotamtra.Image")));
            this.cmdInsotamtra.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdInsotamtra.Name = "cmdInsotamtra";
            this.cmdInsotamtra.Size = new System.Drawing.Size(118, 36);
            this.cmdInsotamtra.Text = "In sổ tam tra";
            // 
            // cmdBenhnhanLinhthuoc
            // 
            this.cmdBenhnhanLinhthuoc.Image = ((System.Drawing.Image)(resources.GetObject("cmdBenhnhanLinhthuoc.Image")));
            this.cmdBenhnhanLinhthuoc.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdBenhnhanLinhthuoc.Name = "cmdBenhnhanLinhthuoc";
            this.cmdBenhnhanLinhthuoc.Size = new System.Drawing.Size(192, 36);
            this.cmdBenhnhanLinhthuoc.Text = "Phát thuốc cho Bệnh nhân";
            // 
            // cmdConfig
            // 
            this.cmdConfig.Image = ((System.Drawing.Image)(resources.GetObject("cmdConfig.Image")));
            this.cmdConfig.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdConfig.Name = "cmdConfig";
            this.cmdConfig.Size = new System.Drawing.Size(94, 36);
            this.cmdConfig.Text = "Cấu hình";
            // 
            // cmdClose
            // 
            this.cmdClose.Image = ((System.Drawing.Image)(resources.GetObject("cmdClose.Image")));
            this.cmdClose.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdClose.Name = "cmdClose";
            this.cmdClose.Size = new System.Drawing.Size(108, 36);
            this.cmdClose.Text = "Thoát (Esc)";
            this.cmdClose.ToolTipText = "Thoát chức năng";
            this.cmdClose.Click += new System.EventHandler(this.cmdClose_Click);
            // 
            // uiGroupBox1
            // 
            this.uiGroupBox1.Controls.Add(this.label7);
            this.uiGroupBox1.Controls.Add(this.txtID_CAPPHAT);
            this.uiGroupBox1.Controls.Add(this.label6);
            this.uiGroupBox1.Controls.Add(this.panel4);
            this.uiGroupBox1.Controls.Add(this.chkByDate);
            this.uiGroupBox1.Controls.Add(this.label5);
            this.uiGroupBox1.Controls.Add(this.cboStatus);
            this.uiGroupBox1.Controls.Add(this.label4);
            this.uiGroupBox1.Controls.Add(this.cmdTimKiem);
            this.uiGroupBox1.Controls.Add(this.dtpToDate);
            this.uiGroupBox1.Controls.Add(this.dtpFromDate);
            this.uiGroupBox1.Controls.Add(this.label3);
            this.uiGroupBox1.Controls.Add(this.cboStaff);
            this.uiGroupBox1.Controls.Add(this.label1);
            this.uiGroupBox1.Controls.Add(this.cboDepartment);
            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.Image = ((System.Drawing.Image)(resources.GetObject("uiGroupBox1.Image")));
            this.uiGroupBox1.Location = new System.Drawing.Point(0, 39);
            this.uiGroupBox1.Name = "uiGroupBox1";
            this.uiGroupBox1.Size = new System.Drawing.Size(1008, 80);
            this.uiGroupBox1.TabIndex = 3;
            this.uiGroupBox1.Text = "Thông tin tìm kiếm";
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(43, 23);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(51, 15);
            this.label7.TabIndex = 33;
            this.label7.Text = "Id phiếu";
            // 
            // txtID_CAPPHAT
            // 
            this.txtID_CAPPHAT.BackColor = System.Drawing.Color.White;
            this.txtID_CAPPHAT.BorderStyle = Janus.Windows.GridEX.BorderStyle.Flat;
            this.txtID_CAPPHAT.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtID_CAPPHAT.Location = new System.Drawing.Point(120, 20);
            this.txtID_CAPPHAT.Name = "txtID_CAPPHAT";
            this.txtID_CAPPHAT.Numeric = true;
            this.txtID_CAPPHAT.Size = new System.Drawing.Size(128, 23);
            this.txtID_CAPPHAT.TabIndex = 32;
            this.txtID_CAPPHAT.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(502, 54);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(65, 15);
            this.label6.TabIndex = 31;
            this.label6.Text = "Loại phiếu";
            // 
            // panel4
            // 
            this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel4.Controls.Add(this.optLinhBoSung);
            this.panel4.Controls.Add(this.optLinhThuong);
            this.panel4.Location = new System.Drawing.Point(579, 44);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(242, 30);
            this.panel4.TabIndex = 30;
            // 
            // optLinhBoSung
            // 
            this.optLinhBoSung.AutoSize = true;
            this.optLinhBoSung.Location = new System.Drawing.Point(116, 5);
            this.optLinhBoSung.Name = "optLinhBoSung";
            this.optLinhBoSung.Size = new System.Drawing.Size(97, 19);
            this.optLinhBoSung.TabIndex = 30;
            this.optLinhBoSung.Text = "Lĩnh bổ sung";
            this.optLinhBoSung.UseVisualStyleBackColor = true;
            // 
            // optLinhThuong
            // 
            this.optLinhThuong.AutoSize = true;
            this.optLinhThuong.Checked = true;
            this.optLinhThuong.Location = new System.Drawing.Point(6, 5);
            this.optLinhThuong.Name = "optLinhThuong";
            this.optLinhThuong.Size = new System.Drawing.Size(92, 19);
            this.optLinhThuong.TabIndex = 29;
            this.optLinhThuong.TabStop = true;
            this.optLinhThuong.Text = "Lĩnh thường";
            this.optLinhThuong.UseVisualStyleBackColor = true;
            // 
            // chkByDate
            // 
            this.chkByDate.Checked = true;
            this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkByDate.Location = new System.Drawing.Point(19, 45);
            this.chkByDate.Name = "chkByDate";
            this.chkByDate.Size = new System.Drawing.Size(77, 23);
            this.chkByDate.TabIndex = 12;
            this.chkByDate.Text = "Từ ngày";
            this.chkByDate.CheckedChanged += new System.EventHandler(this.chkByDate_CheckedChanged);
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(759, 23);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(62, 15);
            this.label5.TabIndex = 11;
            this.label5.Text = "Trạng thái";
            // 
            // cboStatus
            // 
            this.cboStatus.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.cboStatus.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "Tất cả";
            uiComboBoxItem1.Value = -1;
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "Chưa cấp phát";
            uiComboBoxItem2.Value = 0;
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "Đã cấp phát";
            uiComboBoxItem3.Value = 1;
            this.cboStatus.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3});
            this.cboStatus.Location = new System.Drawing.Point(833, 21);
            this.cboStatus.Name = "cboStatus";
            this.cboStatus.Size = new System.Drawing.Size(166, 21);
            this.cboStatus.TabIndex = 3;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(507, 23);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(62, 15);
            this.label4.TabIndex = 9;
            this.label4.Text = "Người tạo";
            // 
            // cmdTimKiem
            // 
            this.cmdTimKiem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdTimKiem.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdTimKiem.Image = ((System.Drawing.Image)(resources.GetObject("cmdTimKiem.Image")));
            this.cmdTimKiem.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdTimKiem.Location = new System.Drawing.Point(833, 45);
            this.cmdTimKiem.Name = "cmdTimKiem";
            this.cmdTimKiem.Size = new System.Drawing.Size(166, 30);
            this.cmdTimKiem.TabIndex = 6;
            this.cmdTimKiem.Text = "Tìm kiếm (F3)";
            this.cmdTimKiem.Click += new System.EventHandler(this.cmdTimKiem_Click);
            // 
            // dtpToDate
            // 
            // 
            // 
            // 
            this.dtpToDate.DropDownCalendar.Name = "";
            this.dtpToDate.Location = new System.Drawing.Point(315, 48);
            this.dtpToDate.Name = "dtpToDate";
            this.dtpToDate.ShowUpDown = true;
            this.dtpToDate.Size = new System.Drawing.Size(166, 21);
            this.dtpToDate.TabIndex = 5;
            this.dtpToDate.ValueChanged += new System.EventHandler(this.dtpToDate_ValueChanged);
            // 
            // dtpFromDate
            // 
            // 
            // 
            // 
            this.dtpFromDate.DropDownCalendar.Name = "";
            this.dtpFromDate.Location = new System.Drawing.Point(120, 49);
            this.dtpFromDate.Name = "dtpFromDate";
            this.dtpFromDate.ShowUpDown = true;
            this.dtpFromDate.Size = new System.Drawing.Size(128, 21);
            this.dtpFromDate.TabIndex = 4;
            this.dtpFromDate.ValueChanged += new System.EventHandler(this.dtpFromDate_ValueChanged);
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(254, 53);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(59, 15);
            this.label3.TabIndex = 5;
            this.label3.Text = "Đến ngày";
            // 
            // cboStaff
            // 
            this.cboStaff.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboStaff.Location = new System.Drawing.Point(579, 21);
            this.cboStaff.Name = "cboStaff";
            this.cboStaff.Size = new System.Drawing.Size(166, 21);
            this.cboStaff.TabIndex = 2;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(254, 23);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(36, 15);
            this.label1.TabIndex = 2;
            this.label1.Text = "Khoa";
            // 
            // cboDepartment
            // 
            this.cboDepartment.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboDepartment.Location = new System.Drawing.Point(315, 19);
            this.cboDepartment.Name = "cboDepartment";
            this.cboDepartment.Size = new System.Drawing.Size(166, 21);
            this.cboDepartment.TabIndex = 1;
            this.cboDepartment.SelectedIndexChanged += new System.EventHandler(this.cboDepartment_SelectedIndexChanged);
            // 
            // statusStrip1
            // 
            this.statusStrip1.Location = new System.Drawing.Point(0, 708);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Size = new System.Drawing.Size(1008, 22);
            this.statusStrip1.TabIndex = 10;
            this.statusStrip1.Text = "statusStrip1";
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.uiGroupBox3);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(573, 119);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(435, 589);
            this.panel1.TabIndex = 11;
            // 
            // uiGroupBox3
            // 
            this.uiGroupBox3.Controls.Add(this.grdDrugList);
            this.uiGroupBox3.Controls.Add(this.pnlPhatthuoc);
            this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.uiGroupBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiGroupBox3.Location = new System.Drawing.Point(0, 0);
            this.uiGroupBox3.Name = "uiGroupBox3";
            this.uiGroupBox3.Size = new System.Drawing.Size(435, 589);
            this.uiGroupBox3.TabIndex = 8;
            this.uiGroupBox3.Text = "Chi tiết thuốc theo phiếu";
            // 
            // grdDrugList
            // 
            grdDrugList_DesignTimeLayout.LayoutString = resources.GetString("grdDrugList_DesignTimeLayout.LayoutString");
            this.grdDrugList.DesignTimeLayout = grdDrugList_DesignTimeLayout;
            this.grdDrugList.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdDrugList.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdDrugList.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdDrugList.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdDrugList.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
            this.grdDrugList.GroupByBoxVisible = false;
            this.grdDrugList.GroupRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdDrugList.GroupRowFormatStyle.ForeColor = System.Drawing.Color.Navy;
            this.grdDrugList.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdDrugList.Location = new System.Drawing.Point(3, 83);
            this.grdDrugList.Name = "grdDrugList";
            this.grdDrugList.RecordNavigator = true;
            this.grdDrugList.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdDrugList.Size = new System.Drawing.Size(429, 503);
            this.grdDrugList.TabIndex = 10;
            this.grdDrugList.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            this.grdDrugList.SelectionChanged += new System.EventHandler(this.grdDrugList_SelectionChanged);
            // 
            // pnlPhatthuoc
            // 
            this.pnlPhatthuoc.Controls.Add(this.cmdPhatThuoc);
            this.pnlPhatthuoc.Controls.Add(this.label9);
            this.pnlPhatthuoc.Controls.Add(this.dtNgayPhatThuoc);
            this.pnlPhatthuoc.Controls.Add(this.lblKhoxuat);
            this.pnlPhatthuoc.Controls.Add(this.cboKhoxuat);
            this.pnlPhatthuoc.Controls.Add(this.cmdHuyDonThuoc);
            this.pnlPhatthuoc.Dock = System.Windows.Forms.DockStyle.Top;
            this.pnlPhatthuoc.Location = new System.Drawing.Point(3, 17);
            this.pnlPhatthuoc.Name = "pnlPhatthuoc";
            this.pnlPhatthuoc.Size = new System.Drawing.Size(429, 66);
            this.pnlPhatthuoc.TabIndex = 11;
            // 
            // cmdPhatThuoc
            // 
            this.cmdPhatThuoc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdPhatThuoc.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdPhatThuoc.Image = ((System.Drawing.Image)(resources.GetObject("cmdPhatThuoc.Image")));
            this.cmdPhatThuoc.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdPhatThuoc.Location = new System.Drawing.Point(295, 30);
            this.cmdPhatThuoc.Name = "cmdPhatThuoc";
            this.cmdPhatThuoc.Size = new System.Drawing.Size(125, 30);
            this.cmdPhatThuoc.TabIndex = 457;
            this.cmdPhatThuoc.Text = "Phát thuốc";
            // 
            // label9
            // 
            this.label9.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label9.Location = new System.Drawing.Point(7, 36);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(107, 16);
            this.label9.TabIndex = 456;
            this.label9.Text = "Ngày phát thuốc:";
            this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtNgayPhatThuoc
            // 
            this.dtNgayPhatThuoc.CustomFormat = "dd/MM/yyyy";
            this.dtNgayPhatThuoc.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtNgayPhatThuoc.DropDownCalendar.Name = "";
            this.dtNgayPhatThuoc.Enabled = false;
            this.dtNgayPhatThuoc.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtNgayPhatThuoc.Location = new System.Drawing.Point(120, 33);
            this.dtNgayPhatThuoc.Name = "dtNgayPhatThuoc";
            this.dtNgayPhatThuoc.ShowUpDown = true;
            this.dtNgayPhatThuoc.Size = new System.Drawing.Size(140, 22);
            this.dtNgayPhatThuoc.TabIndex = 455;
            // 
            // lblKhoxuat
            // 
            this.lblKhoxuat.Enabled = false;
            this.lblKhoxuat.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold);
            this.lblKhoxuat.Location = new System.Drawing.Point(7, 7);
            this.lblKhoxuat.Name = "lblKhoxuat";
            this.lblKhoxuat.Size = new System.Drawing.Size(107, 16);
            this.lblKhoxuat.TabIndex = 49;
            this.lblKhoxuat.Text = "Kho xuất";
            this.lblKhoxuat.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cboKhoxuat
            // 
            this.cboKhoxuat.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.cboKhoxuat.Enabled = false;
            this.cboKhoxuat.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold);
            this.cboKhoxuat.Location = new System.Drawing.Point(120, 5);
            this.cboKhoxuat.MaxDropDownItems = 15;
            this.cboKhoxuat.Name = "cboKhoxuat";
            this.cboKhoxuat.Size = new System.Drawing.Size(300, 21);
            this.cboKhoxuat.TabIndex = 48;
            this.cboKhoxuat.Text = "Kho xuất";
            this.cboKhoxuat.SelectedIndexChanged += new System.EventHandler(this.cboKhoxuat_SelectedIndexChanged);
            // 
            // cmdHuyDonThuoc
            // 
            this.cmdHuyDonThuoc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdHuyDonThuoc.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdHuyDonThuoc.Image = ((System.Drawing.Image)(resources.GetObject("cmdHuyDonThuoc.Image")));
            this.cmdHuyDonThuoc.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdHuyDonThuoc.Location = new System.Drawing.Point(295, 30);
            this.cmdHuyDonThuoc.Name = "cmdHuyDonThuoc";
            this.cmdHuyDonThuoc.Size = new System.Drawing.Size(125, 30);
            this.cmdHuyDonThuoc.TabIndex = 458;
            this.cmdHuyDonThuoc.Text = "Hủy phát thuốc";
            // 
            // grdList
            // 
            this.grdList.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grdList.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><FilterRowInfoText>Lọc" +
    " thông tin </FilterRowInfoText></LocalizableData>";
            this.grdList.DefaultFilterRowComparison = Janus.Windows.GridEX.FilterConditionOperator.Contains;
            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.FilterRowButtonStyle = Janus.Windows.GridEX.FilterRowButtonStyle.ConditionOperatorDropDown;
            this.grdList.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdList.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdList.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
            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.Size = new System.Drawing.Size(567, 569);
            this.grdList.TabIndex = 8;
            this.grdList.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            this.grdList.SelectionChanged += new System.EventHandler(this.grdList_SelectionChanged);
            // 
            // uiGroupBox2
            // 
            this.uiGroupBox2.Controls.Add(this.grdList);
            this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Left;
            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, 119);
            this.uiGroupBox2.Name = "uiGroupBox2";
            this.uiGroupBox2.Size = new System.Drawing.Size(573, 589);
            this.uiGroupBox2.TabIndex = 9;
            this.uiGroupBox2.Text = "Danh sách phiếu tổng hợp thuốc nội trú";
            // 
            // frm_PhieucapphatNoitru
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
            this.ClientSize = new System.Drawing.Size(1008, 730);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.uiGroupBox2);
            this.Controls.Add(this.statusStrip1);
            this.Controls.Add(this.uiGroupBox1);
            this.Controls.Add(this.sysColor);
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frm_PhieucapphatNoitru";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Quản lý phiếu tổng hợp cấp phát thuốc nội trú";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.frm_PhieucapphatNoitruQ_Load);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frm_PhieucapphatNoitruQ_KeyDown);
            this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.frm_PhieucapphatNoitruQ_KeyUp);
            this.sysColor.ResumeLayout(false);
            this.sysColor.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
            this.uiGroupBox1.ResumeLayout(false);
            this.uiGroupBox1.PerformLayout();
            this.panel4.ResumeLayout(false);
            this.panel4.PerformLayout();
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).EndInit();
            this.uiGroupBox3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdDrugList)).EndInit();
            this.pnlPhatthuoc.ResumeLayout(false);
            this.pnlPhatthuoc.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
            this.uiGroupBox2.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();
            Janus.Windows.Common.JanusColorScheme janusColorScheme1 = new Janus.Windows.Common.JanusColorScheme();
            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.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.ButtonBar.ButtonBarGroup buttonBarGroup1 = new Janus.Windows.ButtonBar.ButtonBarGroup();
            Janus.Windows.ButtonBar.ButtonBarGroup buttonBarGroup2 = new Janus.Windows.ButtonBar.ButtonBarGroup();
            Janus.Windows.ButtonBar.ButtonBarGroup buttonBarGroup3 = new Janus.Windows.ButtonBar.ButtonBarGroup();
            Janus.Windows.ButtonBar.ButtonBarGroup buttonBarGroup4 = new Janus.Windows.ButtonBar.ButtonBarGroup();
            Janus.Windows.ButtonBar.ButtonBarGroup buttonBarGroup5 = new Janus.Windows.ButtonBar.ButtonBarGroup();
            Janus.Windows.ButtonBar.ButtonBarGroup buttonBarGroup6 = new Janus.Windows.ButtonBar.ButtonBarGroup();
            Janus.Windows.ButtonBar.ButtonBarGroup buttonBarGroup7 = new Janus.Windows.ButtonBar.ButtonBarGroup();
            Janus.Windows.ButtonBar.ButtonBarGroup buttonBarGroup8 = new Janus.Windows.ButtonBar.ButtonBarGroup();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem10 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem11 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem12 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem13 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem14 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem15 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem16 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem17 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.ButtonBar.ButtonBarGroup buttonBarGroup9 = new Janus.Windows.ButtonBar.ButtonBarGroup();
            Janus.Windows.ButtonBar.ButtonBarGroup buttonBarGroup10 = new Janus.Windows.ButtonBar.ButtonBarGroup();
            Janus.Windows.GridEX.GridEXLayout gridEXLayout1 = new Janus.Windows.GridEX.GridEXLayout();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MoleculeSchemeDlg));
            this.panel2 = new System.Windows.Forms.Panel();
            this.uiBondsGSetGroup = new Janus.Windows.EditControls.UIGroupBox();
            this.uiBondDDraw = new Janus.Windows.EditControls.UICheckBox();
            this.visualStyleManager1 = new Janus.Windows.Common.VisualStyleManager(this.components);
            this.uiBondEndTypeList = new Janus.Windows.EditControls.UIComboBox();
            this.uiBondSpacingList = new Janus.Windows.EditControls.UIComboBox();
            this.uiBondLODControl = new NuGenSVisualLib.LODcontrol();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.uiAtomsGSetGroup = new Janus.Windows.EditControls.UIGroupBox();
            this.uiAtomDDraw = new Janus.Windows.EditControls.UICheckBox();
            this.uiGroupBox6 = new Janus.Windows.EditControls.UIGroupBox();
            this.uiAtomSymbolsBlend = new Janus.Windows.EditControls.UICheckBox();
            this.uiAtomSymbolsDraw = new Janus.Windows.EditControls.UICheckBox();
            this.uiAtomFillModeList = new Janus.Windows.EditControls.UIComboBox();
            this.uiAtomLODControl = new NuGenSVisualLib.LODcontrol();
            this.label23 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.uiSchemesList = new Janus.Windows.ButtonBar.ButtonBar();
            this.button1 = new System.Windows.Forms.Button();
            this.button2 = new System.Windows.Forms.Button();
            this.label13 = new System.Windows.Forms.Label();
            this.uiTab1 = new Janus.Windows.UI.Tab.UITab();
            this.uiTabPage1 = new Janus.Windows.UI.Tab.UITabPage();
            this.uiGroupBox8 = new Janus.Windows.EditControls.UIGroupBox();
            this.schemePreviewControl = new NuGenSVisualLib.SchemePreviewControl();
            this.uiGroupBox7 = new Janus.Windows.EditControls.UIGroupBox();
            this.requirementGague2 = new NuGenSVisualLib.RequirementGague();
            this.requirementGague1 = new NuGenSVisualLib.RequirementGague();
            this.uiGroupBox3 = new Janus.Windows.EditControls.UIGroupBox();
            this.label22 = new System.Windows.Forms.Label();
            this.uiTabPage2 = new Janus.Windows.UI.Tab.UITabPage();
            this.uiGroupBox14 = new Janus.Windows.EditControls.UIGroupBox();
            this.uiEfxPSReqs = new NuGenSVisualLib.RequirementGague();
            this.label14 = new System.Windows.Forms.Label();
            this.label15 = new System.Windows.Forms.Label();
            this.label12 = new System.Windows.Forms.Label();
            this.uiEfxVSReqs = new NuGenSVisualLib.RequirementGague();
            this.uiGroupBox13 = new Janus.Windows.EditControls.UIGroupBox();
            this.effectPreviewControl1 = new NuGenSVisualLib.EffectPreviewControl();
            this.label18 = new System.Windows.Forms.Label();
            this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
            this.pictureBox8 = new System.Windows.Forms.PictureBox();
            this.uiRemoveEffectBtn = new Janus.Windows.EditControls.UIButton();
            this.uiAddEffectBtn = new Janus.Windows.EditControls.UIButton();
            this.uiCheckBox1 = new Janus.Windows.EditControls.UICheckBox();
            this.uiEffectPropGroup = new Janus.Windows.EditControls.UIGroupBox();
            this.panel4 = new System.Windows.Forms.Panel();
            this.uiEffectLOD = new NuGenSVisualLib.LODcontrol();
            this.label17 = new System.Windows.Forms.Label();
            this.uiEffectsReqList = new Janus.Windows.ButtonBar.ButtonBar();
            this.uiCurrentEffectsList = new Janus.Windows.ButtonBar.ButtonBar();
            this.label16 = new System.Windows.Forms.Label();
            this.uiEffectsList = new Janus.Windows.ButtonBar.ButtonBar();
            this.effectsListMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.addToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.detailsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.uiTabPage3 = new Janus.Windows.UI.Tab.UITabPage();
            this.uiGroupBox11 = new Janus.Windows.EditControls.UIGroupBox();
            this.lightsListBox = new System.Windows.Forms.ListBox();
            this.uiLightingPropGroup = new Janus.Windows.EditControls.UIGroupBox();
            this.uiLightCastShadows = new Janus.Windows.EditControls.UICheckBox();
            this.uiLightEnabled = new Janus.Windows.EditControls.UICheckBox();
            this.uiLightingPropPanel = new System.Windows.Forms.Panel();
            this.label25 = new System.Windows.Forms.Label();
            this.uiColorButton1 = new Janus.Windows.EditControls.UIColorButton();
            this.uiGroupBox9 = new Janus.Windows.EditControls.UIGroupBox();
            this.lightPreviewControl2 = new NuGenSVisualLib.LightPreviewControl();
            this.lightingSchemeLabel = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.uiButton2 = new Janus.Windows.EditControls.UIButton();
            this.uiButton1 = new Janus.Windows.EditControls.UIButton();
            this.uiLightingList = new Janus.Windows.ButtonBar.ButtonBar();
            this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
            this.label28 = new System.Windows.Forms.Label();
            this.uiColorButton2 = new Janus.Windows.EditControls.UIColorButton();
            this.uiTabPage4 = new Janus.Windows.UI.Tab.UITabPage();
            this.uiGroupBox12 = new Janus.Windows.EditControls.UIGroupBox();
            this.uiComboBox2 = new Janus.Windows.EditControls.UIComboBox();
            this.label5 = new System.Windows.Forms.Label();
            this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
            this.uiComboBox1 = new Janus.Windows.EditControls.UIComboBox();
            this.label9 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.groupBox13 = new System.Windows.Forms.GroupBox();
            this.groupBox15 = new System.Windows.Forms.GroupBox();
            this.uiComboBox3 = new Janus.Windows.EditControls.UIComboBox();
            this.label10 = new System.Windows.Forms.Label();
            this.radioButton2 = new System.Windows.Forms.RadioButton();
            this.radioButton1 = new System.Windows.Forms.RadioButton();
            this.uiTabPage5 = new Janus.Windows.UI.Tab.UITabPage();
            this.uiShadingElementList = new System.Windows.Forms.ListBox();
            this.uiShadingSeriesGroup = new Janus.Windows.EditControls.UIGroupBox();
            this.label27 = new System.Windows.Forms.Label();
            this.uiShadingSeriesList = new System.Windows.Forms.ListBox();
            this.uiShadingElementsGroup = new Janus.Windows.EditControls.UIGroupBox();
            this.uiElementClrBtn = new Janus.Windows.EditControls.UIColorButton();
            this.label24 = new System.Windows.Forms.Label();
            this.label21 = new System.Windows.Forms.Label();
            this.uiElementShadingList = new Janus.Windows.ButtonBar.ButtonBar();
            this.panel1 = new System.Windows.Forms.Panel();
            this.periodicTableControl1 = new NuGenSVisualLib.PeriodicTableControl();
            this.label26 = new System.Windows.Forms.Label();
            this.button3 = new System.Windows.Forms.Button();
            this.multiColumnCombo1 = new Janus.Windows.GridEX.EditControls.MultiColumnCombo();
            this.groupBox10 = new System.Windows.Forms.GroupBox();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.pictureBox2 = new System.Windows.Forms.PictureBox();
            this.pictureBox3 = new System.Windows.Forms.PictureBox();
            this.pictureBox4 = new System.Windows.Forms.PictureBox();
            this.pictureBox5 = new System.Windows.Forms.PictureBox();
            this.pictureBox6 = new System.Windows.Forms.PictureBox();
            this.pictureBox7 = new System.Windows.Forms.PictureBox();
            this.label11 = new System.Windows.Forms.Label();
            this.label19 = new System.Windows.Forms.Label();
            this.label20 = new System.Windows.Forms.Label();
            this.label29 = new System.Windows.Forms.Label();
            this.uiColorButton3 = new Janus.Windows.EditControls.UIColorButton();
            this.uiCheckBox2 = new Janus.Windows.EditControls.UICheckBox();
            this.uiCheckBox3 = new Janus.Windows.EditControls.UICheckBox();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiBondsGSetGroup)).BeginInit();
            this.uiBondsGSetGroup.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiAtomsGSetGroup)).BeginInit();
            this.uiAtomsGSetGroup.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox6)).BeginInit();
            this.uiGroupBox6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiSchemesList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiTab1)).BeginInit();
            this.uiTab1.SuspendLayout();
            this.uiTabPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox8)).BeginInit();
            this.uiGroupBox8.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox7)).BeginInit();
            this.uiGroupBox7.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).BeginInit();
            this.uiGroupBox3.SuspendLayout();
            this.uiTabPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox14)).BeginInit();
            this.uiGroupBox14.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox13)).BeginInit();
            this.uiGroupBox13.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
            this.uiGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiEffectPropGroup)).BeginInit();
            this.uiEffectPropGroup.SuspendLayout();
            this.panel4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiEffectsReqList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiCurrentEffectsList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiEffectsList)).BeginInit();
            this.effectsListMenuStrip.SuspendLayout();
            this.uiTabPage3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox11)).BeginInit();
            this.uiGroupBox11.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiLightingPropGroup)).BeginInit();
            this.uiLightingPropGroup.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox9)).BeginInit();
            this.uiGroupBox9.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiLightingList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
            this.uiGroupBox1.SuspendLayout();
            this.uiTabPage4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox12)).BeginInit();
            this.uiGroupBox12.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
            this.groupBox13.SuspendLayout();
            this.groupBox15.SuspendLayout();
            this.uiTabPage5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiShadingSeriesGroup)).BeginInit();
            this.uiShadingSeriesGroup.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiShadingElementsGroup)).BeginInit();
            this.uiShadingElementsGroup.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiElementShadingList)).BeginInit();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.multiColumnCombo1)).BeginInit();
            this.groupBox10.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit();
            this.SuspendLayout();
            // 
            // panel2
            // 
            this.panel2.AutoScroll = true;
            this.panel2.Controls.Add(this.uiBondsGSetGroup);
            this.panel2.Controls.Add(this.uiAtomsGSetGroup);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(3, 18);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(409, 329);
            this.panel2.TabIndex = 1;
            // 
            // uiBondsGSetGroup
            // 
            this.uiBondsGSetGroup.Controls.Add(this.uiBondDDraw);
            this.uiBondsGSetGroup.Controls.Add(this.uiBondEndTypeList);
            this.uiBondsGSetGroup.Controls.Add(this.uiBondSpacingList);
            this.uiBondsGSetGroup.Controls.Add(this.uiBondLODControl);
            this.uiBondsGSetGroup.Controls.Add(this.label1);
            this.uiBondsGSetGroup.Controls.Add(this.label2);
            this.uiBondsGSetGroup.Dock = System.Windows.Forms.DockStyle.Top;
            this.uiBondsGSetGroup.Location = new System.Drawing.Point(0, 93);
            this.uiBondsGSetGroup.Name = "uiBondsGSetGroup";
            this.uiBondsGSetGroup.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiBondsGSetGroup.Size = new System.Drawing.Size(409, 87);
            this.uiBondsGSetGroup.TabIndex = 4;
            this.uiBondsGSetGroup.Text = "Bond (General)";
            this.uiBondsGSetGroup.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiBondDDraw
            // 
            this.uiBondDDraw.Location = new System.Drawing.Point(277, 53);
            this.uiBondDDraw.Name = "uiBondDDraw";
            this.uiBondDDraw.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiBondDDraw.Size = new System.Drawing.Size(104, 23);
            this.uiBondDDraw.TabIndex = 8;
            this.uiBondDDraw.Text = "Don\'t Draw";
            this.uiBondDDraw.VisualStyleManager = this.visualStyleManager1;
            this.uiBondDDraw.CheckedChanged += new System.EventHandler(this.uiBondDDraw_CheckedChanged);
            // 
            // visualStyleManager1
            // 
            janusColorScheme1.HighlightTextColor = System.Drawing.SystemColors.HighlightText;
            janusColorScheme1.Name = "Scheme1";
            janusColorScheme1.Office2007ColorScheme = Janus.Windows.Common.Office2007ColorScheme.Black;
            janusColorScheme1.Office2007CustomColor = System.Drawing.Color.Empty;
            janusColorScheme1.VisualStyle = Janus.Windows.Common.VisualStyle.Office2007;
            this.visualStyleManager1.ColorSchemes.Add(janusColorScheme1);
            this.visualStyleManager1.DefaultColorScheme = "Scheme1";
            // 
            // uiBondEndTypeList
            // 
            this.uiBondEndTypeList.AutoComplete = false;
            this.uiBondEndTypeList.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "Open";
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "Closed";
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "Point";
            uiComboBoxItem4.FormatStyle.Alpha = 0;
            uiComboBoxItem4.IsSeparator = false;
            uiComboBoxItem4.Text = "Rounded";
            this.uiBondEndTypeList.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3,
            uiComboBoxItem4});
            this.uiBondEndTypeList.Location = new System.Drawing.Point(260, 19);
            this.uiBondEndTypeList.Name = "uiBondEndTypeList";
            this.uiBondEndTypeList.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiBondEndTypeList.Size = new System.Drawing.Size(128, 22);
            this.uiBondEndTypeList.TabIndex = 7;
            this.uiBondEndTypeList.VisualStyleManager = this.visualStyleManager1;
            this.uiBondEndTypeList.SelectedIndexChanged += new System.EventHandler(this.uiBondEndTypeList_SelectedIndexChanged);
            // 
            // uiBondSpacingList
            // 
            this.uiBondSpacingList.AutoComplete = false;
            this.uiBondSpacingList.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            uiComboBoxItem5.FormatStyle.Alpha = 0;
            uiComboBoxItem5.IsSeparator = false;
            uiComboBoxItem5.Text = "AtoB";
            uiComboBoxItem6.FormatStyle.Alpha = 0;
            uiComboBoxItem6.IsSeparator = false;
            uiComboBoxItem6.Text = "Center";
            this.uiBondSpacingList.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem5,
            uiComboBoxItem6});
            this.uiBondSpacingList.Location = new System.Drawing.Point(61, 19);
            this.uiBondSpacingList.Name = "uiBondSpacingList";
            this.uiBondSpacingList.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiBondSpacingList.Size = new System.Drawing.Size(120, 22);
            this.uiBondSpacingList.TabIndex = 6;
            this.uiBondSpacingList.VisualStyleManager = this.visualStyleManager1;
            this.uiBondSpacingList.SelectedIndexChanged += new System.EventHandler(this.uiBondSpacingList_SelectedIndexChanged_1);
            // 
            // uiBondLODControl
            // 
            this.uiBondLODControl.BackColor = System.Drawing.Color.GhostWhite;
            this.uiBondLODControl.Location = new System.Drawing.Point(9, 47);
            this.uiBondLODControl.MaximumSize = new System.Drawing.Size(0, 29);
            this.uiBondLODControl.MinimumSize = new System.Drawing.Size(246, 29);
            this.uiBondLODControl.Name = "uiBondLODControl";
            this.uiBondLODControl.Size = new System.Drawing.Size(246, 29);
            this.uiBondLODControl.TabIndex = 5;
            this.uiBondLODControl.OnLODValueChanged += new System.EventHandler(this.uiBondLODControl_OnLODValueChanged);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(6, 23);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(51, 13);
            this.label1.TabIndex = 0;
            this.label1.Text = "Spacing:";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(198, 23);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(56, 13);
            this.label2.TabIndex = 2;
            this.label2.Text = "End Type:";
            // 
            // uiAtomsGSetGroup
            // 
            this.uiAtomsGSetGroup.Controls.Add(this.uiAtomDDraw);
            this.uiAtomsGSetGroup.Controls.Add(this.uiGroupBox6);
            this.uiAtomsGSetGroup.Controls.Add(this.uiAtomFillModeList);
            this.uiAtomsGSetGroup.Controls.Add(this.uiAtomLODControl);
            this.uiAtomsGSetGroup.Controls.Add(this.label23);
            this.uiAtomsGSetGroup.Dock = System.Windows.Forms.DockStyle.Top;
            this.uiAtomsGSetGroup.Location = new System.Drawing.Point(0, 0);
            this.uiAtomsGSetGroup.Name = "uiAtomsGSetGroup";
            this.uiAtomsGSetGroup.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiAtomsGSetGroup.Size = new System.Drawing.Size(409, 93);
            this.uiAtomsGSetGroup.TabIndex = 3;
            this.uiAtomsGSetGroup.Text = "Atom (General)";
            this.uiAtomsGSetGroup.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiAtomDDraw
            // 
            this.uiAtomDDraw.Location = new System.Drawing.Point(201, 17);
            this.uiAtomDDraw.Name = "uiAtomDDraw";
            this.uiAtomDDraw.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiAtomDDraw.Size = new System.Drawing.Size(77, 23);
            this.uiAtomDDraw.TabIndex = 12;
            this.uiAtomDDraw.Text = "Don\'t Draw";
            this.uiAtomDDraw.VisualStyleManager = this.visualStyleManager1;
            this.uiAtomDDraw.CheckedChanged += new System.EventHandler(this.uiAtomDDraw_CheckedChanged);
            // 
            // uiGroupBox6
            // 
            this.uiGroupBox6.Controls.Add(this.uiAtomSymbolsBlend);
            this.uiGroupBox6.Controls.Add(this.uiAtomSymbolsDraw);
            this.uiGroupBox6.Location = new System.Drawing.Point(303, 15);
            this.uiGroupBox6.Name = "uiGroupBox6";
            this.uiGroupBox6.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiGroupBox6.Size = new System.Drawing.Size(85, 62);
            this.uiGroupBox6.TabIndex = 11;
            this.uiGroupBox6.Text = "Symbols";
            this.uiGroupBox6.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiAtomSymbolsBlend
            // 
            this.uiAtomSymbolsBlend.Location = new System.Drawing.Point(15, 39);
            this.uiAtomSymbolsBlend.Name = "uiAtomSymbolsBlend";
            this.uiAtomSymbolsBlend.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiAtomSymbolsBlend.Size = new System.Drawing.Size(54, 23);
            this.uiAtomSymbolsBlend.TabIndex = 9;
            this.uiAtomSymbolsBlend.Text = "Blend";
            this.uiAtomSymbolsBlend.VisualStyleManager = this.visualStyleManager1;
            this.uiAtomSymbolsBlend.CheckedChanged += new System.EventHandler(this.uiAtomSymbolsBlend_CheckedChanged);
            // 
            // uiAtomSymbolsDraw
            // 
            this.uiAtomSymbolsDraw.Location = new System.Drawing.Point(15, 19);
            this.uiAtomSymbolsDraw.Name = "uiAtomSymbolsDraw";
            this.uiAtomSymbolsDraw.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiAtomSymbolsDraw.Size = new System.Drawing.Size(53, 23);
            this.uiAtomSymbolsDraw.TabIndex = 8;
            this.uiAtomSymbolsDraw.Text = "Draw";
            this.uiAtomSymbolsDraw.VisualStyleManager = this.visualStyleManager1;
            this.uiAtomSymbolsDraw.CheckedChanged += new System.EventHandler(this.uiAtomSymbolsDraw_CheckedChanged);
            // 
            // uiAtomFillModeList
            // 
            this.uiAtomFillModeList.AutoComplete = false;
            this.uiAtomFillModeList.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            uiComboBoxItem7.FormatStyle.Alpha = 0;
            uiComboBoxItem7.IsSeparator = false;
            uiComboBoxItem7.Text = "Point";
            uiComboBoxItem8.FormatStyle.Alpha = 0;
            uiComboBoxItem8.IsSeparator = false;
            uiComboBoxItem8.Text = "Wireframe";
            uiComboBoxItem9.FormatStyle.Alpha = 0;
            uiComboBoxItem9.IsSeparator = false;
            uiComboBoxItem9.Text = "Solid";
            this.uiAtomFillModeList.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem7,
            uiComboBoxItem8,
            uiComboBoxItem9});
            this.uiAtomFillModeList.Location = new System.Drawing.Point(67, 19);
            this.uiAtomFillModeList.Name = "uiAtomFillModeList";
            this.uiAtomFillModeList.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiAtomFillModeList.Size = new System.Drawing.Size(114, 22);
            this.uiAtomFillModeList.TabIndex = 7;
            this.uiAtomFillModeList.VisualStyleManager = this.visualStyleManager1;
            this.uiAtomFillModeList.SelectedIndexChanged += new System.EventHandler(this.uiAtomFillModeList_SelectedIndexChanged);
            // 
            // uiAtomLODControl
            // 
            this.uiAtomLODControl.BackColor = System.Drawing.Color.GhostWhite;
            this.uiAtomLODControl.Location = new System.Drawing.Point(9, 48);
            this.uiAtomLODControl.MaximumSize = new System.Drawing.Size(0, 29);
            this.uiAtomLODControl.MinimumSize = new System.Drawing.Size(246, 29);
            this.uiAtomLODControl.Name = "uiAtomLODControl";
            this.uiAtomLODControl.Size = new System.Drawing.Size(246, 29);
            this.uiAtomLODControl.TabIndex = 6;
            this.uiAtomLODControl.OnLODValueChanged += new System.EventHandler(this.uiAtomLODControl_OnLODValueChanged);
            // 
            // label23
            // 
            this.label23.AutoSize = true;
            this.label23.Location = new System.Drawing.Point(9, 22);
            this.label23.Name = "label23";
            this.label23.Size = new System.Drawing.Size(58, 13);
            this.label23.TabIndex = 1;
            this.label23.Text = "Fill Mode:";
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(6, 73);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(40, 13);
            this.label8.TabIndex = 4;
            this.label8.Text = "Other:";
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(6, 28);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(81, 13);
            this.label7.TabIndex = 4;
            this.label7.Text = "Vertex Shader:";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(6, 50);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(72, 13);
            this.label3.TabIndex = 4;
            this.label3.Text = "Pixel Shader:";
            // 
            // uiSchemesList
            // 
            this.uiSchemesList.BackColor = System.Drawing.Color.White;
            buttonBarGroup1.Key = "Group1";
            buttonBarGroup1.Text = "Schemes";
            buttonBarGroup1.View = Janus.Windows.ButtonBar.ButtonBarView.SmallIcons;
            buttonBarGroup2.Key = "Group2";
            buttonBarGroup2.Text = "Presets";
            buttonBarGroup2.View = Janus.Windows.ButtonBar.ButtonBarView.SmallIcons;
            this.uiSchemesList.Groups.AddRange(new Janus.Windows.ButtonBar.ButtonBarGroup[] {
            buttonBarGroup1,
            buttonBarGroup2});
            this.uiSchemesList.ItemAppearance = Janus.Windows.ButtonBar.ItemAppearance.Flat;
            this.uiSchemesList.Location = new System.Drawing.Point(3, 4);
            this.uiSchemesList.Name = "uiSchemesList";
            this.uiSchemesList.Office2007ColorScheme = Janus.Windows.ButtonBar.Office2007ColorScheme.Black;
            this.uiSchemesList.Orientation = Janus.Windows.ButtonBar.ButtonBarOrientation.Horizontal;
            this.uiSchemesList.SelectionArea = Janus.Windows.ButtonBar.SelectionArea.FullItem;
            this.uiSchemesList.ShadowOnHover = true;
            this.uiSchemesList.Size = new System.Drawing.Size(628, 80);
            this.uiSchemesList.TabIndex = 0;
            this.uiSchemesList.Text = "buttonBar1";
            this.uiSchemesList.ThemedAreas = ((Janus.Windows.ButtonBar.ThemedArea)((((Janus.Windows.ButtonBar.ThemedArea.Border | Janus.Windows.ButtonBar.ThemedArea.Groups)
                        | Janus.Windows.ButtonBar.ThemedArea.Items)
                        | Janus.Windows.ButtonBar.ThemedArea.ScrollButton)));
            this.uiSchemesList.VisualStyle = Janus.Windows.ButtonBar.VisualStyle.Office2007;
            this.uiSchemesList.ItemSelected += new System.EventHandler(this.buttonBar1_ItemSelected);
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(575, 579);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(75, 23);
            this.button1.TabIndex = 4;
            this.button1.Text = "Cancel";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // button2
            // 
            this.button2.Location = new System.Drawing.Point(494, 579);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(75, 23);
            this.button2.TabIndex = 5;
            this.button2.Text = "Apply";
            this.button2.UseVisualStyleBackColor = true;
            this.button2.Click += new System.EventHandler(this.button2_Click);
            // 
            // label13
            // 
            this.label13.BackColor = System.Drawing.Color.Transparent;
            this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label13.Location = new System.Drawing.Point(301, 87);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(335, 19);
            this.label13.TabIndex = 6;
            this.label13.TextAlign = System.Drawing.ContentAlignment.TopRight;
            // 
            // uiTab1
            // 
            this.uiTab1.Location = new System.Drawing.Point(12, 12);
            this.uiTab1.Name = "uiTab1";
            this.uiTab1.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiTab1.Size = new System.Drawing.Size(638, 492);
            this.uiTab1.TabDisplay = Janus.Windows.UI.Tab.TabDisplay.Text;
            this.uiTab1.TabIndex = 7;
            this.uiTab1.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
            this.uiTabPage1,
            this.uiTabPage2,
            this.uiTabPage3,
            this.uiTabPage4,
            this.uiTabPage5});
            this.uiTab1.TabStripAlignment = Janus.Windows.UI.Tab.TabStripAlignment.Bottom;
            this.uiTab1.VisualStyle = Janus.Windows.UI.Tab.TabVisualStyle.Office2007;
            this.uiTab1.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiTabPage1
            // 
            this.uiTabPage1.Controls.Add(this.uiGroupBox8);
            this.uiTabPage1.Controls.Add(this.uiGroupBox7);
            this.uiTabPage1.Controls.Add(this.uiGroupBox3);
            this.uiTabPage1.Controls.Add(this.label22);
            this.uiTabPage1.Controls.Add(this.label13);
            this.uiTabPage1.Controls.Add(this.uiSchemesList);
            this.uiTabPage1.Location = new System.Drawing.Point(1, 1);
            this.uiTabPage1.Name = "uiTabPage1";
            this.uiTabPage1.Size = new System.Drawing.Size(636, 470);
            this.uiTabPage1.TabStop = true;
            this.uiTabPage1.Text = "Scheme";
            // 
            // uiGroupBox8
            // 
            this.uiGroupBox8.Controls.Add(this.schemePreviewControl);
            this.uiGroupBox8.Location = new System.Drawing.Point(3, 90);
            this.uiGroupBox8.Name = "uiGroupBox8";
            this.uiGroupBox8.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiGroupBox8.Size = new System.Drawing.Size(209, 213);
            this.uiGroupBox8.TabIndex = 7;
            this.uiGroupBox8.Text = "Preview";
            this.uiGroupBox8.VisualStyleManager = this.visualStyleManager1;
            // 
            // schemePreviewControl
            // 
            this.schemePreviewControl.Font = new System.Drawing.Font("Microsoft Sans Serif", 24F);
            this.schemePreviewControl.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.schemePreviewControl.Location = new System.Drawing.Point(7, 15);
            this.schemePreviewControl.Margin = new System.Windows.Forms.Padding(10, 9, 10, 9);
            this.schemePreviewControl.Name = "schemePreviewControl";
            this.schemePreviewControl.OutSettings = null;
            this.schemePreviewControl.Size = new System.Drawing.Size(195, 188);
            this.schemePreviewControl.TabIndex = 6;
            // 
            // uiGroupBox7
            // 
            this.uiGroupBox7.BackColor = System.Drawing.Color.Transparent;
            this.uiGroupBox7.Controls.Add(this.requirementGague2);
            this.uiGroupBox7.Controls.Add(this.label7);
            this.uiGroupBox7.Controls.Add(this.requirementGague1);
            this.uiGroupBox7.Controls.Add(this.label3);
            this.uiGroupBox7.Controls.Add(this.label8);
            this.uiGroupBox7.Location = new System.Drawing.Point(3, 305);
            this.uiGroupBox7.Name = "uiGroupBox7";
            this.uiGroupBox7.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiGroupBox7.Size = new System.Drawing.Size(209, 146);
            this.uiGroupBox7.TabIndex = 4;
            this.uiGroupBox7.Text = "Requirements";
            this.uiGroupBox7.VisualStyleManager = this.visualStyleManager1;
            // 
            // requirementGague2
            // 
            this.requirementGague2.ActualValue = 0;
            this.requirementGague2.DrawTicks = false;
            this.requirementGague2.Location = new System.Drawing.Point(89, 41);
            this.requirementGague2.MaxReqValue = 0;
            this.requirementGague2.MinimumSize = new System.Drawing.Size(0, 20);
            this.requirementGague2.MinReqValue = 0;
            this.requirementGague2.Name = "requirementGague2";
            this.requirementGague2.ShowValues = false;
            this.requirementGague2.Size = new System.Drawing.Size(114, 22);
            this.requirementGague2.TabIndex = 15;
            // 
            // requirementGague1
            // 
            this.requirementGague1.ActualValue = 0;
            this.requirementGague1.DrawTicks = false;
            this.requirementGague1.Location = new System.Drawing.Point(89, 19);
            this.requirementGague1.MaxReqValue = 0;
            this.requirementGague1.MinimumSize = new System.Drawing.Size(0, 20);
            this.requirementGague1.MinReqValue = 0;
            this.requirementGague1.Name = "requirementGague1";
            this.requirementGague1.ShowValues = false;
            this.requirementGague1.Size = new System.Drawing.Size(114, 22);
            this.requirementGague1.TabIndex = 14;
            // 
            // uiGroupBox3
            // 
            this.uiGroupBox3.BackColor = System.Drawing.Color.Transparent;
            this.uiGroupBox3.Controls.Add(this.panel2);
            this.uiGroupBox3.Location = new System.Drawing.Point(218, 101);
            this.uiGroupBox3.Name = "uiGroupBox3";
            this.uiGroupBox3.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiGroupBox3.Size = new System.Drawing.Size(415, 350);
            this.uiGroupBox3.TabIndex = 8;
            this.uiGroupBox3.Text = "Settings";
            this.uiGroupBox3.VisualStyleManager = this.visualStyleManager1;
            // 
            // label22
            // 
            this.label22.BackColor = System.Drawing.Color.Transparent;
            this.label22.ForeColor = System.Drawing.Color.DimGray;
            this.label22.Location = new System.Drawing.Point(3, 454);
            this.label22.Name = "label22";
            this.label22.Size = new System.Drawing.Size(628, 16);
            this.label22.TabIndex = 7;
            this.label22.Text = "Schemes define how molecules are represented";
            // 
            // uiTabPage2
            // 
            this.uiTabPage2.Controls.Add(this.uiGroupBox14);
            this.uiTabPage2.Controls.Add(this.uiGroupBox13);
            this.uiTabPage2.Controls.Add(this.label18);
            this.uiTabPage2.Controls.Add(this.uiGroupBox2);
            this.uiTabPage2.Controls.Add(this.uiRemoveEffectBtn);
            this.uiTabPage2.Controls.Add(this.uiAddEffectBtn);
            this.uiTabPage2.Controls.Add(this.uiCheckBox1);
            this.uiTabPage2.Controls.Add(this.uiEffectPropGroup);
            this.uiTabPage2.Controls.Add(this.label17);
            this.uiTabPage2.Controls.Add(this.uiEffectsReqList);
            this.uiTabPage2.Controls.Add(this.uiCurrentEffectsList);
            this.uiTabPage2.Controls.Add(this.label16);
            this.uiTabPage2.Controls.Add(this.uiEffectsList);
            this.uiTabPage2.Location = new System.Drawing.Point(1, 1);
            this.uiTabPage2.Name = "uiTabPage2";
            this.uiTabPage2.Size = new System.Drawing.Size(636, 470);
            this.uiTabPage2.TabStop = true;
            this.uiTabPage2.Text = "Effects";
            // 
            // uiGroupBox14
            // 
            this.uiGroupBox14.BackColor = System.Drawing.Color.Transparent;
            this.uiGroupBox14.Controls.Add(this.uiEfxPSReqs);
            this.uiGroupBox14.Controls.Add(this.label14);
            this.uiGroupBox14.Controls.Add(this.label15);
            this.uiGroupBox14.Controls.Add(this.label12);
            this.uiGroupBox14.Controls.Add(this.uiEfxVSReqs);
            this.uiGroupBox14.Location = new System.Drawing.Point(3, 305);
            this.uiGroupBox14.Name = "uiGroupBox14";
            this.uiGroupBox14.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiGroupBox14.Size = new System.Drawing.Size(209, 146);
            this.uiGroupBox14.TabIndex = 25;
            this.uiGroupBox14.Text = "Requirements of Selected";
            this.uiGroupBox14.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiEfxPSReqs
            // 
            this.uiEfxPSReqs.ActualValue = 0;
            this.uiEfxPSReqs.DrawTicks = false;
            this.uiEfxPSReqs.Location = new System.Drawing.Point(89, 41);
            this.uiEfxPSReqs.MaxReqValue = 0;
            this.uiEfxPSReqs.MinimumSize = new System.Drawing.Size(0, 20);
            this.uiEfxPSReqs.MinReqValue = 0;
            this.uiEfxPSReqs.Name = "uiEfxPSReqs";
            this.uiEfxPSReqs.ShowValues = false;
            this.uiEfxPSReqs.Size = new System.Drawing.Size(114, 22);
            this.uiEfxPSReqs.TabIndex = 15;
            // 
            // label14
            // 
            this.label14.AutoSize = true;
            this.label14.Location = new System.Drawing.Point(6, 28);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(81, 13);
            this.label14.TabIndex = 4;
            this.label14.Text = "Vertex Shader:";
            // 
            // label15
            // 
            this.label15.AutoSize = true;
            this.label15.Location = new System.Drawing.Point(6, 50);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(72, 13);
            this.label15.TabIndex = 4;
            this.label15.Text = "Pixel Shader:";
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.Location = new System.Drawing.Point(6, 73);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(40, 13);
            this.label12.TabIndex = 4;
            this.label12.Text = "Other:";
            // 
            // uiEfxVSReqs
            // 
            this.uiEfxVSReqs.ActualValue = 0;
            this.uiEfxVSReqs.DrawTicks = false;
            this.uiEfxVSReqs.Location = new System.Drawing.Point(89, 19);
            this.uiEfxVSReqs.MaxReqValue = 0;
            this.uiEfxVSReqs.MinimumSize = new System.Drawing.Size(0, 20);
            this.uiEfxVSReqs.MinReqValue = 0;
            this.uiEfxVSReqs.Name = "uiEfxVSReqs";
            this.uiEfxVSReqs.ShowValues = false;
            this.uiEfxVSReqs.Size = new System.Drawing.Size(114, 22);
            this.uiEfxVSReqs.TabIndex = 14;
            // 
            // uiGroupBox13
            // 
            this.uiGroupBox13.Controls.Add(this.effectPreviewControl1);
            this.uiGroupBox13.Location = new System.Drawing.Point(3, 90);
            this.uiGroupBox13.Name = "uiGroupBox13";
            this.uiGroupBox13.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiGroupBox13.Size = new System.Drawing.Size(209, 213);
            this.uiGroupBox13.TabIndex = 24;
            this.uiGroupBox13.Text = "Preview";
            this.uiGroupBox13.VisualStyleManager = this.visualStyleManager1;
            // 
            // effectPreviewControl1
            // 
            this.effectPreviewControl1.Location = new System.Drawing.Point(7, 19);
            this.effectPreviewControl1.Name = "effectPreviewControl1";
            this.effectPreviewControl1.OutSettings = null;
            this.effectPreviewControl1.Size = new System.Drawing.Size(195, 188);
            this.effectPreviewControl1.TabIndex = 0;
            // 
            // label18
            // 
            this.label18.BackColor = System.Drawing.Color.Transparent;
            this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label18.Location = new System.Drawing.Point(295, 177);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(335, 19);
            this.label18.TabIndex = 23;
            this.label18.TextAlign = System.Drawing.ContentAlignment.TopRight;
            // 
            // uiGroupBox2
            // 
            this.uiGroupBox2.BackColor = System.Drawing.Color.Transparent;
            this.uiGroupBox2.Controls.Add(this.pictureBox8);
            this.uiGroupBox2.Location = new System.Drawing.Point(218, 192);
            this.uiGroupBox2.Name = "uiGroupBox2";
            this.uiGroupBox2.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiGroupBox2.Size = new System.Drawing.Size(412, 60);
            this.uiGroupBox2.TabIndex = 22;
            this.uiGroupBox2.Text = "Compatibility";
            this.uiGroupBox2.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2007;
            this.uiGroupBox2.VisualStyleManager = this.visualStyleManager1;
            // 
            // pictureBox8
            // 
            this.pictureBox8.Location = new System.Drawing.Point(6, 18);
            this.pictureBox8.Name = "pictureBox8";
            this.pictureBox8.Size = new System.Drawing.Size(32, 32);
            this.pictureBox8.TabIndex = 0;
            this.pictureBox8.TabStop = false;
            // 
            // uiRemoveEffectBtn
            // 
            this.uiRemoveEffectBtn.Location = new System.Drawing.Point(517, 428);
            this.uiRemoveEffectBtn.Name = "uiRemoveEffectBtn";
            this.uiRemoveEffectBtn.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiRemoveEffectBtn.Size = new System.Drawing.Size(101, 23);
            this.uiRemoveEffectBtn.TabIndex = 21;
            this.uiRemoveEffectBtn.Text = "Remove Effect";
            this.uiRemoveEffectBtn.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
            this.uiRemoveEffectBtn.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiAddEffectBtn
            // 
            this.uiAddEffectBtn.Location = new System.Drawing.Point(410, 428);
            this.uiAddEffectBtn.Name = "uiAddEffectBtn";
            this.uiAddEffectBtn.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiAddEffectBtn.Size = new System.Drawing.Size(101, 23);
            this.uiAddEffectBtn.TabIndex = 20;
            this.uiAddEffectBtn.Text = "Add Effect";
            this.uiAddEffectBtn.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
            this.uiAddEffectBtn.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiCheckBox1
            // 
            this.uiCheckBox1.Appearance = System.Windows.Forms.Appearance.Button;
            this.uiCheckBox1.Location = new System.Drawing.Point(218, 428);
            this.uiCheckBox1.Name = "uiCheckBox1";
            this.uiCheckBox1.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiCheckBox1.Size = new System.Drawing.Size(98, 23);
            this.uiCheckBox1.TabIndex = 19;
            this.uiCheckBox1.Text = "Preview Result";
            this.uiCheckBox1.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
            this.uiCheckBox1.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
            this.uiCheckBox1.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiEffectPropGroup
            // 
            this.uiEffectPropGroup.BackColor = System.Drawing.Color.Transparent;
            this.uiEffectPropGroup.Controls.Add(this.panel4);
            this.uiEffectPropGroup.Enabled = false;
            this.uiEffectPropGroup.Location = new System.Drawing.Point(218, 252);
            this.uiEffectPropGroup.Name = "uiEffectPropGroup";
            this.uiEffectPropGroup.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiEffectPropGroup.Size = new System.Drawing.Size(412, 170);
            this.uiEffectPropGroup.TabIndex = 18;
            this.uiEffectPropGroup.Text = "Properties";
            this.uiEffectPropGroup.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2007;
            this.uiEffectPropGroup.VisualStyleManager = this.visualStyleManager1;
            // 
            // panel4
            // 
            this.panel4.AutoScroll = true;
            this.panel4.Controls.Add(this.uiEffectLOD);
            this.panel4.Location = new System.Drawing.Point(6, 19);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(394, 145);
            this.panel4.TabIndex = 0;
            // 
            // uiEffectLOD
            // 
            this.uiEffectLOD.BackColor = System.Drawing.Color.GhostWhite;
            this.uiEffectLOD.Dock = System.Windows.Forms.DockStyle.Top;
            this.uiEffectLOD.Location = new System.Drawing.Point(0, 0);
            this.uiEffectLOD.MaximumSize = new System.Drawing.Size(0, 29);
            this.uiEffectLOD.MinimumSize = new System.Drawing.Size(246, 29);
            this.uiEffectLOD.Name = "uiEffectLOD";
            this.uiEffectLOD.Size = new System.Drawing.Size(394, 29);
            this.uiEffectLOD.TabIndex = 0;
            // 
            // label17
            // 
            this.label17.BackColor = System.Drawing.Color.Transparent;
            this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label17.Location = new System.Drawing.Point(443, 94);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(15, 80);
            this.label17.TabIndex = 16;
            this.label17.Text = "+";
            this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // uiEffectsReqList
            // 
            this.uiEffectsReqList.BackColor = System.Drawing.Color.White;
            buttonBarGroup3.Key = "Group1";
            buttonBarGroup3.Text = "Required";
            buttonBarGroup3.View = Janus.Windows.ButtonBar.ButtonBarView.SmallIcons;
            this.uiEffectsReqList.Groups.AddRange(new Janus.Windows.ButtonBar.ButtonBarGroup[] {
            buttonBarGroup3});
            this.uiEffectsReqList.ItemAppearance = Janus.Windows.ButtonBar.ItemAppearance.Flat;
            this.uiEffectsReqList.Location = new System.Drawing.Point(458, 94);
            this.uiEffectsReqList.Name = "uiEffectsReqList";
            this.uiEffectsReqList.Office2007ColorScheme = Janus.Windows.ButtonBar.Office2007ColorScheme.Black;
            this.uiEffectsReqList.Orientation = Janus.Windows.ButtonBar.ButtonBarOrientation.Horizontal;
            this.uiEffectsReqList.SelectionArea = Janus.Windows.ButtonBar.SelectionArea.FullItem;
            this.uiEffectsReqList.ShadowOnHover = true;
            this.uiEffectsReqList.Size = new System.Drawing.Size(172, 80);
            this.uiEffectsReqList.TabIndex = 15;
            this.uiEffectsReqList.Text = "buttonBar5";
            this.uiEffectsReqList.ThemedAreas = ((Janus.Windows.ButtonBar.ThemedArea)((((Janus.Windows.ButtonBar.ThemedArea.Border | Janus.Windows.ButtonBar.ThemedArea.Groups)
                        | Janus.Windows.ButtonBar.ThemedArea.Items)
                        | Janus.Windows.ButtonBar.ThemedArea.ScrollButton)));
            this.uiEffectsReqList.VisualStyle = Janus.Windows.ButtonBar.VisualStyle.Office2007;
            // 
            // uiCurrentEffectsList
            // 
            this.uiCurrentEffectsList.BackColor = System.Drawing.Color.White;
            buttonBarGroup4.Key = "Group1";
            buttonBarGroup4.Text = "Current";
            buttonBarGroup4.View = Janus.Windows.ButtonBar.ButtonBarView.SmallIcons;
            this.uiCurrentEffectsList.Groups.AddRange(new Janus.Windows.ButtonBar.ButtonBarGroup[] {
            buttonBarGroup4});
            this.uiCurrentEffectsList.ItemAppearance = Janus.Windows.ButtonBar.ItemAppearance.Flat;
            this.uiCurrentEffectsList.Location = new System.Drawing.Point(218, 94);
            this.uiCurrentEffectsList.Name = "uiCurrentEffectsList";
            this.uiCurrentEffectsList.Office2007ColorScheme = Janus.Windows.ButtonBar.Office2007ColorScheme.Black;
            this.uiCurrentEffectsList.Orientation = Janus.Windows.ButtonBar.ButtonBarOrientation.Horizontal;
            this.uiCurrentEffectsList.SelectionArea = Janus.Windows.ButtonBar.SelectionArea.FullItem;
            this.uiCurrentEffectsList.ShadowOnHover = true;
            this.uiCurrentEffectsList.Size = new System.Drawing.Size(225, 80);
            this.uiCurrentEffectsList.TabIndex = 14;
            this.uiCurrentEffectsList.Text = "buttonBar4";
            this.uiCurrentEffectsList.ThemedAreas = ((Janus.Windows.ButtonBar.ThemedArea)((((Janus.Windows.ButtonBar.ThemedArea.Border | Janus.Windows.ButtonBar.ThemedArea.Groups)
                        | Janus.Windows.ButtonBar.ThemedArea.Items)
                        | Janus.Windows.ButtonBar.ThemedArea.ScrollButton)));
            this.uiCurrentEffectsList.VisualStyle = Janus.Windows.ButtonBar.VisualStyle.Office2007;
            this.uiCurrentEffectsList.ItemSelected += new System.EventHandler(this.uiCurrentEffectsList_ItemSelected);
            // 
            // label16
            // 
            this.label16.BackColor = System.Drawing.Color.Transparent;
            this.label16.ForeColor = System.Drawing.Color.DimGray;
            this.label16.Location = new System.Drawing.Point(3, 454);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(628, 16);
            this.label16.TabIndex = 12;
            this.label16.Text = "Effects define how the scene is shaded";
            // 
            // uiEffectsList
            // 
            this.uiEffectsList.BackColor = System.Drawing.Color.White;
            this.uiEffectsList.ContextMenuStrip = this.effectsListMenuStrip;
            buttonBarGroup5.Key = "Group1";
            buttonBarGroup5.Text = "Effects";
            buttonBarGroup5.View = Janus.Windows.ButtonBar.ButtonBarView.SmallIcons;
            buttonBarGroup6.Key = "Group2";
            buttonBarGroup6.Text = "Presets";
            buttonBarGroup6.View = Janus.Windows.ButtonBar.ButtonBarView.SmallIcons;
            buttonBarGroup7.Key = "Group3";
            buttonBarGroup7.Text = "Custom";
            buttonBarGroup7.View = Janus.Windows.ButtonBar.ButtonBarView.SmallIcons;
            this.uiEffectsList.Groups.AddRange(new Janus.Windows.ButtonBar.ButtonBarGroup[] {
            buttonBarGroup5,
            buttonBarGroup6,
            buttonBarGroup7});
            this.uiEffectsList.ItemAppearance = Janus.Windows.ButtonBar.ItemAppearance.Flat;
            this.uiEffectsList.Location = new System.Drawing.Point(3, 4);
            this.uiEffectsList.Name = "uiEffectsList";
            this.uiEffectsList.Office2007ColorScheme = Janus.Windows.ButtonBar.Office2007ColorScheme.Black;
            this.uiEffectsList.Orientation = Janus.Windows.ButtonBar.ButtonBarOrientation.Horizontal;
            this.uiEffectsList.SelectionArea = Janus.Windows.ButtonBar.SelectionArea.FullItem;
            this.uiEffectsList.ShadowOnHover = true;
            this.uiEffectsList.Size = new System.Drawing.Size(628, 80);
            this.uiEffectsList.TabIndex = 1;
            this.uiEffectsList.ThemedAreas = ((Janus.Windows.ButtonBar.ThemedArea)((((Janus.Windows.ButtonBar.ThemedArea.Border | Janus.Windows.ButtonBar.ThemedArea.Groups)
                        | Janus.Windows.ButtonBar.ThemedArea.Items)
                        | Janus.Windows.ButtonBar.ThemedArea.ScrollButton)));
            this.uiEffectsList.VisualStyle = Janus.Windows.ButtonBar.VisualStyle.Office2007;
            this.uiEffectsList.ItemSelected += new System.EventHandler(this.uiEffectsList_ItemSelected);
            // 
            // effectsListMenuStrip
            // 
            this.effectsListMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.addToolStripMenuItem,
            this.toolStripSeparator1,
            this.detailsToolStripMenuItem});
            this.effectsListMenuStrip.Name = "effectsListMenuStrip";
            this.effectsListMenuStrip.Size = new System.Drawing.Size(110, 54);
            this.effectsListMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.effectsListMenuStrip_Opening);
            // 
            // addToolStripMenuItem
            // 
            this.addToolStripMenuItem.Name = "addToolStripMenuItem";
            this.addToolStripMenuItem.Size = new System.Drawing.Size(109, 22);
            this.addToolStripMenuItem.Text = "Add";
            this.addToolStripMenuItem.Click += new System.EventHandler(this.addToolStripMenuItem_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(106, 6);
            // 
            // detailsToolStripMenuItem
            // 
            this.detailsToolStripMenuItem.Name = "detailsToolStripMenuItem";
            this.detailsToolStripMenuItem.Size = new System.Drawing.Size(109, 22);
            this.detailsToolStripMenuItem.Text = "Details";
            this.detailsToolStripMenuItem.Click += new System.EventHandler(this.detailsToolStripMenuItem_Click);
            // 
            // uiTabPage3
            // 
            this.uiTabPage3.Controls.Add(this.uiGroupBox11);
            this.uiTabPage3.Controls.Add(this.uiLightingPropGroup);
            this.uiTabPage3.Controls.Add(this.uiGroupBox9);
            this.uiTabPage3.Controls.Add(this.lightingSchemeLabel);
            this.uiTabPage3.Controls.Add(this.label4);
            this.uiTabPage3.Controls.Add(this.uiButton2);
            this.uiTabPage3.Controls.Add(this.uiButton1);
            this.uiTabPage3.Controls.Add(this.uiLightingList);
            this.uiTabPage3.Controls.Add(this.uiGroupBox1);
            this.uiTabPage3.Location = new System.Drawing.Point(1, 1);
            this.uiTabPage3.Name = "uiTabPage3";
            this.uiTabPage3.Size = new System.Drawing.Size(636, 470);
            this.uiTabPage3.TabStop = true;
            this.uiTabPage3.Text = "Lighting";
            // 
            // uiGroupBox11
            // 
            this.uiGroupBox11.BackColor = System.Drawing.Color.Transparent;
            this.uiGroupBox11.Controls.Add(this.lightsListBox);
            this.uiGroupBox11.Location = new System.Drawing.Point(309, 103);
            this.uiGroupBox11.Name = "uiGroupBox11";
            this.uiGroupBox11.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiGroupBox11.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0);
            this.uiGroupBox11.Size = new System.Drawing.Size(319, 103);
            this.uiGroupBox11.TabIndex = 22;
            this.uiGroupBox11.Text = "Lights";
            this.uiGroupBox11.VisualStyleManager = this.visualStyleManager1;
            // 
            // lightsListBox
            // 
            this.lightsListBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.lightsListBox.FormattingEnabled = true;
            this.lightsListBox.Location = new System.Drawing.Point(6, 18);
            this.lightsListBox.Name = "lightsListBox";
            this.lightsListBox.Size = new System.Drawing.Size(307, 82);
            this.lightsListBox.TabIndex = 0;
            this.lightsListBox.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
            // 
            // uiLightingPropGroup
            // 
            this.uiLightingPropGroup.BackColor = System.Drawing.Color.Transparent;
            this.uiLightingPropGroup.Controls.Add(this.uiLightCastShadows);
            this.uiLightingPropGroup.Controls.Add(this.uiLightEnabled);
            this.uiLightingPropGroup.Controls.Add(this.uiLightingPropPanel);
            this.uiLightingPropGroup.Controls.Add(this.label25);
            this.uiLightingPropGroup.Controls.Add(this.uiColorButton1);
            this.uiLightingPropGroup.Location = new System.Drawing.Point(309, 212);
            this.uiLightingPropGroup.Name = "uiLightingPropGroup";
            this.uiLightingPropGroup.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiLightingPropGroup.Size = new System.Drawing.Size(318, 177);
            this.uiLightingPropGroup.TabIndex = 21;
            this.uiLightingPropGroup.Text = "Properties";
            this.uiLightingPropGroup.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiLightCastShadows
            // 
            this.uiLightCastShadows.Location = new System.Drawing.Point(21, 43);
            this.uiLightCastShadows.Name = "uiLightCastShadows";
            this.uiLightCastShadows.Size = new System.Drawing.Size(104, 23);
            this.uiLightCastShadows.TabIndex = 10;
            this.uiLightCastShadows.Text = "Cast Shadows";
            this.uiLightCastShadows.CheckedChanged += new System.EventHandler(this.uiLightCastShadows_CheckedChanged);
            // 
            // uiLightEnabled
            // 
            this.uiLightEnabled.Location = new System.Drawing.Point(21, 22);
            this.uiLightEnabled.Name = "uiLightEnabled";
            this.uiLightEnabled.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiLightEnabled.Size = new System.Drawing.Size(61, 23);
            this.uiLightEnabled.TabIndex = 9;
            this.uiLightEnabled.Text = "Enabled";
            this.uiLightEnabled.VisualStyleManager = this.visualStyleManager1;
            this.uiLightEnabled.CheckedChanged += new System.EventHandler(this.uiLightEnabled_CheckedChanged);
            // 
            // uiLightingPropPanel
            // 
            this.uiLightingPropPanel.Location = new System.Drawing.Point(6, 72);
            this.uiLightingPropPanel.Name = "uiLightingPropPanel";
            this.uiLightingPropPanel.Size = new System.Drawing.Size(306, 99);
            this.uiLightingPropPanel.TabIndex = 8;
            // 
            // label25
            // 
            this.label25.AutoSize = true;
            this.label25.Location = new System.Drawing.Point(137, 27);
            this.label25.Name = "label25";
            this.label25.Size = new System.Drawing.Size(38, 13);
            this.label25.TabIndex = 5;
            this.label25.Text = "Color:";
            // 
            // uiColorButton1
            // 
            // 
            // 
            // 
            this.uiColorButton1.ColorPicker.BorderStyle = Janus.Windows.UI.BorderStyle.None;
            this.uiColorButton1.ColorPicker.Location = new System.Drawing.Point(0, 0);
            this.uiColorButton1.ColorPicker.Name = "";
            this.uiColorButton1.ColorPicker.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiColorButton1.ColorPicker.Size = new System.Drawing.Size(100, 100);
            this.uiColorButton1.ColorPicker.TabIndex = 0;
            this.uiColorButton1.ColorPicker.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
            this.uiColorButton1.ColorPicker.VisualStyleManager = this.visualStyleManager1;
            this.uiColorButton1.Location = new System.Drawing.Point(181, 22);
            this.uiColorButton1.Name = "uiColorButton1";
            this.uiColorButton1.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiColorButton1.Size = new System.Drawing.Size(107, 23);
            this.uiColorButton1.TabIndex = 6;
            this.uiColorButton1.Text = "uiColorButton1";
            this.uiColorButton1.VisualStyleManager = this.visualStyleManager1;
            this.uiColorButton1.SelectedColorChanged += new System.EventHandler(this.uiColorButton1_SelectedColorChanged);
            // 
            // uiGroupBox9
            // 
            this.uiGroupBox9.BackColor = System.Drawing.Color.Transparent;
            this.uiGroupBox9.Controls.Add(this.lightPreviewControl2);
            this.uiGroupBox9.Location = new System.Drawing.Point(3, 90);
            this.uiGroupBox9.Name = "uiGroupBox9";
            this.uiGroupBox9.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiGroupBox9.Size = new System.Drawing.Size(300, 315);
            this.uiGroupBox9.TabIndex = 20;
            this.uiGroupBox9.Text = "Preview";
            this.uiGroupBox9.VisualStyleManager = this.visualStyleManager1;
            // 
            // lightPreviewControl2
            // 
            this.lightPreviewControl2.BackColor = System.Drawing.SystemColors.Control;
            this.lightPreviewControl2.Lighting = null;
            this.lightPreviewControl2.Location = new System.Drawing.Point(7, 16);
            this.lightPreviewControl2.Name = "lightPreviewControl2";
            this.lightPreviewControl2.OutSettings = null;
            this.lightPreviewControl2.Size = new System.Drawing.Size(287, 290);
            this.lightPreviewControl2.TabIndex = 0;
            // 
            // lightingSchemeLabel
            // 
            this.lightingSchemeLabel.BackColor = System.Drawing.Color.Transparent;
            this.lightingSchemeLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lightingSchemeLabel.Location = new System.Drawing.Point(353, 87);
            this.lightingSchemeLabel.Name = "lightingSchemeLabel";
            this.lightingSchemeLabel.Size = new System.Drawing.Size(278, 19);
            this.lightingSchemeLabel.TabIndex = 19;
            this.lightingSchemeLabel.TextAlign = System.Drawing.ContentAlignment.TopRight;
            // 
            // label4
            // 
            this.label4.BackColor = System.Drawing.Color.Transparent;
            this.label4.ForeColor = System.Drawing.Color.DimGray;
            this.label4.Location = new System.Drawing.Point(0, 454);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(628, 16);
            this.label4.TabIndex = 18;
            this.label4.Text = "Lighting provides scene light information for the scheme and effects to use in sh" +
                "ading.";
            // 
            // uiButton2
            // 
            this.uiButton2.Location = new System.Drawing.Point(85, 411);
            this.uiButton2.Name = "uiButton2";
            this.uiButton2.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiButton2.Size = new System.Drawing.Size(75, 23);
            this.uiButton2.TabIndex = 17;
            this.uiButton2.Text = "Remove";
            this.uiButton2.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
            this.uiButton2.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiButton1
            // 
            this.uiButton1.Location = new System.Drawing.Point(4, 411);
            this.uiButton1.Name = "uiButton1";
            this.uiButton1.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiButton1.Size = new System.Drawing.Size(75, 23);
            this.uiButton1.TabIndex = 14;
            this.uiButton1.Text = "Add";
            this.uiButton1.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
            this.uiButton1.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiLightingList
            // 
            this.uiLightingList.BackColor = System.Drawing.Color.White;
            buttonBarGroup8.Key = "Group1";
            buttonBarGroup8.Text = "Presets";
            buttonBarGroup8.View = Janus.Windows.ButtonBar.ButtonBarView.SmallIcons;
            this.uiLightingList.Groups.AddRange(new Janus.Windows.ButtonBar.ButtonBarGroup[] {
            buttonBarGroup8});
            this.uiLightingList.ItemAppearance = Janus.Windows.ButtonBar.ItemAppearance.Flat;
            this.uiLightingList.Location = new System.Drawing.Point(3, 4);
            this.uiLightingList.Name = "uiLightingList";
            this.uiLightingList.Office2007ColorScheme = Janus.Windows.ButtonBar.Office2007ColorScheme.Black;
            this.uiLightingList.Orientation = Janus.Windows.ButtonBar.ButtonBarOrientation.Horizontal;
            this.uiLightingList.SelectionArea = Janus.Windows.ButtonBar.SelectionArea.FullItem;
            this.uiLightingList.ShadowOnHover = true;
            this.uiLightingList.Size = new System.Drawing.Size(628, 80);
            this.uiLightingList.TabIndex = 13;
            this.uiLightingList.Text = "buttonBar3";
            this.uiLightingList.ThemedAreas = ((Janus.Windows.ButtonBar.ThemedArea)((((Janus.Windows.ButtonBar.ThemedArea.Border | Janus.Windows.ButtonBar.ThemedArea.Groups)
                        | Janus.Windows.ButtonBar.ThemedArea.Items)
                        | Janus.Windows.ButtonBar.ThemedArea.ScrollButton)));
            this.uiLightingList.VisualStyle = Janus.Windows.ButtonBar.VisualStyle.Office2007;
            this.uiLightingList.ItemSelected += new System.EventHandler(this.uiLightingList_ItemSelected);
            // 
            // uiGroupBox1
            // 
            this.uiGroupBox1.BackColor = System.Drawing.Color.Transparent;
            this.uiGroupBox1.Controls.Add(this.label28);
            this.uiGroupBox1.Controls.Add(this.uiColorButton2);
            this.uiGroupBox1.Location = new System.Drawing.Point(309, 395);
            this.uiGroupBox1.Name = "uiGroupBox1";
            this.uiGroupBox1.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiGroupBox1.Size = new System.Drawing.Size(319, 50);
            this.uiGroupBox1.TabIndex = 23;
            this.uiGroupBox1.Text = "Ambient";
            this.uiGroupBox1.VisualStyleManager = this.visualStyleManager1;
            // 
            // label28
            // 
            this.label28.AutoSize = true;
            this.label28.Location = new System.Drawing.Point(18, 21);
            this.label28.Name = "label28";
            this.label28.Size = new System.Drawing.Size(45, 13);
            this.label28.TabIndex = 1;
            this.label28.Text = "Colour:";
            // 
            // uiColorButton2
            // 
            // 
            // 
            // 
            this.uiColorButton2.ColorPicker.BorderStyle = Janus.Windows.UI.BorderStyle.None;
            this.uiColorButton2.ColorPicker.Location = new System.Drawing.Point(0, 0);
            this.uiColorButton2.ColorPicker.Name = "";
            this.uiColorButton2.ColorPicker.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiColorButton2.ColorPicker.Size = new System.Drawing.Size(100, 100);
            this.uiColorButton2.ColorPicker.TabIndex = 0;
            this.uiColorButton2.ColorPicker.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
            this.uiColorButton2.ColorPicker.VisualStyleManager = this.visualStyleManager1;
            this.uiColorButton2.Location = new System.Drawing.Point(80, 16);
            this.uiColorButton2.Name = "uiColorButton2";
            this.uiColorButton2.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiColorButton2.Size = new System.Drawing.Size(99, 23);
            this.uiColorButton2.TabIndex = 0;
            this.uiColorButton2.Text = "uiColorButton2";
            this.uiColorButton2.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiTabPage4
            // 
            this.uiTabPage4.Controls.Add(this.uiGroupBox12);
            this.uiTabPage4.Controls.Add(this.groupBox13);
            this.uiTabPage4.Location = new System.Drawing.Point(1, 1);
            this.uiTabPage4.Name = "uiTabPage4";
            this.uiTabPage4.Size = new System.Drawing.Size(636, 470);
            this.uiTabPage4.TabStop = true;
            this.uiTabPage4.Text = "General";
            // 
            // uiGroupBox12
            // 
            this.uiGroupBox12.BackColor = System.Drawing.Color.Transparent;
            this.uiGroupBox12.Controls.Add(this.uiComboBox2);
            this.uiGroupBox12.Controls.Add(this.label5);
            this.uiGroupBox12.Controls.Add(this.numericUpDown1);
            this.uiGroupBox12.Controls.Add(this.uiComboBox1);
            this.uiGroupBox12.Controls.Add(this.label9);
            this.uiGroupBox12.Controls.Add(this.label6);
            this.uiGroupBox12.Location = new System.Drawing.Point(22, 19);
            this.uiGroupBox12.Name = "uiGroupBox12";
            this.uiGroupBox12.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiGroupBox12.Size = new System.Drawing.Size(340, 99);
            this.uiGroupBox12.TabIndex = 2;
            this.uiGroupBox12.Text = "View Settings";
            this.uiGroupBox12.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiComboBox2
            // 
            uiComboBoxItem10.FormatStyle.Alpha = 0;
            uiComboBoxItem10.IsSeparator = false;
            uiComboBoxItem10.Text = "x1";
            uiComboBoxItem10.Value = ((ushort)(10));
            uiComboBoxItem11.FormatStyle.Alpha = 0;
            uiComboBoxItem11.IsSeparator = false;
            uiComboBoxItem11.Text = "x1.5";
            uiComboBoxItem11.Value = ((ushort)(15));
            uiComboBoxItem12.FormatStyle.Alpha = 0;
            uiComboBoxItem12.IsSeparator = false;
            uiComboBoxItem12.Text = "x2";
            uiComboBoxItem12.Value = ((ushort)(20));
            uiComboBoxItem13.FormatStyle.Alpha = 0;
            uiComboBoxItem13.IsSeparator = false;
            uiComboBoxItem13.Text = "x4";
            uiComboBoxItem13.Value = ((ushort)(40));
            this.uiComboBox2.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem10,
            uiComboBoxItem11,
            uiComboBoxItem12,
            uiComboBoxItem13});
            this.uiComboBox2.Location = new System.Drawing.Point(238, 53);
            this.uiComboBox2.Name = "uiComboBox2";
            this.uiComboBox2.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiComboBox2.Size = new System.Drawing.Size(84, 22);
            this.uiComboBox2.TabIndex = 5;
            this.uiComboBox2.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
            this.uiComboBox2.VisualStyleManager = this.visualStyleManager1;
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(6, 26);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(76, 13);
            this.label5.TabIndex = 0;
            this.label5.Text = "Anti-Aliasing:";
            // 
            // numericUpDown1
            // 
            this.numericUpDown1.Location = new System.Drawing.Point(87, 53);
            this.numericUpDown1.Maximum = new decimal(new int[] {
            140,
            0,
            0,
            0});
            this.numericUpDown1.Minimum = new decimal(new int[] {
            45,
            0,
            0,
            0});
            this.numericUpDown1.Name = "numericUpDown1";
            this.numericUpDown1.Size = new System.Drawing.Size(53, 22);
            this.numericUpDown1.TabIndex = 4;
            this.numericUpDown1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.numericUpDown1.Value = new decimal(new int[] {
            45,
            0,
            0,
            0});
            // 
            // uiComboBox1
            // 
            this.uiComboBox1.Location = new System.Drawing.Point(88, 21);
            this.uiComboBox1.Name = "uiComboBox1";
            this.uiComboBox1.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiComboBox1.Size = new System.Drawing.Size(164, 22);
            this.uiComboBox1.TabIndex = 1;
            this.uiComboBox1.Text = "uiComboBox1";
            this.uiComboBox1.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
            this.uiComboBox1.VisualStyleManager = this.visualStyleManager1;
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Location = new System.Drawing.Point(146, 55);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(86, 13);
            this.label9.TabIndex = 3;
            this.label9.Text = "Viewport Scale:";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(6, 55);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(79, 13);
            this.label6.TabIndex = 2;
            this.label6.Text = "Field-of-View:";
            // 
            // groupBox13
            // 
            this.groupBox13.BackColor = System.Drawing.Color.Transparent;
            this.groupBox13.Controls.Add(this.groupBox15);
            this.groupBox13.Controls.Add(this.radioButton2);
            this.groupBox13.Controls.Add(this.radioButton1);
            this.groupBox13.Location = new System.Drawing.Point(22, 156);
            this.groupBox13.Name = "groupBox13";
            this.groupBox13.Size = new System.Drawing.Size(340, 118);
            this.groupBox13.TabIndex = 0;
            this.groupBox13.TabStop = false;
            this.groupBox13.Text = "Shadows";
            // 
            // groupBox15
            // 
            this.groupBox15.Controls.Add(this.uiComboBox3);
            this.groupBox15.Controls.Add(this.label10);
            this.groupBox15.Location = new System.Drawing.Point(19, 55);
            this.groupBox15.Name = "groupBox15";
            this.groupBox15.Size = new System.Drawing.Size(315, 53);
            this.groupBox15.TabIndex = 2;
            this.groupBox15.TabStop = false;
            this.groupBox15.Text = "Shadow Map Settings";
            // 
            // uiComboBox3
            // 
            uiComboBoxItem14.FormatStyle.Alpha = 0;
            uiComboBoxItem14.IsSeparator = false;
            uiComboBoxItem14.Text = "128x128";
            uiComboBoxItem14.Value = ((uint)(128u));
            uiComboBoxItem15.FormatStyle.Alpha = 0;
            uiComboBoxItem15.IsSeparator = false;
            uiComboBoxItem15.Text = "256x256";
            uiComboBoxItem15.Value = ((uint)(256u));
            uiComboBoxItem16.FormatStyle.Alpha = 0;
            uiComboBoxItem16.IsSeparator = false;
            uiComboBoxItem16.Text = "512x512";
            uiComboBoxItem16.Value = ((uint)(512u));
            uiComboBoxItem17.FormatStyle.Alpha = 0;
            uiComboBoxItem17.IsSeparator = false;
            uiComboBoxItem17.Text = "1024x1024";
            uiComboBoxItem17.Value = ((uint)(1024u));
            this.uiComboBox3.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem14,
            uiComboBoxItem15,
            uiComboBoxItem16,
            uiComboBoxItem17});
            this.uiComboBox3.Location = new System.Drawing.Point(68, 26);
            this.uiComboBox3.Name = "uiComboBox3";
            this.uiComboBox3.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiComboBox3.Size = new System.Drawing.Size(127, 22);
            this.uiComboBox3.TabIndex = 1;
            this.uiComboBox3.VisualStyleManager = this.visualStyleManager1;
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.Location = new System.Drawing.Point(15, 26);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(30, 13);
            this.label10.TabIndex = 0;
            this.label10.Text = "Size:";
            // 
            // radioButton2
            // 
            this.radioButton2.AutoSize = true;
            this.radioButton2.Location = new System.Drawing.Point(102, 32);
            this.radioButton2.Name = "radioButton2";
            this.radioButton2.Size = new System.Drawing.Size(117, 17);
            this.radioButton2.TabIndex = 1;
            this.radioButton2.TabStop = true;
            this.radioButton2.Text = "Shadow Mapping";
            this.radioButton2.UseVisualStyleBackColor = true;
            // 
            // radioButton1
            // 
            this.radioButton1.AutoSize = true;
            this.radioButton1.Location = new System.Drawing.Point(19, 32);
            this.radioButton1.Name = "radioButton1";
            this.radioButton1.Size = new System.Drawing.Size(53, 17);
            this.radioButton1.TabIndex = 0;
            this.radioButton1.TabStop = true;
            this.radioButton1.Text = "None";
            this.radioButton1.UseVisualStyleBackColor = true;
            // 
            // uiTabPage5
            // 
            this.uiTabPage5.Controls.Add(this.uiShadingElementList);
            this.uiTabPage5.Controls.Add(this.uiShadingSeriesGroup);
            this.uiTabPage5.Controls.Add(this.label27);
            this.uiTabPage5.Controls.Add(this.uiShadingSeriesList);
            this.uiTabPage5.Controls.Add(this.uiShadingElementsGroup);
            this.uiTabPage5.Controls.Add(this.label21);
            this.uiTabPage5.Controls.Add(this.uiElementShadingList);
            this.uiTabPage5.Controls.Add(this.panel1);
            this.uiTabPage5.Controls.Add(this.label26);
            this.uiTabPage5.Location = new System.Drawing.Point(1, 1);
            this.uiTabPage5.Name = "uiTabPage5";
            this.uiTabPage5.Size = new System.Drawing.Size(636, 470);
            this.uiTabPage5.TabStop = true;
            this.uiTabPage5.Text = "Elements Shading";
            // 
            // uiShadingElementList
            // 
            this.uiShadingElementList.FormattingEnabled = true;
            this.uiShadingElementList.Location = new System.Drawing.Point(140, 98);
            this.uiShadingElementList.Name = "uiShadingElementList";
            this.uiShadingElementList.Size = new System.Drawing.Size(116, 160);
            this.uiShadingElementList.TabIndex = 27;
            this.uiShadingElementList.SelectedIndexChanged += new System.EventHandler(this.uiShadingElementList_SelectedIndexChanged);
            // 
            // uiShadingSeriesGroup
            // 
            this.uiShadingSeriesGroup.BackColor = System.Drawing.Color.Transparent;
            this.uiShadingSeriesGroup.Controls.Add(this.uiCheckBox2);
            this.uiShadingSeriesGroup.Controls.Add(this.uiColorButton3);
            this.uiShadingSeriesGroup.Controls.Add(this.label29);
            this.uiShadingSeriesGroup.Enabled = false;
            this.uiShadingSeriesGroup.Location = new System.Drawing.Point(262, 94);
            this.uiShadingSeriesGroup.Name = "uiShadingSeriesGroup";
            this.uiShadingSeriesGroup.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiShadingSeriesGroup.Size = new System.Drawing.Size(163, 183);
            this.uiShadingSeriesGroup.TabIndex = 26;
            this.uiShadingSeriesGroup.Text = "Series Settings";
            this.uiShadingSeriesGroup.VisualStyleManager = this.visualStyleManager1;
            // 
            // label27
            // 
            this.label27.Location = new System.Drawing.Point(140, 259);
            this.label27.Name = "label27";
            this.label27.Size = new System.Drawing.Size(116, 13);
            this.label27.TabIndex = 25;
            this.label27.Text = "Element";
            // 
            // uiShadingSeriesList
            // 
            this.uiShadingSeriesList.Enabled = false;
            this.uiShadingSeriesList.FormattingEnabled = true;
            this.uiShadingSeriesList.Location = new System.Drawing.Point(7, 98);
            this.uiShadingSeriesList.Name = "uiShadingSeriesList";
            this.uiShadingSeriesList.Size = new System.Drawing.Size(127, 160);
            this.uiShadingSeriesList.TabIndex = 21;
            this.uiShadingSeriesList.SelectedIndexChanged += new System.EventHandler(this.uiShadingSeriesList_SelectedIndexChanged);
            // 
            // uiShadingElementsGroup
            // 
            this.uiShadingElementsGroup.BackColor = System.Drawing.Color.Transparent;
            this.uiShadingElementsGroup.Controls.Add(this.uiCheckBox3);
            this.uiShadingElementsGroup.Controls.Add(this.uiElementClrBtn);
            this.uiShadingElementsGroup.Controls.Add(this.label24);
            this.uiShadingElementsGroup.Enabled = false;
            this.uiShadingElementsGroup.Location = new System.Drawing.Point(431, 94);
            this.uiShadingElementsGroup.Name = "uiShadingElementsGroup";
            this.uiShadingElementsGroup.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiShadingElementsGroup.Size = new System.Drawing.Size(197, 183);
            this.uiShadingElementsGroup.TabIndex = 20;
            this.uiShadingElementsGroup.Text = "Element Settings";
            this.uiShadingElementsGroup.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiElementClrBtn
            // 
            // 
            // 
            // 
            this.uiElementClrBtn.ColorPicker.BorderStyle = Janus.Windows.UI.BorderStyle.None;
            this.uiElementClrBtn.ColorPicker.Location = new System.Drawing.Point(0, 0);
            this.uiElementClrBtn.ColorPicker.Name = "";
            this.uiElementClrBtn.ColorPicker.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiElementClrBtn.ColorPicker.Size = new System.Drawing.Size(100, 100);
            this.uiElementClrBtn.ColorPicker.TabIndex = 0;
            this.uiElementClrBtn.ColorPicker.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
            this.uiElementClrBtn.ColorPicker.VisualStyleManager = this.visualStyleManager1;
            this.uiElementClrBtn.Location = new System.Drawing.Point(53, 16);
            this.uiElementClrBtn.Name = "uiElementClrBtn";
            this.uiElementClrBtn.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiElementClrBtn.Size = new System.Drawing.Size(127, 23);
            this.uiElementClrBtn.TabIndex = 2;
            this.uiElementClrBtn.VisualStyleManager = this.visualStyleManager1;
            // 
            // label24
            // 
            this.label24.AutoSize = true;
            this.label24.Location = new System.Drawing.Point(6, 21);
            this.label24.Name = "label24";
            this.label24.Size = new System.Drawing.Size(41, 13);
            this.label24.TabIndex = 1;
            this.label24.Text = "Color :";
            // 
            // label21
            // 
            this.label21.BackColor = System.Drawing.Color.Transparent;
            this.label21.ForeColor = System.Drawing.Color.DimGray;
            this.label21.Location = new System.Drawing.Point(0, 454);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(628, 16);
            this.label21.TabIndex = 19;
            this.label21.Text = "Determines how each element is coloured";
            // 
            // uiElementShadingList
            // 
            this.uiElementShadingList.BackColor = System.Drawing.Color.White;
            buttonBarGroup9.Key = "Group1";
            buttonBarGroup9.Text = "Presets";
            buttonBarGroup9.View = Janus.Windows.ButtonBar.ButtonBarView.SmallIcons;
            buttonBarGroup10.Key = "Group2";
            buttonBarGroup10.Text = "Templates";
            buttonBarGroup10.View = Janus.Windows.ButtonBar.ButtonBarView.SmallIcons;
            this.uiElementShadingList.Groups.AddRange(new Janus.Windows.ButtonBar.ButtonBarGroup[] {
            buttonBarGroup9,
            buttonBarGroup10});
            this.uiElementShadingList.ItemAppearance = Janus.Windows.ButtonBar.ItemAppearance.Flat;
            this.uiElementShadingList.Location = new System.Drawing.Point(3, 3);
            this.uiElementShadingList.Name = "uiElementShadingList";
            this.uiElementShadingList.Office2007ColorScheme = Janus.Windows.ButtonBar.Office2007ColorScheme.Black;
            this.uiElementShadingList.Orientation = Janus.Windows.ButtonBar.ButtonBarOrientation.Horizontal;
            this.uiElementShadingList.SelectionArea = Janus.Windows.ButtonBar.SelectionArea.FullItem;
            this.uiElementShadingList.ShadowOnHover = true;
            this.uiElementShadingList.Size = new System.Drawing.Size(625, 80);
            this.uiElementShadingList.TabIndex = 1;
            this.uiElementShadingList.Text = "buttonBar1";
            this.uiElementShadingList.ThemedAreas = ((Janus.Windows.ButtonBar.ThemedArea)((((Janus.Windows.ButtonBar.ThemedArea.Border | Janus.Windows.ButtonBar.ThemedArea.Groups)
                        | Janus.Windows.ButtonBar.ThemedArea.Items)
                        | Janus.Windows.ButtonBar.ThemedArea.ScrollButton)));
            this.uiElementShadingList.VisualStyle = Janus.Windows.ButtonBar.VisualStyle.Office2007;
            this.uiElementShadingList.ItemSelected += new System.EventHandler(this.uiElementShadingList_ItemSelected);
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.periodicTableControl1);
            this.panel1.Location = new System.Drawing.Point(7, 283);
            this.panel1.Name = "panel1";
            this.panel1.Padding = new System.Windows.Forms.Padding(3);
            this.panel1.Size = new System.Drawing.Size(623, 168);
            this.panel1.TabIndex = 0;
            // 
            // periodicTableControl1
            // 
            this.periodicTableControl1.BackColor = System.Drawing.Color.White;
            this.periodicTableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.periodicTableControl1.Enabled = false;
            this.periodicTableControl1.Location = new System.Drawing.Point(3, 3);
            this.periodicTableControl1.Name = "periodicTableControl1";
            this.periodicTableControl1.Size = new System.Drawing.Size(617, 162);
            this.periodicTableControl1.TabIndex = 0;
            this.periodicTableControl1.OnElementSelect += new System.EventHandler(this.periodicTableControl1_OnElementSelect);
            // 
            // label26
            // 
            this.label26.Location = new System.Drawing.Point(7, 259);
            this.label26.Name = "label26";
            this.label26.Size = new System.Drawing.Size(127, 13);
            this.label26.TabIndex = 24;
            this.label26.Text = "Series";
            // 
            // button3
            // 
            this.button3.Location = new System.Drawing.Point(9, 579);
            this.button3.Name = "button3";
            this.button3.Size = new System.Drawing.Size(75, 23);
            this.button3.TabIndex = 11;
            this.button3.Text = "Save";
            this.button3.UseVisualStyleBackColor = true;
            // 
            // multiColumnCombo1
            // 
            gridEXLayout1.LayoutString = resources.GetString("gridEXLayout1.LayoutString");
            this.multiColumnCombo1.DesignTimeLayout = gridEXLayout1;
            this.multiColumnCombo1.Location = new System.Drawing.Point(10, 19);
            this.multiColumnCombo1.Name = "multiColumnCombo1";
            this.multiColumnCombo1.SelectedIndex = -1;
            this.multiColumnCombo1.SelectedItem = null;
            this.multiColumnCombo1.Size = new System.Drawing.Size(248, 22);
            this.multiColumnCombo1.TabIndex = 12;
            this.multiColumnCombo1.VisualStyleManager = this.visualStyleManager1;
            // 
            // groupBox10
            // 
            this.groupBox10.Controls.Add(this.multiColumnCombo1);
            this.groupBox10.Location = new System.Drawing.Point(13, 510);
            this.groupBox10.Name = "groupBox10";
            this.groupBox10.Size = new System.Drawing.Size(637, 63);
            this.groupBox10.TabIndex = 13;
            this.groupBox10.TabStop = false;
            this.groupBox10.Text = "Settings Scope";
            // 
            // pictureBox1
            // 
            this.pictureBox1.Image = global::NuGenSVisualLib.Properties.Resources.Arrow;
            this.pictureBox1.Location = new System.Drawing.Point(672, 107);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(23, 62);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.pictureBox1.TabIndex = 14;
            this.pictureBox1.TabStop = false;
            // 
            // pictureBox2
            // 
            this.pictureBox2.Image = global::NuGenSVisualLib.Properties.Resources.Arrow;
            this.pictureBox2.Location = new System.Drawing.Point(672, 265);
            this.pictureBox2.Name = "pictureBox2";
            this.pictureBox2.Size = new System.Drawing.Size(23, 62);
            this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.pictureBox2.TabIndex = 15;
            this.pictureBox2.TabStop = false;
            // 
            // pictureBox3
            // 
            this.pictureBox3.Image = global::NuGenSVisualLib.Properties.Resources.Arrow;
            this.pictureBox3.Location = new System.Drawing.Point(672, 412);
            this.pictureBox3.Name = "pictureBox3";
            this.pictureBox3.Size = new System.Drawing.Size(23, 62);
            this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.pictureBox3.TabIndex = 16;
            this.pictureBox3.TabStop = false;
            // 
            // pictureBox4
            // 
            this.pictureBox4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.pictureBox4.Image = global::NuGenSVisualLib.Properties.Resources.redcross_32;
            this.pictureBox4.Location = new System.Drawing.Point(668, 12);
            this.pictureBox4.Name = "pictureBox4";
            this.pictureBox4.Size = new System.Drawing.Size(96, 96);
            this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.pictureBox4.TabIndex = 17;
            this.pictureBox4.TabStop = false;
            // 
            // pictureBox5
            // 
            this.pictureBox5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.pictureBox5.Location = new System.Drawing.Point(668, 474);
            this.pictureBox5.Name = "pictureBox5";
            this.pictureBox5.Size = new System.Drawing.Size(128, 128);
            this.pictureBox5.TabIndex = 18;
            this.pictureBox5.TabStop = false;
            // 
            // pictureBox6
            // 
            this.pictureBox6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.pictureBox6.Image = global::NuGenSVisualLib.Properties.Resources.redcross_32;
            this.pictureBox6.Location = new System.Drawing.Point(668, 169);
            this.pictureBox6.Name = "pictureBox6";
            this.pictureBox6.Size = new System.Drawing.Size(96, 96);
            this.pictureBox6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.pictureBox6.TabIndex = 19;
            this.pictureBox6.TabStop = false;
            // 
            // pictureBox7
            // 
            this.pictureBox7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.pictureBox7.Image = global::NuGenSVisualLib.Properties.Resources.redcross_32;
            this.pictureBox7.Location = new System.Drawing.Point(668, 328);
            this.pictureBox7.Name = "pictureBox7";
            this.pictureBox7.Size = new System.Drawing.Size(96, 96);
            this.pictureBox7.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.pictureBox7.TabIndex = 20;
            this.pictureBox7.TabStop = false;
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.ForeColor = System.Drawing.Color.DimGray;
            this.label11.Location = new System.Drawing.Point(718, 111);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(46, 13);
            this.label11.TabIndex = 21;
            this.label11.Text = "Scheme";
            // 
            // label19
            // 
            this.label19.AutoSize = true;
            this.label19.ForeColor = System.Drawing.Color.DimGray;
            this.label19.Location = new System.Drawing.Point(723, 268);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(41, 13);
            this.label19.TabIndex = 22;
            this.label19.Text = "Effects";
            // 
            // label20
            // 
            this.label20.AutoSize = true;
            this.label20.ForeColor = System.Drawing.Color.DimGray;
            this.label20.Location = new System.Drawing.Point(714, 427);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(50, 13);
            this.label20.TabIndex = 23;
            this.label20.Text = "Lighting";
            // 
            // label29
            // 
            this.label29.AutoSize = true;
            this.label29.Location = new System.Drawing.Point(6, 21);
            this.label29.Name = "label29";
            this.label29.Size = new System.Drawing.Size(38, 13);
            this.label29.TabIndex = 0;
            this.label29.Text = "Color:";
            // 
            // uiColorButton3
            // 
            // 
            // 
            // 
            this.uiColorButton3.ColorPicker.BorderStyle = Janus.Windows.UI.BorderStyle.None;
            this.uiColorButton3.ColorPicker.Location = new System.Drawing.Point(0, 0);
            this.uiColorButton3.ColorPicker.Name = "";
            this.uiColorButton3.ColorPicker.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiColorButton3.ColorPicker.Size = new System.Drawing.Size(100, 100);
            this.uiColorButton3.ColorPicker.TabIndex = 0;
            this.uiColorButton3.ColorPicker.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
            this.uiColorButton3.ColorPicker.VisualStyleManager = this.visualStyleManager1;
            this.uiColorButton3.Location = new System.Drawing.Point(50, 16);
            this.uiColorButton3.Name = "uiColorButton3";
            this.uiColorButton3.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiColorButton3.Size = new System.Drawing.Size(97, 23);
            this.uiColorButton3.TabIndex = 1;
            this.uiColorButton3.Text = "uiColorButton3";
            this.uiColorButton3.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiCheckBox2
            // 
            this.uiCheckBox2.Location = new System.Drawing.Point(9, 151);
            this.uiCheckBox2.Name = "uiCheckBox2";
            this.uiCheckBox2.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiCheckBox2.Size = new System.Drawing.Size(104, 23);
            this.uiCheckBox2.TabIndex = 2;
            this.uiCheckBox2.Text = "Override";
            this.uiCheckBox2.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiCheckBox3
            // 
            this.uiCheckBox3.Location = new System.Drawing.Point(9, 151);
            this.uiCheckBox3.Name = "uiCheckBox3";
            this.uiCheckBox3.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiCheckBox3.Size = new System.Drawing.Size(104, 23);
            this.uiCheckBox3.TabIndex = 3;
            this.uiCheckBox3.Text = "Override";
            this.uiCheckBox3.VisualStyleManager = this.visualStyleManager1;
            // 
            // MoleculeSchemeDlg
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(812, 616);
            this.Controls.Add(this.label20);
            this.Controls.Add(this.label19);
            this.Controls.Add(this.label11);
            this.Controls.Add(this.pictureBox7);
            this.Controls.Add(this.pictureBox6);
            this.Controls.Add(this.pictureBox5);
            this.Controls.Add(this.pictureBox4);
            this.Controls.Add(this.groupBox10);
            this.Controls.Add(this.button3);
            this.Controls.Add(this.uiTab1);
            this.Controls.Add(this.button2);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.pictureBox1);
            this.Controls.Add(this.pictureBox2);
            this.Controls.Add(this.pictureBox3);
            this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "MoleculeSchemeDlg";
            this.Text = "Molecule Scheme Settings";
            this.panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiBondsGSetGroup)).EndInit();
            this.uiBondsGSetGroup.ResumeLayout(false);
            this.uiBondsGSetGroup.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiAtomsGSetGroup)).EndInit();
            this.uiAtomsGSetGroup.ResumeLayout(false);
            this.uiAtomsGSetGroup.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox6)).EndInit();
            this.uiGroupBox6.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiSchemesList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiTab1)).EndInit();
            this.uiTab1.ResumeLayout(false);
            this.uiTabPage1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox8)).EndInit();
            this.uiGroupBox8.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox7)).EndInit();
            this.uiGroupBox7.ResumeLayout(false);
            this.uiGroupBox7.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).EndInit();
            this.uiGroupBox3.ResumeLayout(false);
            this.uiTabPage2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox14)).EndInit();
            this.uiGroupBox14.ResumeLayout(false);
            this.uiGroupBox14.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox13)).EndInit();
            this.uiGroupBox13.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
            this.uiGroupBox2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiEffectPropGroup)).EndInit();
            this.uiEffectPropGroup.ResumeLayout(false);
            this.panel4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiEffectsReqList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiCurrentEffectsList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiEffectsList)).EndInit();
            this.effectsListMenuStrip.ResumeLayout(false);
            this.uiTabPage3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox11)).EndInit();
            this.uiGroupBox11.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiLightingPropGroup)).EndInit();
            this.uiLightingPropGroup.ResumeLayout(false);
            this.uiLightingPropGroup.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox9)).EndInit();
            this.uiGroupBox9.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiLightingList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
            this.uiGroupBox1.ResumeLayout(false);
            this.uiGroupBox1.PerformLayout();
            this.uiTabPage4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox12)).EndInit();
            this.uiGroupBox12.ResumeLayout(false);
            this.uiGroupBox12.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
            this.groupBox13.ResumeLayout(false);
            this.groupBox13.PerformLayout();
            this.groupBox15.ResumeLayout(false);
            this.groupBox15.PerformLayout();
            this.uiTabPage5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiShadingSeriesGroup)).EndInit();
            this.uiShadingSeriesGroup.ResumeLayout(false);
            this.uiShadingSeriesGroup.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiShadingElementsGroup)).EndInit();
            this.uiShadingElementsGroup.ResumeLayout(false);
            this.uiShadingElementsGroup.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiElementShadingList)).EndInit();
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.multiColumnCombo1)).EndInit();
            this.groupBox10.ResumeLayout(false);
            this.groupBox10.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit();
            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_baocaochidinhCLS));
            Janus.Windows.GridEX.GridEXLayout cboNhomdichvuCLS_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdChitiet_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdList_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();
            this.gridEXExporter1 = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
            this.printDialog1 = new System.Windows.Forms.PrintDialog();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.cmdExportToExcel = new Janus.Windows.EditControls.UIButton();
            this.dtNgayInPhieu = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label3 = new System.Windows.Forms.Label();
            this.cmdPrint = new Janus.Windows.EditControls.UIButton();
            this.cmdExit = new Janus.Windows.EditControls.UIButton();
            this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
            this.cboNhomdichvuCLS = new Janus.Windows.GridEX.EditControls.CheckedComboBox();
            this.label4 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.chkChitiet = new Janus.Windows.EditControls.UICheckBox();
            this.panel1 = new System.Windows.Forms.Panel();
            this.grdChitiet = new Janus.Windows.GridEX.GridEX();
            this.grdList = new Janus.Windows.GridEX.GridEX();
            this.cboDoituongKCB = new Janus.Windows.EditControls.UIComboBox();
            this.label10 = new System.Windows.Forms.Label();
            this.cbokhoa = new Janus.Windows.EditControls.UIComboBox();
            this.label11 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.dtToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.dtFromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.chkByDate = new Janus.Windows.EditControls.UICheckBox();
            this.baocaO_TIEUDE1 = new VNS.HIS.UI.FORMs.BAOCAO.BHYT.UserControls.BAOCAO_TIEUDE();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.txtNhanvien = new VNS.HIS.UCs.AutoCompleteTextbox_Nhanvien();
            this.label1 = new System.Windows.Forms.Label();
            this.chkKieuchidinh = new Janus.Windows.EditControls.UIComboBox();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
            this.uiGroupBox2.SuspendLayout();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
            this.SuspendLayout();
            // 
            // printDialog1
            // 
            this.printDialog1.UseEXDialog = true;
            // 
            // cmdExportToExcel
            // 
            this.cmdExportToExcel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdExportToExcel.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdExportToExcel.Image = ((System.Drawing.Image)(resources.GetObject("cmdExportToExcel.Image")));
            this.cmdExportToExcel.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdExportToExcel.Location = new System.Drawing.Point(395, 532);
            this.cmdExportToExcel.Name = "cmdExportToExcel";
            this.cmdExportToExcel.Size = new System.Drawing.Size(119, 30);
            this.cmdExportToExcel.TabIndex = 10;
            this.cmdExportToExcel.Text = "Xuất Excel";
            this.cmdExportToExcel.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
            // 
            // dtNgayInPhieu
            // 
            this.dtNgayInPhieu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.dtNgayInPhieu.CustomFormat = "dd/MM/yyyy";
            this.dtNgayInPhieu.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtNgayInPhieu.DropDownCalendar.Name = "";
            this.dtNgayInPhieu.Font = new System.Drawing.Font("Arial", 9F);
            this.dtNgayInPhieu.Location = new System.Drawing.Point(82, 539);
            this.dtNgayInPhieu.Name = "dtNgayInPhieu";
            this.dtNgayInPhieu.ShowUpDown = true;
            this.dtNgayInPhieu.Size = new System.Drawing.Size(200, 21);
            this.dtNgayInPhieu.TabIndex = 12;
            this.dtNgayInPhieu.Value = new System.DateTime(2014, 9, 27, 0, 0, 0, 0);
            // 
            // label3
            // 
            this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label3.AutoSize = true;
            this.label3.Font = new System.Drawing.Font("Arial", 9F);
            this.label3.Location = new System.Drawing.Point(4, 543);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(48, 15);
            this.label3.TabIndex = 88;
            this.label3.Text = "Ngày in";
            // 
            // cmdPrint
            // 
            this.cmdPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdPrint.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdPrint.Image = ((System.Drawing.Image)(resources.GetObject("cmdPrint.Image")));
            this.cmdPrint.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdPrint.Location = new System.Drawing.Point(520, 532);
            this.cmdPrint.Name = "cmdPrint";
            this.cmdPrint.Size = new System.Drawing.Size(119, 30);
            this.cmdPrint.TabIndex = 9;
            this.cmdPrint.Text = "In báo cáo";
            this.cmdPrint.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
            // 
            // cmdExit
            // 
            this.cmdExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdExit.Font = new System.Drawing.Font("Arial", 9F);
            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(645, 532);
            this.cmdExit.Name = "cmdExit";
            this.cmdExit.Size = new System.Drawing.Size(119, 30);
            this.cmdExit.TabIndex = 11;
            this.cmdExit.Text = "&Thoát(Esc)";
            // 
            // uiGroupBox2
            // 
            this.uiGroupBox2.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.uiGroupBox2.Controls.Add(this.chkKieuchidinh);
            this.uiGroupBox2.Controls.Add(this.label1);
            this.uiGroupBox2.Controls.Add(this.txtNhanvien);
            this.uiGroupBox2.Controls.Add(this.cboNhomdichvuCLS);
            this.uiGroupBox2.Controls.Add(this.label4);
            this.uiGroupBox2.Controls.Add(this.label2);
            this.uiGroupBox2.Controls.Add(this.chkChitiet);
            this.uiGroupBox2.Controls.Add(this.panel1);
            this.uiGroupBox2.Controls.Add(this.cboDoituongKCB);
            this.uiGroupBox2.Controls.Add(this.label10);
            this.uiGroupBox2.Controls.Add(this.cbokhoa);
            this.uiGroupBox2.Controls.Add(this.label11);
            this.uiGroupBox2.Controls.Add(this.label8);
            this.uiGroupBox2.Controls.Add(this.dtToDate);
            this.uiGroupBox2.Controls.Add(this.dtFromDate);
            this.uiGroupBox2.Controls.Add(this.chkByDate);
            this.uiGroupBox2.Font = new System.Drawing.Font("Arial", 9F);
            this.uiGroupBox2.Location = new System.Drawing.Point(0, 59);
            this.uiGroupBox2.Name = "uiGroupBox2";
            this.uiGroupBox2.Size = new System.Drawing.Size(776, 466);
            this.uiGroupBox2.TabIndex = 115;
            this.uiGroupBox2.Text = "Thông tin tìm kiếm";
            // 
            // cboNhomdichvuCLS
            // 
            cboNhomdichvuCLS_DesignTimeLayout.LayoutString = resources.GetString("cboNhomdichvuCLS_DesignTimeLayout.LayoutString");
            this.cboNhomdichvuCLS.DesignTimeLayout = cboNhomdichvuCLS_DesignTimeLayout;
            this.cboNhomdichvuCLS.DropDownDisplayMember = "TEN_KHO";
            this.cboNhomdichvuCLS.DropDownValueMember = "ID_KHO";
            this.cboNhomdichvuCLS.Font = new System.Drawing.Font("Arial", 9F);
            this.cboNhomdichvuCLS.Location = new System.Drawing.Point(138, 102);
            this.cboNhomdichvuCLS.Name = "cboNhomdichvuCLS";
            this.cboNhomdichvuCLS.SaveSettings = false;
            this.cboNhomdichvuCLS.Size = new System.Drawing.Size(315, 21);
            this.cboNhomdichvuCLS.TabIndex = 3;
            this.cboNhomdichvuCLS.ValueItemDataMember = "(None)";
            this.cboNhomdichvuCLS.ValuesDataMember = null;
            // 
            // label4
            // 
            this.label4.Location = new System.Drawing.Point(11, 107);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(121, 15);
            this.label4.TabIndex = 59;
            this.label4.Text = "Chọn dịch vụ CLS";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(288, 136);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(28, 15);
            this.label2.TabIndex = 58;
            this.label2.Text = "đến";
            // 
            // chkChitiet
            // 
            this.chkChitiet.Checked = true;
            this.chkChitiet.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkChitiet.Location = new System.Drawing.Point(459, 128);
            this.chkChitiet.Name = "chkChitiet";
            this.chkChitiet.Size = new System.Drawing.Size(209, 23);
            this.chkChitiet.TabIndex = 7;
            this.chkChitiet.TabStop = false;
            this.chkChitiet.Text = "Chi tiết theo từng dịch vụ?";
            this.toolTip1.SetToolTip(this.chkChitiet, "Chọn mục này để báo cáo chi tiết theo từng dịch vụ CLS.");
            // 
            // panel1
            // 
            this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            this.panel1.Controls.Add(this.grdList);
            this.panel1.Controls.Add(this.grdChitiet);
            this.panel1.Location = new System.Drawing.Point(6, 160);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(758, 300);
            this.panel1.TabIndex = 56;
            // 
            // grdChitiet
            // 
            this.grdChitiet.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grdChitiet.ColumnAutoResize = true;
            grdChitiet_DesignTimeLayout.LayoutString = resources.GetString("grdChitiet_DesignTimeLayout.LayoutString");
            this.grdChitiet.DesignTimeLayout = grdChitiet_DesignTimeLayout;
            this.grdChitiet.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdChitiet.Font = new System.Drawing.Font("Arial", 9F);
            this.grdChitiet.GroupByBoxVisible = false;
            this.grdChitiet.GroupRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdChitiet.GroupTotalRowFormatStyle.FontItalic = Janus.Windows.GridEX.TriState.True;
            this.grdChitiet.GroupTotalRowFormatStyle.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            this.grdChitiet.GroupTotals = Janus.Windows.GridEX.GroupTotals.Always;
            this.grdChitiet.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdChitiet.Location = new System.Drawing.Point(0, 0);
            this.grdChitiet.Name = "grdChitiet";
            this.grdChitiet.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdChitiet.Size = new System.Drawing.Size(758, 300);
            this.grdChitiet.TabIndex = 13;
            this.grdChitiet.TabStop = false;
            this.grdChitiet.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdChitiet.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdChitiet.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdChitiet.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // grdList
            // 
            this.grdList.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grdList.ColumnAutoResize = true;
            grdList_DesignTimeLayout.LayoutString = resources.GetString("grdList_DesignTimeLayout.LayoutString");
            this.grdList.DesignTimeLayout = grdList_DesignTimeLayout;
            this.grdList.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdList.Font = new System.Drawing.Font("Arial", 9F);
            this.grdList.GroupByBoxVisible = false;
            this.grdList.GroupRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdList.GroupTotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdList.GroupTotals = Janus.Windows.GridEX.GroupTotals.Always;
            this.grdList.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdList.Location = new System.Drawing.Point(0, 0);
            this.grdList.Name = "grdList";
            this.grdList.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdList.Size = new System.Drawing.Size(758, 300);
            this.grdList.TabIndex = 13;
            this.grdList.TabStop = false;
            this.grdList.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdList.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdList.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdList.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // cboDoituongKCB
            // 
            this.cboDoituongKCB.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboDoituongKCB.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cboDoituongKCB.Location = new System.Drawing.Point(138, 49);
            this.cboDoituongKCB.Name = "cboDoituongKCB";
            this.cboDoituongKCB.SelectInDataSource = true;
            this.cboDoituongKCB.Size = new System.Drawing.Size(604, 21);
            this.cboDoituongKCB.TabIndex = 1;
            this.cboDoituongKCB.Text = "Chọn loại đối tượng KCB";
            // 
            // label10
            // 
            this.label10.Location = new System.Drawing.Point(11, 52);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(121, 15);
            this.label10.TabIndex = 54;
            this.label10.Text = "Đối tượng KCB:";
            this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cbokhoa
            // 
            this.cbokhoa.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cbokhoa.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cbokhoa.Location = new System.Drawing.Point(138, 22);
            this.cbokhoa.Name = "cbokhoa";
            this.cbokhoa.SelectInDataSource = true;
            this.cbokhoa.Size = new System.Drawing.Size(604, 21);
            this.cbokhoa.TabIndex = 0;
            this.cbokhoa.Text = "Chọn khoa KCB";
            // 
            // label11
            // 
            this.label11.Location = new System.Drawing.Point(11, 25);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(121, 15);
            this.label11.TabIndex = 52;
            this.label11.Text = "Khoa KCB:";
            this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label8
            // 
            this.label8.Location = new System.Drawing.Point(11, 79);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(121, 15);
            this.label8.TabIndex = 36;
            this.label8.Text = "Thu ngân viên:";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtToDate
            // 
            this.dtToDate.CustomFormat = "dd/MM/yyyy";
            this.dtToDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtToDate.DropDownCalendar.Name = "";
            this.dtToDate.Location = new System.Drawing.Point(324, 131);
            this.dtToDate.Name = "dtToDate";
            this.dtToDate.ShowUpDown = true;
            this.dtToDate.Size = new System.Drawing.Size(129, 21);
            this.dtToDate.TabIndex = 6;
            this.dtToDate.Value = new System.DateTime(2014, 9, 27, 0, 0, 0, 0);
            // 
            // dtFromDate
            // 
            this.dtFromDate.CustomFormat = "dd/MM/yyyy";
            this.dtFromDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtFromDate.DropDownCalendar.Name = "";
            this.dtFromDate.Location = new System.Drawing.Point(138, 131);
            this.dtFromDate.Name = "dtFromDate";
            this.dtFromDate.ShowUpDown = true;
            this.dtFromDate.Size = new System.Drawing.Size(144, 21);
            this.dtFromDate.TabIndex = 5;
            this.dtFromDate.Value = new System.DateTime(2014, 9, 27, 0, 0, 0, 0);
            // 
            // chkByDate
            // 
            this.chkByDate.Checked = true;
            this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkByDate.Location = new System.Drawing.Point(67, 131);
            this.chkByDate.Name = "chkByDate";
            this.chkByDate.Size = new System.Drawing.Size(65, 23);
            this.chkByDate.TabIndex = 4;
            this.chkByDate.Text = "Từ ngày";
            // 
            // baocaO_TIEUDE1
            // 
            this.baocaO_TIEUDE1.BackColor = System.Drawing.SystemColors.Control;
            this.baocaO_TIEUDE1.Dock = System.Windows.Forms.DockStyle.Top;
            this.baocaO_TIEUDE1.Location = new System.Drawing.Point(0, 0);
            this.baocaO_TIEUDE1.MA_BAOCAO = "THUOC_BCDSACH_BNHANLINHTHUOC";
            this.baocaO_TIEUDE1.Name = "baocaO_TIEUDE1";
            this.baocaO_TIEUDE1.Phimtat = "Bạn có thể sử dụng phím tắt";
            this.baocaO_TIEUDE1.PicImg = ((System.Drawing.Image)(resources.GetObject("baocaO_TIEUDE1.PicImg")));
            this.baocaO_TIEUDE1.ShortcutAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.baocaO_TIEUDE1.ShortcutFont = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.baocaO_TIEUDE1.showHelp = false;
            this.baocaO_TIEUDE1.Size = new System.Drawing.Size(776, 53);
            this.baocaO_TIEUDE1.TabIndex = 114;
            this.baocaO_TIEUDE1.TIEUDE = "BÁO CÁO THU TIỀN BỆNH NHÂN THEO KHOA PHÒNG";
            this.baocaO_TIEUDE1.TitleFont = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            // 
            // toolTip1
            // 
            this.toolTip1.IsBalloon = true;
            this.toolTip1.ToolTipTitle = "Trợ giúp";
            // 
            // txtNhanvien
            // 
            this.txtNhanvien._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtNhanvien._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNhanvien.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtNhanvien.AutoCompleteList")));
            this.txtNhanvien.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNhanvien.CaseSensitive = false;
            this.txtNhanvien.CompareNoID = true;
            this.txtNhanvien.DefaultCode = "-1";
            this.txtNhanvien.DefaultID = "-1";
            this.txtNhanvien.Drug_ID = null;
            this.txtNhanvien.ExtraWidth = 0;
            this.txtNhanvien.FillValueAfterSelect = false;
            this.txtNhanvien.LOAI_NHANVIEN = null;
            this.txtNhanvien.Location = new System.Drawing.Point(138, 74);
            this.txtNhanvien.MaxHeight = -1;
            this.txtNhanvien.MinTypedCharacters = 2;
            this.txtNhanvien.MyCode = "-1";
            this.txtNhanvien.MyID = "-1";
            this.txtNhanvien.Name = "txtNhanvien";
            this.txtNhanvien.RaiseEvent = false;
            this.txtNhanvien.RaiseEventEnter = false;
            this.txtNhanvien.RaiseEventEnterWhenEmpty = false;
            this.txtNhanvien.SelectedIndex = -1;
            this.txtNhanvien.Size = new System.Drawing.Size(315, 21);
            this.txtNhanvien.splitChar = '@';
            this.txtNhanvien.splitCharIDAndCode = '#';
            this.txtNhanvien.TabIndex = 2;
            this.txtNhanvien.TakeCode = false;
            this.txtNhanvien.txtMyCode = null;
            this.txtNhanvien.txtMyCode_Edit = null;
            this.txtNhanvien.txtMyID = null;
            this.txtNhanvien.txtMyID_Edit = null;
            this.txtNhanvien.txtMyName = null;
            this.txtNhanvien.txtMyName_Edit = null;
            this.txtNhanvien.txtNext = null;
            // 
            // label1
            // 
            this.label1.Location = new System.Drawing.Point(456, 79);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(94, 15);
            this.label1.TabIndex = 60;
            this.label1.Text = "Kiểu chỉ định:";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // chkKieuchidinh
            // 
            this.chkKieuchidinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "Tất cả";
            uiComboBoxItem1.Value = ((short)(-1));
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "Từ phòng khám";
            uiComboBoxItem2.Value = ((short)(1));
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "Không qua khám";
            uiComboBoxItem3.Value = ((short)(0));
            this.chkKieuchidinh.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3});
            this.chkKieuchidinh.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.chkKieuchidinh.Location = new System.Drawing.Point(556, 76);
            this.chkKieuchidinh.Name = "chkKieuchidinh";
            this.chkKieuchidinh.SelectInDataSource = true;
            this.chkKieuchidinh.Size = new System.Drawing.Size(186, 21);
            this.chkKieuchidinh.TabIndex = 61;
            // 
            // frm_baocaochidinhCLS
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(776, 573);
            this.Controls.Add(this.uiGroupBox2);
            this.Controls.Add(this.baocaO_TIEUDE1);
            this.Controls.Add(this.cmdExportToExcel);
            this.Controls.Add(this.dtNgayInPhieu);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.cmdPrint);
            this.Controls.Add(this.cmdExit);
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frm_baocaochidinhCLS";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Báo cáo thu tiền bệnh nhân theo khoa phòng";
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
            this.uiGroupBox2.ResumeLayout(false);
            this.uiGroupBox2.PerformLayout();
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
            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_thongkenhapvien));
            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.GridEX.GridEXLayout grdChitiet_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdTonghop_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            this.gridEXExporter1 = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
            this.printDialog1 = new System.Windows.Forms.PrintDialog();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.cmdExportToExcel = new Janus.Windows.EditControls.UIButton();
            this.dtNgayInPhieu = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label3 = new System.Windows.Forms.Label();
            this.cmdPrint = new Janus.Windows.EditControls.UIButton();
            this.cmdExit = new Janus.Windows.EditControls.UIButton();
            this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
            this.cboKhoaNoiTru = new Janus.Windows.EditControls.UIComboBox();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.radSoluong = new System.Windows.Forms.RadioButton();
            this.radChitiet = new System.Windows.Forms.RadioButton();
            this.label4 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.panel1 = new System.Windows.Forms.Panel();
            this.grdChitiet = new Janus.Windows.GridEX.GridEX();
            this.grdTonghop = new Janus.Windows.GridEX.GridEX();
            this.cboDoituongKCB = new Janus.Windows.EditControls.UIComboBox();
            this.label10 = new System.Windows.Forms.Label();
            this.cbokhoa = new Janus.Windows.EditControls.UIComboBox();
            this.label11 = new System.Windows.Forms.Label();
            this.dtToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.dtFromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.chkByDate = new Janus.Windows.EditControls.UICheckBox();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.panel2 = new System.Windows.Forms.Panel();
            this.baocaO_TIEUDE1 = new VNS.HIS.UI.FORMs.BAOCAO.BHYT.UserControls.BAOCAO_TIEUDE();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
            this.uiGroupBox2.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdTonghop)).BeginInit();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.SuspendLayout();
            // 
            // printDialog1
            // 
            this.printDialog1.UseEXDialog = true;
            // 
            // cmdExportToExcel
            // 
            this.cmdExportToExcel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdExportToExcel.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdExportToExcel.Image = ((System.Drawing.Image)(resources.GetObject("cmdExportToExcel.Image")));
            this.cmdExportToExcel.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdExportToExcel.Location = new System.Drawing.Point(389, 13);
            this.cmdExportToExcel.Name = "cmdExportToExcel";
            this.cmdExportToExcel.Size = new System.Drawing.Size(119, 30);
            this.cmdExportToExcel.TabIndex = 10;
            this.cmdExportToExcel.Text = "Xuất Excel";
            this.cmdExportToExcel.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
            // 
            // dtNgayInPhieu
            // 
            this.dtNgayInPhieu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.dtNgayInPhieu.CustomFormat = "dd/MM/yyyy";
            this.dtNgayInPhieu.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtNgayInPhieu.DropDownCalendar.Name = "";
            this.dtNgayInPhieu.Font = new System.Drawing.Font("Arial", 9F);
            this.dtNgayInPhieu.Location = new System.Drawing.Point(88, 19);
            this.dtNgayInPhieu.Name = "dtNgayInPhieu";
            this.dtNgayInPhieu.ShowUpDown = true;
            this.dtNgayInPhieu.Size = new System.Drawing.Size(200, 21);
            this.dtNgayInPhieu.TabIndex = 12;
            this.dtNgayInPhieu.Value = new System.DateTime(2014, 9, 27, 0, 0, 0, 0);
            // 
            // label3
            // 
            this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label3.AutoSize = true;
            this.label3.Font = new System.Drawing.Font("Arial", 9F);
            this.label3.Location = new System.Drawing.Point(10, 23);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(48, 15);
            this.label3.TabIndex = 88;
            this.label3.Text = "Ngày in";
            // 
            // cmdPrint
            // 
            this.cmdPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdPrint.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdPrint.Image = ((System.Drawing.Image)(resources.GetObject("cmdPrint.Image")));
            this.cmdPrint.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdPrint.Location = new System.Drawing.Point(514, 13);
            this.cmdPrint.Name = "cmdPrint";
            this.cmdPrint.Size = new System.Drawing.Size(119, 30);
            this.cmdPrint.TabIndex = 9;
            this.cmdPrint.Text = "In báo cáo";
            this.cmdPrint.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
            // 
            // cmdExit
            // 
            this.cmdExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdExit.Font = new System.Drawing.Font("Arial", 9F);
            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(639, 13);
            this.cmdExit.Name = "cmdExit";
            this.cmdExit.Size = new System.Drawing.Size(119, 30);
            this.cmdExit.TabIndex = 11;
            this.cmdExit.Text = "&Thoát(Esc)";
            // 
            // uiGroupBox2
            // 
            this.uiGroupBox2.Controls.Add(this.cboKhoaNoiTru);
            this.uiGroupBox2.Controls.Add(this.groupBox1);
            this.uiGroupBox2.Controls.Add(this.label4);
            this.uiGroupBox2.Controls.Add(this.label2);
            this.uiGroupBox2.Controls.Add(this.panel1);
            this.uiGroupBox2.Controls.Add(this.cboDoituongKCB);
            this.uiGroupBox2.Controls.Add(this.label10);
            this.uiGroupBox2.Controls.Add(this.cbokhoa);
            this.uiGroupBox2.Controls.Add(this.label11);
            this.uiGroupBox2.Controls.Add(this.dtToDate);
            this.uiGroupBox2.Controls.Add(this.dtFromDate);
            this.uiGroupBox2.Controls.Add(this.chkByDate);
            this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.uiGroupBox2.Font = new System.Drawing.Font("Arial", 9F);
            this.uiGroupBox2.Location = new System.Drawing.Point(3, 56);
            this.uiGroupBox2.Name = "uiGroupBox2";
            this.uiGroupBox2.Size = new System.Drawing.Size(824, 488);
            this.uiGroupBox2.TabIndex = 115;
            this.uiGroupBox2.Text = "Thông tin tìm kiếm";
            // 
            // cboKhoaNoiTru
            // 
            this.cboKhoaNoiTru.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "Tất cả";
            uiComboBoxItem1.Value = -1;
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "Ngoại trú";
            uiComboBoxItem2.Value = 0;
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "Nội trú";
            uiComboBoxItem3.Value = 1;
            this.cboKhoaNoiTru.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3});
            this.cboKhoaNoiTru.Location = new System.Drawing.Point(138, 75);
            this.cboKhoaNoiTru.Name = "cboKhoaNoiTru";
            this.cboKhoaNoiTru.Size = new System.Drawing.Size(279, 21);
            this.cboKhoaNoiTru.TabIndex = 273;
            this.cboKhoaNoiTru.Text = "Chọn khoa nội trú";
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.radSoluong);
            this.groupBox1.Controls.Add(this.radChitiet);
            this.groupBox1.Location = new System.Drawing.Point(451, 60);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(307, 54);
            this.groupBox1.TabIndex = 272;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Chọn điều kiện";
            // 
            // radSoluong
            // 
            this.radSoluong.AutoSize = true;
            this.radSoluong.Location = new System.Drawing.Point(188, 22);
            this.radSoluong.Name = "radSoluong";
            this.radSoluong.Size = new System.Drawing.Size(76, 19);
            this.radSoluong.TabIndex = 1;
            this.radSoluong.Text = "Số lượng";
            this.radSoluong.UseVisualStyleBackColor = true;
            this.radSoluong.CheckedChanged += new System.EventHandler(this.radChuyenDi_CheckedChanged);
            // 
            // radChitiet
            // 
            this.radChitiet.AutoSize = true;
            this.radChitiet.Checked = true;
            this.radChitiet.Location = new System.Drawing.Point(29, 22);
            this.radChitiet.Name = "radChitiet";
            this.radChitiet.Size = new System.Drawing.Size(67, 19);
            this.radChitiet.TabIndex = 0;
            this.radChitiet.TabStop = true;
            this.radChitiet.Text = "Chi Tiết";
            this.radChitiet.UseVisualStyleBackColor = true;
            this.radChitiet.CheckedChanged += new System.EventHandler(this.radChuyenDen_CheckedChanged);
            // 
            // label4
            // 
            this.label4.Location = new System.Drawing.Point(11, 80);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(121, 16);
            this.label4.TabIndex = 270;
            this.label4.Text = "Khoa nhập viện";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(270, 108);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(28, 15);
            this.label2.TabIndex = 58;
            this.label2.Text = "đến";
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.grdChitiet);
            this.panel1.Controls.Add(this.grdTonghop);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel1.Location = new System.Drawing.Point(3, 150);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(818, 335);
            this.panel1.TabIndex = 56;
            // 
            // grdChitiet
            // 
            this.grdChitiet.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            grdChitiet_DesignTimeLayout.LayoutString = resources.GetString("grdChitiet_DesignTimeLayout.LayoutString");
            this.grdChitiet.DesignTimeLayout = grdChitiet_DesignTimeLayout;
            this.grdChitiet.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdChitiet.Font = new System.Drawing.Font("Arial", 9F);
            this.grdChitiet.GroupByBoxVisible = false;
            this.grdChitiet.GroupRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdChitiet.GroupTotalRowFormatStyle.FontItalic = Janus.Windows.GridEX.TriState.True;
            this.grdChitiet.GroupTotalRowFormatStyle.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            this.grdChitiet.GroupTotals = Janus.Windows.GridEX.GroupTotals.Always;
            this.grdChitiet.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdChitiet.Location = new System.Drawing.Point(0, 0);
            this.grdChitiet.Name = "grdChitiet";
            this.grdChitiet.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdChitiet.ScrollBars = Janus.Windows.GridEX.ScrollBars.Horizontal;
            this.grdChitiet.Size = new System.Drawing.Size(818, 335);
            this.grdChitiet.TabIndex = 23;
            this.grdChitiet.TabStop = false;
            this.grdChitiet.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdChitiet.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdChitiet.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdChitiet.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // grdTonghop
            // 
            this.grdTonghop.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            grdTonghop_DesignTimeLayout.LayoutString = resources.GetString("grdTonghop_DesignTimeLayout.LayoutString");
            this.grdTonghop.DesignTimeLayout = grdTonghop_DesignTimeLayout;
            this.grdTonghop.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdTonghop.Font = new System.Drawing.Font("Arial", 9F);
            this.grdTonghop.GroupByBoxVisible = false;
            this.grdTonghop.GroupRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdTonghop.GroupTotalRowFormatStyle.FontItalic = Janus.Windows.GridEX.TriState.True;
            this.grdTonghop.GroupTotalRowFormatStyle.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            this.grdTonghop.GroupTotals = Janus.Windows.GridEX.GroupTotals.Always;
            this.grdTonghop.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdTonghop.Location = new System.Drawing.Point(0, 0);
            this.grdTonghop.Name = "grdTonghop";
            this.grdTonghop.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdTonghop.Size = new System.Drawing.Size(818, 335);
            this.grdTonghop.TabIndex = 22;
            this.grdTonghop.TabStop = false;
            this.grdTonghop.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdTonghop.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdTonghop.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdTonghop.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // cboDoituongKCB
            // 
            this.cboDoituongKCB.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboDoituongKCB.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cboDoituongKCB.Location = new System.Drawing.Point(138, 49);
            this.cboDoituongKCB.Name = "cboDoituongKCB";
            this.cboDoituongKCB.SelectInDataSource = true;
            this.cboDoituongKCB.Size = new System.Drawing.Size(279, 21);
            this.cboDoituongKCB.TabIndex = 2;
            this.cboDoituongKCB.Text = "Chọn loại đối tượng KCB";
            // 
            // label10
            // 
            this.label10.Location = new System.Drawing.Point(11, 54);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(121, 15);
            this.label10.TabIndex = 54;
            this.label10.Text = "Đối tượng KCB:";
            this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cbokhoa
            // 
            this.cbokhoa.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cbokhoa.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cbokhoa.Location = new System.Drawing.Point(138, 22);
            this.cbokhoa.Name = "cbokhoa";
            this.cbokhoa.SelectInDataSource = true;
            this.cbokhoa.Size = new System.Drawing.Size(626, 21);
            this.cbokhoa.TabIndex = 0;
            this.cbokhoa.Text = "Chọn khoa KCB";
            // 
            // label11
            // 
            this.label11.Location = new System.Drawing.Point(11, 25);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(121, 15);
            this.label11.TabIndex = 52;
            this.label11.Text = "Khoa KCB:";
            this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtToDate
            // 
            this.dtToDate.CustomFormat = "dd/MM/yyyy";
            this.dtToDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtToDate.DropDownCalendar.Name = "";
            this.dtToDate.Location = new System.Drawing.Point(304, 106);
            this.dtToDate.Name = "dtToDate";
            this.dtToDate.ShowUpDown = true;
            this.dtToDate.Size = new System.Drawing.Size(113, 21);
            this.dtToDate.TabIndex = 7;
            // 
            // dtFromDate
            // 
            this.dtFromDate.CustomFormat = "dd/MM/yyyy";
            this.dtFromDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtFromDate.DropDownCalendar.Name = "";
            this.dtFromDate.Location = new System.Drawing.Point(138, 106);
            this.dtFromDate.Name = "dtFromDate";
            this.dtFromDate.ShowUpDown = true;
            this.dtFromDate.Size = new System.Drawing.Size(126, 21);
            this.dtFromDate.TabIndex = 6;
            // 
            // chkByDate
            // 
            this.chkByDate.Checked = true;
            this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkByDate.ForeColor = System.Drawing.Color.Navy;
            this.chkByDate.Location = new System.Drawing.Point(67, 106);
            this.chkByDate.Name = "chkByDate";
            this.chkByDate.Size = new System.Drawing.Size(65, 23);
            this.chkByDate.TabIndex = 5;
            this.chkByDate.Text = "Từ ngày";
            // 
            // toolTip1
            // 
            this.toolTip1.IsBalloon = true;
            this.toolTip1.ToolTipTitle = "Trợ giúp";
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Location = new System.Drawing.Point(0, 0);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(838, 573);
            this.tabControl1.TabIndex = 116;
            // 
            // tabPage1
            // 
            this.tabPage1.BackColor = System.Drawing.SystemColors.Control;
            this.tabPage1.Controls.Add(this.panel2);
            this.tabPage1.Controls.Add(this.uiGroupBox2);
            this.tabPage1.Controls.Add(this.baocaO_TIEUDE1);
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(830, 547);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "Thông kê nhập viện";
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.cmdExportToExcel);
            this.panel2.Controls.Add(this.dtNgayInPhieu);
            this.panel2.Controls.Add(this.label3);
            this.panel2.Controls.Add(this.cmdExit);
            this.panel2.Controls.Add(this.cmdPrint);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel2.Location = new System.Drawing.Point(3, 492);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(824, 52);
            this.panel2.TabIndex = 115;
            // 
            // baocaO_TIEUDE1
            // 
            this.baocaO_TIEUDE1.BackColor = System.Drawing.SystemColors.Control;
            this.baocaO_TIEUDE1.Dock = System.Windows.Forms.DockStyle.Top;
            this.baocaO_TIEUDE1.Location = new System.Drawing.Point(3, 3);
            this.baocaO_TIEUDE1.MA_BAOCAO = "THUOC_BCDSACH_BNHANLINHTHUOC";
            this.baocaO_TIEUDE1.Name = "baocaO_TIEUDE1";
            this.baocaO_TIEUDE1.Phimtat = "Bạn có thể sử dụng phím tắt";
            this.baocaO_TIEUDE1.PicImg = ((System.Drawing.Image)(resources.GetObject("baocaO_TIEUDE1.PicImg")));
            this.baocaO_TIEUDE1.ShortcutAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.baocaO_TIEUDE1.ShortcutFont = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.baocaO_TIEUDE1.showHelp = false;
            this.baocaO_TIEUDE1.Size = new System.Drawing.Size(824, 53);
            this.baocaO_TIEUDE1.TabIndex = 114;
            this.baocaO_TIEUDE1.TIEUDE = "BÁO  CÁO THỐNG KÊ NHẬP VIỆN";
            this.baocaO_TIEUDE1.TitleFont = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            // 
            // frm_thongkenhapvien
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(838, 573);
            this.Controls.Add(this.tabControl1);
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frm_thongkenhapvien";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Báo cáo nhập viện";
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
            this.uiGroupBox2.ResumeLayout(false);
            this.uiGroupBox2.PerformLayout();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdTonghop)).EndInit();
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.panel2.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()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_PatientNoBarcode));
            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.GridEX.GridEXLayout grdPatient_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdTestResult_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            this.Panel7 = new System.Windows.Forms.Panel();
            this.PictureBox6 = new System.Windows.Forms.PictureBox();
            this.Label15 = new System.Windows.Forms.Label();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.pgbStatus = new System.Windows.Forms.ProgressBar();
            this.label8 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.cboStatus = new Janus.Windows.EditControls.UIComboBox();
            this.label5 = new System.Windows.Forms.Label();
            this.btnSearch = new System.Windows.Forms.Button();
            this.cboTestTypeList = new System.Windows.Forms.ComboBox();
            this.label4 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.dtpToDate = new System.Windows.Forms.DateTimePicker();
            this.label1 = new System.Windows.Forms.Label();
            this.dtpFromDate = new System.Windows.Forms.DateTimePicker();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.grbDanhSachBenhNhan = new System.Windows.Forms.GroupBox();
            this.btnPrint = new System.Windows.Forms.Button();
            this.btnExport = new System.Windows.Forms.Button();
            this.grdPatient = new Janus.Windows.GridEX.GridEX();
            this.grbResult = new System.Windows.Forms.GroupBox();
            this.grdTestResult = new Janus.Windows.GridEX.GridEX();
            this.Panel7.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox6)).BeginInit();
            this.groupBox1.SuspendLayout();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.grbDanhSachBenhNhan.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdPatient)).BeginInit();
            this.grbResult.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdTestResult)).BeginInit();
            this.SuspendLayout();
            // 
            // Panel7
            // 
            this.Panel7.BackColor = System.Drawing.Color.Linen;
            this.Panel7.Controls.Add(this.PictureBox6);
            this.Panel7.Controls.Add(this.Label15);
            this.Panel7.Dock = System.Windows.Forms.DockStyle.Top;
            this.Panel7.Location = new System.Drawing.Point(0, 0);
            this.Panel7.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
            this.Panel7.Name = "Panel7";
            this.Panel7.Size = new System.Drawing.Size(1006, 55);
            this.Panel7.TabIndex = 62;
            // 
            // PictureBox6
            // 
            this.PictureBox6.Image = ((System.Drawing.Image)(resources.GetObject("PictureBox6.Image")));
            this.PictureBox6.Location = new System.Drawing.Point(16, 2);
            this.PictureBox6.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
            this.PictureBox6.Name = "PictureBox6";
            this.PictureBox6.Size = new System.Drawing.Size(59, 50);
            this.PictureBox6.TabIndex = 113;
            this.PictureBox6.TabStop = false;
            // 
            // Label15
            // 
            this.Label15.BackColor = System.Drawing.Color.Linen;
            this.Label15.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Label15.Font = new System.Drawing.Font("Arial", 12.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.Label15.Location = new System.Drawing.Point(0, 0);
            this.Label15.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.Label15.Name = "Label15";
            this.Label15.Size = new System.Drawing.Size(1006, 55);
            this.Label15.TabIndex = 31;
            this.Label15.Text = "THỐNG KÊ SỐ LƯỢNG MẪU";
            this.Label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.pgbStatus);
            this.groupBox1.Controls.Add(this.label8);
            this.groupBox1.Controls.Add(this.label7);
            this.groupBox1.Controls.Add(this.label6);
            this.groupBox1.Controls.Add(this.cboStatus);
            this.groupBox1.Controls.Add(this.label5);
            this.groupBox1.Controls.Add(this.btnSearch);
            this.groupBox1.Controls.Add(this.cboTestTypeList);
            this.groupBox1.Controls.Add(this.label4);
            this.groupBox1.Controls.Add(this.label3);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.dtpToDate);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Controls.Add(this.dtpFromDate);
            this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupBox1.Location = new System.Drawing.Point(0, 55);
            this.groupBox1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
            this.groupBox1.Size = new System.Drawing.Size(1006, 61);
            this.groupBox1.TabIndex = 63;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Tìm Kiếm";
            // 
            // pgbStatus
            // 
            this.pgbStatus.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.pgbStatus.Location = new System.Drawing.Point(262, 35);
            this.pgbStatus.MarqueeAnimationSpeed = 50;
            this.pgbStatus.Name = "pgbStatus";
            this.pgbStatus.Size = new System.Drawing.Size(635, 20);
            this.pgbStatus.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
            this.pgbStatus.TabIndex = 9;
            this.pgbStatus.Visible = false;
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(166, 37);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(90, 13);
            this.label8.TabIndex = 8;
            this.label8.Text = "XN Chưa đăng ký";
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(32, 37);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(90, 13);
            this.label7.TabIndex = 8;
            this.label7.Text = "BN Chưa đăng ký";
            // 
            // label6
            // 
            this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label6.BackColor = System.Drawing.Color.Gainsboro;
            this.label6.Location = new System.Drawing.Point(142, 34);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(20, 20);
            this.label6.TabIndex = 4;
            // 
            // cboStatus
            // 
            this.cboStatus.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "Tất Cả";
            uiComboBoxItem1.Value = -1;
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "Các XN chưa đăng ký";
            uiComboBoxItem2.Value = 0;
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "Các XN đã đăng ký";
            uiComboBoxItem3.Value = 1;
            this.cboStatus.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3});
            this.cboStatus.Location = new System.Drawing.Point(414, 13);
            this.cboStatus.Name = "cboStatus";
            this.cboStatus.Size = new System.Drawing.Size(107, 21);
            this.cboStatus.TabIndex = 7;
            // 
            // label5
            // 
            this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label5.BackColor = System.Drawing.Color.Wheat;
            this.label5.Location = new System.Drawing.Point(9, 34);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(20, 20);
            this.label5.TabIndex = 3;
            // 
            // btnSearch
            // 
            this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.btnSearch.Image = ((System.Drawing.Image)(resources.GetObject("btnSearch.Image")));
            this.btnSearch.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.btnSearch.Location = new System.Drawing.Point(902, 12);
            this.btnSearch.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
            this.btnSearch.Name = "btnSearch";
            this.btnSearch.Size = new System.Drawing.Size(99, 41);
            this.btnSearch.TabIndex = 6;
            this.btnSearch.Text = "Tìm Kiếm";
            this.btnSearch.UseVisualStyleBackColor = true;
            this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
            // 
            // cboTestTypeList
            // 
            this.cboTestTypeList.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboTestTypeList.DropDownWidth = 250;
            this.cboTestTypeList.FormattingEnabled = true;
            this.cboTestTypeList.Location = new System.Drawing.Point(616, 13);
            this.cboTestTypeList.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
            this.cboTestTypeList.Name = "cboTestTypeList";
            this.cboTestTypeList.Size = new System.Drawing.Size(125, 21);
            this.cboTestTypeList.TabIndex = 5;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(529, 17);
            this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(83, 13);
            this.label4.TabIndex = 4;
            this.label4.Text = "Loại Xét Nghiệm";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(327, 17);
            this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(81, 13);
            this.label3.TabIndex = 4;
            this.label3.Text = "Trạng Thái Mẫu";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(166, 16);
            this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(55, 13);
            this.label2.TabIndex = 3;
            this.label2.Text = "Đến Ngày";
            // 
            // dtpToDate
            // 
            this.dtpToDate.CustomFormat = "dd/MM/yyyy";
            this.dtpToDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtpToDate.Location = new System.Drawing.Point(224, 13);
            this.dtpToDate.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
            this.dtpToDate.Name = "dtpToDate";
            this.dtpToDate.Size = new System.Drawing.Size(99, 21);
            this.dtpToDate.TabIndex = 2;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(7, 16);
            this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(48, 13);
            this.label1.TabIndex = 1;
            this.label1.Text = "Từ Ngày";
            // 
            // dtpFromDate
            // 
            this.dtpFromDate.CustomFormat = "dd/MM/yyyy";
            this.dtpFromDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtpFromDate.Location = new System.Drawing.Point(61, 13);
            this.dtpFromDate.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
            this.dtpFromDate.Name = "dtpFromDate";
            this.dtpFromDate.Size = new System.Drawing.Size(101, 21);
            this.dtpFromDate.TabIndex = 0;
            // 
            // splitContainer1
            // 
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.Location = new System.Drawing.Point(0, 116);
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.grbDanhSachBenhNhan);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.grbResult);
            this.splitContainer1.Size = new System.Drawing.Size(1006, 357);
            this.splitContainer1.SplitterDistance = 491;
            this.splitContainer1.TabIndex = 64;
            // 
            // grbDanhSachBenhNhan
            // 
            this.grbDanhSachBenhNhan.Controls.Add(this.btnPrint);
            this.grbDanhSachBenhNhan.Controls.Add(this.btnExport);
            this.grbDanhSachBenhNhan.Controls.Add(this.grdPatient);
            this.grbDanhSachBenhNhan.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grbDanhSachBenhNhan.Location = new System.Drawing.Point(0, 0);
            this.grbDanhSachBenhNhan.Name = "grbDanhSachBenhNhan";
            this.grbDanhSachBenhNhan.Size = new System.Drawing.Size(491, 357);
            this.grbDanhSachBenhNhan.TabIndex = 0;
            this.grbDanhSachBenhNhan.TabStop = false;
            this.grbDanhSachBenhNhan.Text = "Danh Sách Bệnh Nhân";
            // 
            // btnPrint
            // 
            this.btnPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnPrint.Image = ((System.Drawing.Image)(resources.GetObject("btnPrint.Image")));
            this.btnPrint.Location = new System.Drawing.Point(218, 330);
            this.btnPrint.Name = "btnPrint";
            this.btnPrint.Size = new System.Drawing.Size(129, 26);
            this.btnPrint.TabIndex = 4;
            this.btnPrint.Text = "In Báo Cáo";
            this.btnPrint.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.btnPrint.UseVisualStyleBackColor = true;
            this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
            // 
            // btnExport
            // 
            this.btnExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnExport.Image = ((System.Drawing.Image)(resources.GetObject("btnExport.Image")));
            this.btnExport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.btnExport.Location = new System.Drawing.Point(351, 330);
            this.btnExport.Name = "btnExport";
            this.btnExport.Size = new System.Drawing.Size(131, 26);
            this.btnExport.TabIndex = 3;
            this.btnExport.Text = "Export to Excel";
            this.btnExport.UseVisualStyleBackColor = true;
            this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
            // 
            // grdPatient
            // 
            this.grdPatient.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grdPatient.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)));
            grdPatient_DesignTimeLayout.LayoutString = resources.GetString("grdPatient_DesignTimeLayout.LayoutString");
            this.grdPatient.DesignTimeLayout = grdPatient_DesignTimeLayout;
            this.grdPatient.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdPatient.FilterRowButtonStyle = Janus.Windows.GridEX.FilterRowButtonStyle.ConditionOperatorDropDown;
            this.grdPatient.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdPatient.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
            this.grdPatient.GroupByBoxVisible = false;
            this.grdPatient.GroupRowFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
            this.grdPatient.GroupRowFormatStyle.ForeColor = System.Drawing.Color.Maroon;
            this.grdPatient.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdPatient.Location = new System.Drawing.Point(3, 17);
            this.grdPatient.Name = "grdPatient";
            this.grdPatient.RecordNavigator = true;
            this.grdPatient.RowHeaderContent = Janus.Windows.GridEX.RowHeaderContent.RowIndex;
            this.grdPatient.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdPatient.SelectionMode = Janus.Windows.GridEX.SelectionMode.MultipleSelectionSameTable;
            this.grdPatient.Size = new System.Drawing.Size(482, 312);
            this.grdPatient.TabIndex = 2;
            this.grdPatient.SelectionChanged += new System.EventHandler(this.grdPatient_SelectionChanged);
            // 
            // grbResult
            // 
            this.grbResult.Controls.Add(this.grdTestResult);
            this.grbResult.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grbResult.Location = new System.Drawing.Point(0, 0);
            this.grbResult.Name = "grbResult";
            this.grbResult.Size = new System.Drawing.Size(511, 357);
            this.grbResult.TabIndex = 1;
            this.grbResult.TabStop = false;
            this.grbResult.Text = "Kết Quả";
            // 
            // grdTestResult
            // 
            this.grdTestResult.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grdTestResult.AlternatingColors = true;
            grdTestResult_DesignTimeLayout.LayoutString = resources.GetString("grdTestResult_DesignTimeLayout.LayoutString");
            this.grdTestResult.DesignTimeLayout = grdTestResult_DesignTimeLayout;
            this.grdTestResult.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdTestResult.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdTestResult.GroupByBoxVisible = false;
            this.grdTestResult.GroupRowFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
            this.grdTestResult.GroupRowFormatStyle.ForeColor = System.Drawing.Color.Maroon;
            this.grdTestResult.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdTestResult.Location = new System.Drawing.Point(3, 17);
            this.grdTestResult.Name = "grdTestResult";
            this.grdTestResult.RecordNavigator = true;
            this.grdTestResult.RowHeaderContent = Janus.Windows.GridEX.RowHeaderContent.RowIndex;
            this.grdTestResult.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdTestResult.Size = new System.Drawing.Size(505, 337);
            this.grdTestResult.TabIndex = 3;
            this.grdTestResult.FormattingRow += new Janus.Windows.GridEX.RowLoadEventHandler(this.grdTestResult_FormattingRow);
            // 
            // Frm_PatientNoBarcode
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1006, 473);
            this.Controls.Add(this.splitContainer1);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.Panel7);
            this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
            this.MinimumSize = new System.Drawing.Size(749, 303);
            this.Name = "Frm_PatientNoBarcode";
            this.Text = "Thống kê số lượng mẫu";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.Frm_PatientNoBarcode_Load);
            this.Panel7.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox6)).EndInit();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            this.splitContainer1.ResumeLayout(false);
            this.grbDanhSachBenhNhan.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdPatient)).EndInit();
            this.grbResult.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdTestResult)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            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.GridEX.GridEXLayout grdListKhoa_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_KCB_DANGKY));
            Janus.Windows.GridEX.GridEXLayout cboKieuKham_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.GridEX.GridEXLayout grdRegExam_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            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();
            this.uiStatusBar1 = new Janus.Windows.UI.StatusBar.UIStatusBar();
            this.grpChoKham = new Janus.Windows.EditControls.UIGroupBox();
            this.grdListKhoa = new Janus.Windows.GridEX.GridEX();
            this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
            this.chkTudongthemmoi = new System.Windows.Forms.CheckBox();
            this.cmdQMSProperty = new Janus.Windows.EditControls.UIButton();
            this.cmdConfig = new Janus.Windows.EditControls.UIButton();
            this.cmdThemMoiBN = new Janus.Windows.EditControls.UIButton();
            this.cmdSave = new Janus.Windows.EditControls.UIButton();
            this.barcode = new Mabry.Windows.Forms.Barcode.Barcode();
            this.pThongTinQMS = new System.Windows.Forms.Panel();
            this.cmdRestore = new System.Windows.Forms.Button();
            this.lnkRestoreIgnoreQMS = new System.Windows.Forms.LinkLabel();
            this.lblThongbaouutien = new System.Windows.Forms.Label();
            this.txtTS = new System.Windows.Forms.TextBox();
            this.txtSoQMS = new System.Windows.Forms.TextBox();
            this.lblQMS = new System.Windows.Forms.Label();
            this.chkUuTien = new Janus.Windows.EditControls.UICheckBox();
            this.cmdStart = new System.Windows.Forms.Button();
            this.cmdStop = new System.Windows.Forms.Button();
            this.cmdGoiSoKham = new System.Windows.Forms.Button();
            this.cmdXoaSoKham = new System.Windows.Forms.Button();
            this.label5 = new System.Windows.Forms.Label();
            this.txtIDKieuKham = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label23 = new System.Windows.Forms.Label();
            this.lblNamsinh = new System.Windows.Forms.Label();
            this.cboKieuKham = new Janus.Windows.GridEX.EditControls.MultiColumnCombo();
            this.label22 = new System.Windows.Forms.Label();
            this.label21 = new System.Windows.Forms.Label();
            this.label35 = new System.Windows.Forms.Label();
            this.label17 = new System.Windows.Forms.Label();
            this.lnkThem = new System.Windows.Forms.LinkLabel();
            this.lblDiachiBHYT = new System.Windows.Forms.Label();
            this.lblNoiCapThe = new System.Windows.Forms.Label();
            this.label24 = new System.Windows.Forms.Label();
            this.lblClinicName = new System.Windows.Forms.Label();
            this.label20 = new System.Windows.Forms.Label();
            this.label40 = new System.Windows.Forms.Label();
            this.label39 = new System.Windows.Forms.Label();
            this.dtInsToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.dtInsFromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.chkChuyenVien = new Janus.Windows.EditControls.UICheckBox();
            this.chkTraiTuyen = new Janus.Windows.EditControls.UICheckBox();
            this.lblMatheBHYT = new System.Windows.Forms.Label();
            this.lblPtram = new System.Windows.Forms.Label();
            this.label25 = new System.Windows.Forms.Label();
            this.chkCapCuu = new Janus.Windows.EditControls.UICheckBox();
            this.label14 = new System.Windows.Forms.Label();
            this.label12 = new System.Windows.Forms.Label();
            this.cboPatientSex = new Janus.Windows.EditControls.UIComboBox();
            this.label11 = new System.Windows.Forms.Label();
            this.label9 = new System.Windows.Forms.Label();
            this.txtTuoi = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
            this.lblTuoi = new System.Windows.Forms.Label();
            this.lblHoten = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.dtCreateDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.txtIDPkham = new Janus.Windows.GridEX.EditControls.EditBox();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.cmdThemmoiDiachinh = new Janus.Windows.EditControls.UIButton();
            this.txtLoaiBN = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.txtMaDTsinhsong = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.txtTrieuChungBD = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.txtDantoc = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.label6 = new System.Windows.Forms.Label();
            this.lblDiachiBN = new System.Windows.Forms.Label();
            this.txtMaQuyenloi_BHYT = new System.Windows.Forms.TextBox();
            this.txtNoiphattheBHYT = new System.Windows.Forms.TextBox();
            this.txtOthu4 = new System.Windows.Forms.TextBox();
            this.txtOthu5 = new System.Windows.Forms.TextBox();
            this.txtOthu6 = new System.Windows.Forms.TextBox();
            this.txtNoiDongtrusoKCBBD = new System.Windows.Forms.TextBox();
            this.txtNoiDKKCBBD = new System.Windows.Forms.TextBox();
            this.txtPtramBHYT = new System.Windows.Forms.TextBox();
            this.pnlBHYT = new System.Windows.Forms.Panel();
            this.lblPtramdauthe = new System.Windows.Forms.Label();
            this.txtptramDauthe = new System.Windows.Forms.TextBox();
            this.lblTuyenBHYT = new System.Windows.Forms.Label();
            this.label13 = new System.Windows.Forms.Label();
            this.chkGiayBHYT = new Janus.Windows.EditControls.UICheckBox();
            this.txtMaDtuong_BHYT2 = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.txtMaDtuong_BHYT = new System.Windows.Forms.TextBox();
            this.txtDiachi_bhyt = new VNS.HIS.UCs.AutoCompleteTextbox_Diachi();
            this.cmdGetBV = new Janus.Windows.EditControls.UIButton();
            this.txtTEN_BN = new System.Windows.Forms.TextBox();
            this.txtCMT = new System.Windows.Forms.TextBox();
            this.ctxBOD = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.mnuBOD = new System.Windows.Forms.ToolStripMenuItem();
            this.txtEmail = new System.Windows.Forms.TextBox();
            this.txtMaBN = new System.Windows.Forms.TextBox();
            this.txtMaLankham = new System.Windows.Forms.TextBox();
            this.txtSolankham = new System.Windows.Forms.TextBox();
            this.pnlMain = new System.Windows.Forms.Panel();
            this.pnlFill = new System.Windows.Forms.Panel();
            this.pnlRight = new System.Windows.Forms.Panel();
            this.uiGroupBox3 = new Janus.Windows.EditControls.UIGroupBox();
            this.grdRegExam = new Janus.Windows.GridEX.GridEX();
            this.pnlnutchucnang = new System.Windows.Forms.Panel();
            this.panel3 = new System.Windows.Forms.Panel();
            this.lblStatus = new System.Windows.Forms.Label();
            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.panel2 = new System.Windows.Forms.Panel();
            this.txtSoBATCQG = new System.Windows.Forms.TextBox();
            this.lblBATC = new System.Windows.Forms.Label();
            this.txtSoBA = new System.Windows.Forms.TextBox();
            this.label26 = new System.Windows.Forms.Label();
            this.label19 = new System.Windows.Forms.Label();
            this.txtLoaikham = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.lblLoaituoi = new System.Windows.Forms.Label();
            this.txtSoDT = new System.Windows.Forms.TextBox();
            this.txtNguoiLienhe = new System.Windows.Forms.TextBox();
            this.label4 = new System.Windows.Forms.Label();
            this.chkLaysokham = new Janus.Windows.EditControls.UICheckBox();
            this.txtSoKcb = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.txtXaphuong = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.label16 = new System.Windows.Forms.Label();
            this.txtQuanhuyen = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.label15 = new System.Windows.Forms.Label();
            this.txtTinhTp = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.chkTpQH = new System.Windows.Forms.CheckBox();
            this.txtNgheNghiep = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.panel5 = new System.Windows.Forms.Panel();
            this.pnlChonphongkham = new System.Windows.Forms.Panel();
            this.txtExamtypeCode = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.txtMyNameEdit = new Janus.Windows.GridEX.EditControls.EditBox();
            this.pnlChonKieukham = new System.Windows.Forms.Panel();
            this.txtKieuKham = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.txtPhongkham = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.txtDiachi = new VNS.HIS.UCs.AutoCompleteTextbox_Diachi();
            this.dtpBOD = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.label10 = new System.Windows.Forms.Label();
            this.txtNoigioithieu = new System.Windows.Forms.TextBox();
            this.label7 = new System.Windows.Forms.Label();
            this.txtNoichuyenden = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.cboDoituongKCB = new Janus.Windows.EditControls.UIComboBox();
            this.dtpInputDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.panel1 = new System.Windows.Forms.Panel();
            this.pnlTieuDe = new System.Windows.Forms.Panel();
            this.label18 = new System.Windows.Forms.Label();
            this.panel4 = new System.Windows.Forms.Panel();
            this.vbLine2 = new VNS.UCs.VBLine();
            this.vbLine1 = new VNS.UCs.VBLine();
            this.lblDoituongKCB = new System.Windows.Forms.Label();
            this.pnlBottom = new System.Windows.Forms.Panel();
            this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.grpChoKham)).BeginInit();
            this.grpChoKham.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdListKhoa)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
            this.uiGroupBox2.SuspendLayout();
            this.pThongTinQMS.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cboKieuKham)).BeginInit();
            this.pnlBHYT.SuspendLayout();
            this.ctxBOD.SuspendLayout();
            this.pnlMain.SuspendLayout();
            this.pnlFill.SuspendLayout();
            this.pnlRight.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).BeginInit();
            this.uiGroupBox3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdRegExam)).BeginInit();
            this.pnlnutchucnang.SuspendLayout();
            this.panel3.SuspendLayout();
            this.pnlPrint.SuspendLayout();
            this.panel2.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.panel5.SuspendLayout();
            this.pnlChonphongkham.SuspendLayout();
            this.pnlChonKieukham.SuspendLayout();
            this.tabPage2.SuspendLayout();
            this.panel1.SuspendLayout();
            this.pnlTieuDe.SuspendLayout();
            this.pnlBottom.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
            this.SuspendLayout();
            // 
            // 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, 707);
            this.uiStatusBar1.Name = "uiStatusBar1";
            uiStatusBarPanel1.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel1.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel1.FormatStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            uiStatusBarPanel1.Key = "";
            uiStatusBarPanel1.ProgressBarValue = 0;
            uiStatusBarPanel1.Text = "Ctrl+N: Thêm mới BN";
            uiStatusBarPanel1.Width = 133;
            uiStatusBarPanel2.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel2.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel2.FormatStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            uiStatusBarPanel2.Key = "";
            uiStatusBarPanel2.ProgressBarValue = 0;
            uiStatusBarPanel2.Text = "Ctrl+S: Lưu lại";
            uiStatusBarPanel2.Width = 93;
            uiStatusBarPanel3.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel3.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel3.FormatStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            uiStatusBarPanel3.Key = "";
            uiStatusBarPanel3.ProgressBarValue = 0;
            uiStatusBarPanel3.Text = "Esc: Thoát Form";
            uiStatusBarPanel3.Width = 105;
            uiStatusBarPanel4.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel4.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel4.FormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            uiStatusBarPanel4.FormatStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            uiStatusBarPanel4.Key = "MSG";
            uiStatusBarPanel4.ProgressBarValue = 0;
            uiStatusBarPanel4.Text = "Thông báo:";
            uiStatusBarPanel4.Width = 77;
            this.uiStatusBar1.Panels.AddRange(new Janus.Windows.UI.StatusBar.UIStatusBarPanel[] {
            uiStatusBarPanel1,
            uiStatusBarPanel2,
            uiStatusBarPanel3,
            uiStatusBarPanel4});
            this.uiStatusBar1.Size = new System.Drawing.Size(1008, 23);
            this.uiStatusBar1.TabIndex = 0;
            this.uiStatusBar1.TabStop = false;
            this.uiStatusBar1.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
            // 
            // grpChoKham
            // 
            this.grpChoKham.Controls.Add(this.grdListKhoa);
            this.grpChoKham.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grpChoKham.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grpChoKham.FrameStyle = Janus.Windows.EditControls.FrameStyle.Top;
            this.grpChoKham.Location = new System.Drawing.Point(0, 0);
            this.grpChoKham.Name = "grpChoKham";
            this.grpChoKham.Size = new System.Drawing.Size(187, 653);
            this.grpChoKham.TabIndex = 1;
            this.grpChoKham.Text = "Thông tin chờ khám";
            // 
            // grdListKhoa
            // 
            this.grdListKhoa.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grdListKhoa.BackColor = System.Drawing.Color.White;
            grdListKhoa_DesignTimeLayout.LayoutString = resources.GetString("grdListKhoa_DesignTimeLayout.LayoutString");
            this.grdListKhoa.DesignTimeLayout = grdListKhoa_DesignTimeLayout;
            this.grdListKhoa.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdListKhoa.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdListKhoa.GridLineStyle = Janus.Windows.GridEX.GridLineStyle.Solid;
            this.grdListKhoa.GroupByBoxVisible = false;
            this.grdListKhoa.Location = new System.Drawing.Point(0, 17);
            this.grdListKhoa.Name = "grdListKhoa";
            this.grdListKhoa.RecordNavigator = true;
            this.grdListKhoa.Size = new System.Drawing.Size(187, 633);
            this.grdListKhoa.TabIndex = 0;
            this.grdListKhoa.TabStop = false;
            this.grdListKhoa.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // uiGroupBox2
            // 
            this.uiGroupBox2.Controls.Add(this.chkTudongthemmoi);
            this.uiGroupBox2.Controls.Add(this.cmdQMSProperty);
            this.uiGroupBox2.Controls.Add(this.cmdConfig);
            this.uiGroupBox2.Controls.Add(this.cmdThemMoiBN);
            this.uiGroupBox2.Controls.Add(this.cmdSave);
            this.uiGroupBox2.Controls.Add(this.barcode);
            this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.uiGroupBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiGroupBox2.FrameStyle = Janus.Windows.EditControls.FrameStyle.Top;
            this.uiGroupBox2.Location = new System.Drawing.Point(0, 1);
            this.uiGroupBox2.Name = "uiGroupBox2";
            this.uiGroupBox2.Size = new System.Drawing.Size(1008, 53);
            this.uiGroupBox2.TabIndex = 2;
            this.uiGroupBox2.Text = "Chức năng";
            // 
            // chkTudongthemmoi
            // 
            this.chkTudongthemmoi.AutoSize = true;
            this.chkTudongthemmoi.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkTudongthemmoi.Location = new System.Drawing.Point(3, 23);
            this.chkTudongthemmoi.Name = "chkTudongthemmoi";
            this.chkTudongthemmoi.Size = new System.Drawing.Size(240, 19);
            this.chkTudongthemmoi.TabIndex = 443;
            this.chkTudongthemmoi.Text = "Tự động thêm mới Bệnh nhân liên tục?";
            this.toolTip1.SetToolTip(this.chkTudongthemmoi, "Chọn mục này nếu bạn muốn hệ thống tự động chuyển sang chế độ thêm mới Bệnh nhân " +
        "khác ngay sau khi bạn vừa lưu xong Bệnh nhân hiện tại");
            this.chkTudongthemmoi.UseVisualStyleBackColor = true;
            // 
            // cmdQMSProperty
            // 
            this.cmdQMSProperty.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdQMSProperty.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdQMSProperty.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdQMSProperty.Location = new System.Drawing.Point(962, 13);
            this.cmdQMSProperty.Name = "cmdQMSProperty";
            this.cmdQMSProperty.Size = new System.Drawing.Size(43, 34);
            this.cmdQMSProperty.TabIndex = 31;
            this.cmdQMSProperty.TabStop = false;
            this.cmdQMSProperty.Text = "QMS";
            this.toolTip1.SetToolTip(this.cmdQMSProperty, "Cấu hình QMS tại máy tiếp đón");
            // 
            // cmdConfig
            // 
            this.cmdConfig.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdConfig.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdConfig.Image = ((System.Drawing.Image)(resources.GetObject("cmdConfig.Image")));
            this.cmdConfig.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdConfig.Location = new System.Drawing.Point(913, 13);
            this.cmdConfig.Name = "cmdConfig";
            this.cmdConfig.Size = new System.Drawing.Size(43, 34);
            this.cmdConfig.TabIndex = 30;
            this.cmdConfig.TabStop = false;
            // 
            // cmdThemMoiBN
            // 
            this.cmdThemMoiBN.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdThemMoiBN.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemMoiBN.Image")));
            this.cmdThemMoiBN.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdThemMoiBN.Location = new System.Drawing.Point(350, 10);
            this.cmdThemMoiBN.Name = "cmdThemMoiBN";
            this.cmdThemMoiBN.Size = new System.Drawing.Size(136, 34);
            this.cmdThemMoiBN.TabIndex = 28;
            this.cmdThemMoiBN.Text = "&Thêm mới";
            this.cmdThemMoiBN.ToolTipText = "Nhấn vào đây để thêm mới Bệnh nhân";
            // 
            // cmdSave
            // 
            this.cmdSave.Font = new System.Drawing.Font("Arial", 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(489, 10);
            this.cmdSave.Name = "cmdSave";
            this.cmdSave.Size = new System.Drawing.Size(145, 34);
            this.cmdSave.TabIndex = 27;
            this.cmdSave.Text = "Ghi (Ctrl+S)";
            this.cmdSave.ToolTipText = "Nhấn vào đây để lưu thông tin bệnh nhân";
            // 
            // barcode
            // 
            this.barcode.BackColor = System.Drawing.Color.White;
            this.barcode.BarColor = System.Drawing.Color.Black;
            this.barcode.BarRatio = 2F;
            this.barcode.Data = "123456789";
            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(754, 10);
            this.barcode.Name = "barcode";
            this.barcode.Size = new System.Drawing.Size(141, 66);
            this.barcode.Symbology = Mabry.Windows.Forms.Barcode.Barcode.BarcodeSymbologies.Code128;
            this.barcode.TabIndex = 442;
            this.barcode.TabStop = false;
            this.barcode.Text = "123456789";
            this.barcode.Visible = false;
            // 
            // pThongTinQMS
            // 
            this.pThongTinQMS.Controls.Add(this.cmdRestore);
            this.pThongTinQMS.Controls.Add(this.lnkRestoreIgnoreQMS);
            this.pThongTinQMS.Controls.Add(this.lblThongbaouutien);
            this.pThongTinQMS.Controls.Add(this.txtTS);
            this.pThongTinQMS.Controls.Add(this.txtSoQMS);
            this.pThongTinQMS.Controls.Add(this.lblQMS);
            this.pThongTinQMS.Controls.Add(this.chkUuTien);
            this.pThongTinQMS.Controls.Add(this.cmdStart);
            this.pThongTinQMS.Controls.Add(this.cmdStop);
            this.pThongTinQMS.Controls.Add(this.cmdGoiSoKham);
            this.pThongTinQMS.Controls.Add(this.cmdXoaSoKham);
            this.pThongTinQMS.Controls.Add(this.label5);
            this.pThongTinQMS.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pThongTinQMS.Location = new System.Drawing.Point(0, 0);
            this.pThongTinQMS.Name = "pThongTinQMS";
            this.pThongTinQMS.Size = new System.Drawing.Size(821, 44);
            this.pThongTinQMS.TabIndex = 200;
            // 
            // cmdRestore
            // 
            this.cmdRestore.BackColor = System.Drawing.SystemColors.Control;
            this.cmdRestore.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("cmdRestore.BackgroundImage")));
            this.cmdRestore.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.cmdRestore.Location = new System.Drawing.Point(765, 2);
            this.cmdRestore.Name = "cmdRestore";
            this.cmdRestore.Size = new System.Drawing.Size(40, 40);
            this.cmdRestore.TabIndex = 596;
            this.cmdRestore.TabStop = false;
            this.toolTip1.SetToolTip(this.cmdRestore, "Khôi phục số khám bị bỏ qua, bị hủy...");
            this.cmdRestore.UseVisualStyleBackColor = false;
            // 
            // lnkRestoreIgnoreQMS
            // 
            this.lnkRestoreIgnoreQMS.AutoSize = true;
            this.lnkRestoreIgnoreQMS.Enabled = false;
            this.lnkRestoreIgnoreQMS.Location = new System.Drawing.Point(568, 27);
            this.lnkRestoreIgnoreQMS.Name = "lnkRestoreIgnoreQMS";
            this.lnkRestoreIgnoreQMS.Size = new System.Drawing.Size(188, 13);
            this.lnkRestoreIgnoreQMS.TabIndex = 539;
            this.lnkRestoreIgnoreQMS.TabStop = true;
            this.lnkRestoreIgnoreQMS.Text = "Khôi phục số khám bị bỏ qua, bị hủy...";
            this.lnkRestoreIgnoreQMS.Visible = false;
            // 
            // lblThongbaouutien
            // 
            this.lblThongbaouutien.Dock = System.Windows.Forms.DockStyle.Right;
            this.lblThongbaouutien.Font = new System.Drawing.Font("Arial", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblThongbaouutien.ForeColor = System.Drawing.Color.Red;
            this.lblThongbaouutien.Location = new System.Drawing.Point(811, 0);
            this.lblThongbaouutien.Name = "lblThongbaouutien";
            this.lblThongbaouutien.Size = new System.Drawing.Size(10, 44);
            this.lblThongbaouutien.TabIndex = 595;
            this.lblThongbaouutien.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // txtTS
            // 
            this.txtTS.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtTS.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
            this.txtTS.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtTS.Location = new System.Drawing.Point(265, 4);
            this.txtTS.MaxLength = 10;
            this.txtTS.Name = "txtTS";
            this.txtTS.ReadOnly = true;
            this.txtTS.Size = new System.Drawing.Size(112, 38);
            this.txtTS.TabIndex = 593;
            this.txtTS.TabStop = false;
            this.txtTS.Text = "00";
            this.txtTS.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtSoQMS
            // 
            this.txtSoQMS.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtSoQMS.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
            this.txtSoQMS.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtSoQMS.Location = new System.Drawing.Point(115, 4);
            this.txtSoQMS.MaxLength = 10;
            this.txtSoQMS.Name = "txtSoQMS";
            this.txtSoQMS.ReadOnly = true;
            this.txtSoQMS.Size = new System.Drawing.Size(112, 38);
            this.txtSoQMS.TabIndex = 592;
            this.txtSoQMS.TabStop = false;
            this.txtSoQMS.Text = "00";
            this.txtSoQMS.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // lblQMS
            // 
            this.lblQMS.Dock = System.Windows.Forms.DockStyle.Left;
            this.lblQMS.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblQMS.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.lblQMS.Location = new System.Drawing.Point(0, 0);
            this.lblQMS.Name = "lblQMS";
            this.lblQMS.Size = new System.Drawing.Size(115, 44);
            this.lblQMS.TabIndex = 594;
            this.lblQMS.Text = "Hệ thống thông tin hàng đợi QMS:";
            this.lblQMS.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // chkUuTien
            // 
            this.chkUuTien.Enabled = false;
            this.chkUuTien.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkUuTien.Location = new System.Drawing.Point(569, 3);
            this.chkUuTien.Name = "chkUuTien";
            this.chkUuTien.Size = new System.Drawing.Size(152, 23);
            this.chkUuTien.TabIndex = 10;
            this.chkUuTien.TabStop = false;
            this.chkUuTien.Text = "Đối tượng ưu tiên";
            this.chkUuTien.Visible = false;
            this.chkUuTien.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
            // 
            // cmdStart
            // 
            this.cmdStart.BackColor = System.Drawing.SystemColors.Control;
            this.cmdStart.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("cmdStart.BackgroundImage")));
            this.cmdStart.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
            this.cmdStart.Location = new System.Drawing.Point(481, 3);
            this.cmdStart.Name = "cmdStart";
            this.cmdStart.Size = new System.Drawing.Size(40, 40);
            this.cmdStart.TabIndex = 62;
            this.cmdStart.TabStop = false;
            this.toolTip1.SetToolTip(this.cmdStart, "Kích hoạt gọi số khám");
            this.cmdStart.UseVisualStyleBackColor = false;
            // 
            // cmdStop
            // 
            this.cmdStop.BackColor = System.Drawing.SystemColors.Control;
            this.cmdStop.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("cmdStop.BackgroundImage")));
            this.cmdStop.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
            this.cmdStop.Location = new System.Drawing.Point(439, 3);
            this.cmdStop.Name = "cmdStop";
            this.cmdStop.Size = new System.Drawing.Size(40, 40);
            this.cmdStop.TabIndex = 61;
            this.cmdStop.TabStop = false;
            this.toolTip1.SetToolTip(this.cmdStop, "Tạm dừng gọi số khám");
            this.cmdStop.UseVisualStyleBackColor = false;
            // 
            // cmdGoiSoKham
            // 
            this.cmdGoiSoKham.BackColor = System.Drawing.SystemColors.Control;
            this.cmdGoiSoKham.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("cmdGoiSoKham.BackgroundImage")));
            this.cmdGoiSoKham.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.cmdGoiSoKham.Location = new System.Drawing.Point(398, 2);
            this.cmdGoiSoKham.Name = "cmdGoiSoKham";
            this.cmdGoiSoKham.Size = new System.Drawing.Size(40, 40);
            this.cmdGoiSoKham.TabIndex = 60;
            this.cmdGoiSoKham.TabStop = false;
            this.toolTip1.SetToolTip(this.cmdGoiSoKham, "Gọi số khám tiếp theo");
            this.cmdGoiSoKham.UseVisualStyleBackColor = false;
            // 
            // cmdXoaSoKham
            // 
            this.cmdXoaSoKham.BackColor = System.Drawing.SystemColors.Control;
            this.cmdXoaSoKham.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("cmdXoaSoKham.BackgroundImage")));
            this.cmdXoaSoKham.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.cmdXoaSoKham.Location = new System.Drawing.Point(522, 2);
            this.cmdXoaSoKham.Name = "cmdXoaSoKham";
            this.cmdXoaSoKham.Size = new System.Drawing.Size(40, 40);
            this.cmdXoaSoKham.TabIndex = 63;
            this.cmdXoaSoKham.TabStop = false;
            this.toolTip1.SetToolTip(this.cmdXoaSoKham, "Xóa số thứ tự");
            this.cmdXoaSoKham.UseVisualStyleBackColor = false;
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label5.Location = new System.Drawing.Point(231, 6);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(23, 31);
            this.label5.TabIndex = 8;
            this.label5.Text = "/";
            // 
            // 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(7, 465);
            this.txtIDKieuKham.Name = "txtIDKieuKham";
            this.txtIDKieuKham.Size = new System.Drawing.Size(12, 23);
            this.txtIDKieuKham.TabIndex = 539;
            this.txtIDKieuKham.TabStop = false;
            this.txtIDKieuKham.Visible = false;
            // 
            // 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.Navy;
            this.label23.Location = new System.Drawing.Point(385, 4);
            this.label23.Name = "label23";
            this.label23.Size = new System.Drawing.Size(98, 21);
            this.label23.TabIndex = 538;
            this.label23.Text = "Phòng khám:";
            this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblNamsinh
            // 
            this.lblNamsinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblNamsinh.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.lblNamsinh.Location = new System.Drawing.Point(497, 10);
            this.lblNamsinh.Name = "lblNamsinh";
            this.lblNamsinh.Size = new System.Drawing.Size(77, 21);
            this.lblNamsinh.TabIndex = 448;
            this.lblNamsinh.Text = "Năm sinh:";
            this.lblNamsinh.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cboKieuKham
            // 
            this.cboKieuKham.AllowDrop = true;
            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.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboKieuKham.HoverMode = Janus.Windows.GridEX.HoverMode.Highlight;
            this.cboKieuKham.Location = new System.Drawing.Point(98, 3);
            this.cboKieuKham.Name = "cboKieuKham";
            this.cboKieuKham.SelectedIndex = -1;
            this.cboKieuKham.SelectedItem = null;
            this.cboKieuKham.Size = new System.Drawing.Size(594, 21);
            this.cboKieuKham.TabIndex = 24;
            this.cboKieuKham.Text = "CHỌN DỊCH VỤ KCB";
            this.cboKieuKham.ValueMember = "ID";
            this.cboKieuKham.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
            // 
            // label22
            // 
            this.label22.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label22.Location = new System.Drawing.Point(50, 86);
            this.label22.Name = "label22";
            this.label22.Size = new System.Drawing.Size(56, 21);
            this.label22.TabIndex = 445;
            this.label22.Text = "Email:";
            this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label21
            // 
            this.label21.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label21.Location = new System.Drawing.Point(477, 39);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(98, 21);
            this.label21.TabIndex = 443;
            this.label21.Text = "Nghề nghiệp:";
            this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // 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.Navy;
            this.label35.Location = new System.Drawing.Point(1, 137);
            this.label35.Name = "label35";
            this.label35.Size = new System.Drawing.Size(108, 21);
            this.label35.TabIndex = 439;
            this.label35.Text = "Dịch vụ khám:";
            this.label35.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label17
            // 
            this.label17.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label17.Location = new System.Drawing.Point(1, 88);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(108, 21);
            this.label17.TabIndex = 418;
            this.label17.Text = "Triệu chứng BĐ:";
            this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lnkThem
            // 
            this.lnkThem.AutoSize = true;
            this.lnkThem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lnkThem.Location = new System.Drawing.Point(597, 63);
            this.lnkThem.Name = "lnkThem";
            this.lnkThem.Size = new System.Drawing.Size(130, 15);
            this.lnkThem.TabIndex = 538;
            this.lnkThem.TabStop = true;
            this.lnkThem.Text = "Thêm mới nơi KCBBĐ";
            this.toolTip1.SetToolTip(this.lnkThem, "Nhấn vào đây để thêm mới nơi ĐKKCB ban đầu");
            this.lnkThem.Visible = false;
            // 
            // lblDiachiBHYT
            // 
            this.lblDiachiBHYT.BackColor = System.Drawing.Color.Transparent;
            this.lblDiachiBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblDiachiBHYT.Location = new System.Drawing.Point(6, 58);
            this.lblDiachiBHYT.Name = "lblDiachiBHYT";
            this.lblDiachiBHYT.Size = new System.Drawing.Size(115, 21);
            this.lblDiachiBHYT.TabIndex = 537;
            this.lblDiachiBHYT.Text = "Địa chỉ BHYT:";
            this.lblDiachiBHYT.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblNoiCapThe
            // 
            this.lblNoiCapThe.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblNoiCapThe.Location = new System.Drawing.Point(588, 41);
            this.lblNoiCapThe.Name = "lblNoiCapThe";
            this.lblNoiCapThe.Size = new System.Drawing.Size(221, 18);
            this.lblNoiCapThe.TabIndex = 441;
            this.lblNoiCapThe.Text = "Hà Nội";
            // 
            // label24
            // 
            this.label24.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label24.ForeColor = System.Drawing.Color.Red;
            this.label24.Location = new System.Drawing.Point(477, 61);
            this.label24.Name = "label24";
            this.label24.Size = new System.Drawing.Size(109, 21);
            this.label24.TabIndex = 440;
            this.label24.Text = "Nơi ĐKKCBBĐ :";
            this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblClinicName
            // 
            this.lblClinicName.Location = new System.Drawing.Point(588, 63);
            this.lblClinicName.Name = "lblClinicName";
            this.lblClinicName.Size = new System.Drawing.Size(221, 44);
            this.lblClinicName.TabIndex = 439;
            this.lblClinicName.Text = "ClinicName";
            this.lblClinicName.Visible = false;
            // 
            // 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.Red;
            this.label20.Location = new System.Drawing.Point(477, 38);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(109, 21);
            this.label20.TabIndex = 438;
            this.label20.Text = "Nơi cấp thẻ :";
            this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label40
            // 
            this.label40.AutoSize = true;
            this.label40.BackColor = System.Drawing.SystemColors.Control;
            this.label40.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label40.Location = new System.Drawing.Point(258, 38);
            this.label40.Name = "label40";
            this.label40.Size = new System.Drawing.Size(57, 15);
            this.label40.TabIndex = 433;
            this.label40.Text = "đến ngày";
            // 
            // label39
            // 
            this.label39.BackColor = System.Drawing.Color.Transparent;
            this.label39.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label39.ForeColor = System.Drawing.Color.Red;
            this.label39.Location = new System.Drawing.Point(6, 33);
            this.label39.Name = "label39";
            this.label39.Size = new System.Drawing.Size(115, 21);
            this.label39.TabIndex = 432;
            this.label39.Text = "Ngày đăng ký:";
            this.label39.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtInsToDate
            // 
            this.dtInsToDate.CustomFormat = "dd/MM/yyyy";
            this.dtInsToDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtInsToDate.DropDownCalendar.Name = "";
            this.dtInsToDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtInsToDate.Location = new System.Drawing.Point(317, 35);
            this.dtInsToDate.Name = "dtInsToDate";
            this.dtInsToDate.ShowUpDown = true;
            this.dtInsToDate.Size = new System.Drawing.Size(154, 21);
            this.dtInsToDate.TabIndex = 11;
            this.dtInsToDate.Value = new System.DateTime(2013, 9, 23, 0, 0, 0, 0);
            // 
            // dtInsFromDate
            // 
            this.dtInsFromDate.CustomFormat = "dd/MM/yyyy";
            this.dtInsFromDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtInsFromDate.DropDownCalendar.Name = "";
            this.dtInsFromDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtInsFromDate.Location = new System.Drawing.Point(124, 36);
            this.dtInsFromDate.Name = "dtInsFromDate";
            this.dtInsFromDate.ShowUpDown = true;
            this.dtInsFromDate.Size = new System.Drawing.Size(112, 21);
            this.dtInsFromDate.TabIndex = 10;
            this.dtInsFromDate.Value = new System.DateTime(2013, 9, 23, 0, 0, 0, 0);
            // 
            // chkChuyenVien
            // 
            this.chkChuyenVien.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkChuyenVien.Location = new System.Drawing.Point(461, 252);
            this.chkChuyenVien.Name = "chkChuyenVien";
            this.chkChuyenVien.Size = new System.Drawing.Size(111, 23);
            this.chkChuyenVien.TabIndex = 12;
            this.chkChuyenVien.TabStop = false;
            this.chkChuyenVien.Text = "BV chuyển đến";
            // 
            // chkTraiTuyen
            // 
            this.chkTraiTuyen.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkTraiTuyen.Location = new System.Drawing.Point(356, 108);
            this.chkTraiTuyen.Name = "chkTraiTuyen";
            this.chkTraiTuyen.Size = new System.Drawing.Size(99, 23);
            this.chkTraiTuyen.TabIndex = 12;
            this.chkTraiTuyen.TabStop = false;
            this.chkTraiTuyen.Text = "Trái tuyến?";
            // 
            // lblMatheBHYT
            // 
            this.lblMatheBHYT.ForeColor = System.Drawing.Color.Red;
            this.lblMatheBHYT.Location = new System.Drawing.Point(8, 9);
            this.lblMatheBHYT.Name = "lblMatheBHYT";
            this.lblMatheBHYT.Size = new System.Drawing.Size(113, 21);
            this.lblMatheBHYT.TabIndex = 421;
            this.lblMatheBHYT.Text = "Mã thẻ BHYT:";
            this.lblMatheBHYT.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblPtram
            // 
            this.lblPtram.BackColor = System.Drawing.Color.Transparent;
            this.lblPtram.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblPtram.Location = new System.Drawing.Point(477, 10);
            this.lblPtram.Name = "lblPtram";
            this.lblPtram.Size = new System.Drawing.Size(109, 21);
            this.lblPtram.TabIndex = 410;
            this.lblPtram.Text = "% BHYT:";
            this.lblPtram.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label25
            // 
            this.label25.AutoSize = true;
            this.label25.BackColor = System.Drawing.Color.Transparent;
            this.label25.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label25.Location = new System.Drawing.Point(640, 12);
            this.label25.Name = "label25";
            this.label25.Size = new System.Drawing.Size(26, 15);
            this.label25.TabIndex = 411;
            this.label25.Text = "(%)";
            // 
            // chkCapCuu
            // 
            this.chkCapCuu.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkCapCuu.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.chkCapCuu.Location = new System.Drawing.Point(123, 108);
            this.chkCapCuu.Name = "chkCapCuu";
            this.chkCapCuu.Size = new System.Drawing.Size(82, 23);
            this.chkCapCuu.TabIndex = 12;
            this.chkCapCuu.TabStop = false;
            this.chkCapCuu.Text = "Cấp cứu?";
            this.chkCapCuu.ToolTipText = "Dành cho bệnh nhân cấp cứu";
            // 
            // label14
            // 
            this.label14.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label14.ForeColor = System.Drawing.Color.Red;
            this.label14.Location = new System.Drawing.Point(406, 69);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(73, 21);
            this.label14.TabIndex = 412;
            this.label14.Text = "Lần khám:";
            this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // 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(241, 41);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(82, 15);
            this.label12.TabIndex = 407;
            this.label12.Text = "Số CMT:";
            this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cboPatientSex
            // 
            this.cboPatientSex.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboPatientSex.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "Nam";
            uiComboBoxItem1.Value = 0;
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "Nữ";
            uiComboBoxItem2.Value = 1;
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "Khác";
            uiComboBoxItem3.Value = 2;
            this.cboPatientSex.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3});
            this.cboPatientSex.Location = new System.Drawing.Point(111, 36);
            this.cboPatientSex.Name = "cboPatientSex";
            this.cboPatientSex.Size = new System.Drawing.Size(126, 21);
            this.cboPatientSex.TabIndex = 16;
            this.cboPatientSex.Text = "Giới tính";
            // 
            // label11
            // 
            this.label11.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.label11.Location = new System.Drawing.Point(1, 35);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(108, 21);
            this.label11.TabIndex = 404;
            this.label11.Text = "Giới tính";
            this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // 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(477, 90);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(98, 21);
            this.label9.TabIndex = 401;
            this.label9.Text = "Số ĐT liên hệ:";
            this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtTuoi
            // 
            this.txtTuoi.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTuoi.Location = new System.Drawing.Point(725, 9);
            this.txtTuoi.MaxLength = 3;
            this.txtTuoi.Name = "txtTuoi";
            this.txtTuoi.Numeric = true;
            this.txtTuoi.Size = new System.Drawing.Size(29, 21);
            this.txtTuoi.TabIndex = 15;
            this.txtTuoi.Text = "100";
            this.txtTuoi.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // lblTuoi
            // 
            this.lblTuoi.AutoSize = true;
            this.lblTuoi.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblTuoi.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.lblTuoi.Location = new System.Drawing.Point(691, 13);
            this.lblTuoi.Name = "lblTuoi";
            this.lblTuoi.Size = new System.Drawing.Size(31, 15);
            this.lblTuoi.TabIndex = 4;
            this.lblTuoi.Text = "Tuổi";
            // 
            // lblHoten
            // 
            this.lblHoten.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblHoten.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.lblHoten.Location = new System.Drawing.Point(1, 6);
            this.lblHoten.Name = "lblHoten";
            this.lblHoten.Size = new System.Drawing.Size(108, 21);
            this.lblHoten.TabIndex = 387;
            this.lblHoten.Text = "Tên BN :";
            this.lblHoten.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.ForeColor = System.Drawing.Color.Red;
            this.label3.Location = new System.Drawing.Point(5, 96);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(110, 21);
            this.label3.TabIndex = 385;
            this.label3.Text = "Ngày khám:";
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtCreateDate
            // 
            this.dtCreateDate.CustomFormat = "dd/MM/yyyy";
            this.dtCreateDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtCreateDate.DropDownCalendar.Name = "";
            this.dtCreateDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtCreateDate.Location = new System.Drawing.Point(118, 96);
            this.dtCreateDate.Name = "dtCreateDate";
            this.dtCreateDate.ShowUpDown = true;
            this.dtCreateDate.Size = new System.Drawing.Size(112, 21);
            this.dtCreateDate.TabIndex = 1;
            this.dtCreateDate.TabStop = false;
            this.dtCreateDate.Value = new System.DateTime(2013, 9, 23, 0, 0, 0, 0);
            // 
            // 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(237, 69);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(72, 21);
            this.label2.TabIndex = 2;
            this.label2.Text = "Mã khám :";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // 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(8, 69);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(107, 21);
            this.label1.TabIndex = 0;
            this.label1.Text = "Mã Bệnh nhân :";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // 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(25, 465);
            this.txtIDPkham.Name = "txtIDPkham";
            this.txtIDPkham.Size = new System.Drawing.Size(10, 23);
            this.txtIDPkham.TabIndex = 540;
            this.txtIDPkham.TabStop = false;
            this.txtIDPkham.Visible = false;
            // 
            // toolTip1
            // 
            this.toolTip1.IsBalloon = true;
            this.toolTip1.ToolTipTitle = "Trợ giúp";
            // 
            // cmdThemmoiDiachinh
            // 
            this.cmdThemmoiDiachinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdThemmoiDiachinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemmoiDiachinh.Image")));
            this.cmdThemmoiDiachinh.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdThemmoiDiachinh.Location = new System.Drawing.Point(462, 61);
            this.cmdThemmoiDiachinh.Name = "cmdThemmoiDiachinh";
            this.cmdThemmoiDiachinh.Size = new System.Drawing.Size(25, 25);
            this.cmdThemmoiDiachinh.TabIndex = 610;
            this.cmdThemmoiDiachinh.TabStop = false;
            this.toolTip1.SetToolTip(this.cmdThemmoiDiachinh, "Thêm mới địa chính");
            // 
            // txtLoaiBN
            // 
            this.txtLoaiBN._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtLoaiBN._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtLoaiBN.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtLoaiBN.AutoCompleteList")));
            this.txtLoaiBN.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtLoaiBN.CaseSensitive = false;
            this.txtLoaiBN.CompareNoID = true;
            this.txtLoaiBN.DefaultCode = "-1";
            this.txtLoaiBN.DefaultID = "-1";
            this.txtLoaiBN.Drug_ID = null;
            this.txtLoaiBN.ExtraWidth = 0;
            this.txtLoaiBN.FillValueAfterSelect = false;
            this.txtLoaiBN.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtLoaiBN.LOAI_DANHMUC = "NHOM_BENHNHAN";
            this.txtLoaiBN.Location = new System.Drawing.Point(111, 33);
            this.txtLoaiBN.MaxHeight = -1;
            this.txtLoaiBN.MinTypedCharacters = 2;
            this.txtLoaiBN.MyCode = "-1";
            this.txtLoaiBN.MyID = "-1";
            this.txtLoaiBN.Name = "txtLoaiBN";
            this.txtLoaiBN.RaiseEvent = false;
            this.txtLoaiBN.RaiseEventEnter = false;
            this.txtLoaiBN.RaiseEventEnterWhenEmpty = false;
            this.txtLoaiBN.SelectedIndex = -1;
            this.txtLoaiBN.Size = new System.Drawing.Size(348, 21);
            this.txtLoaiBN.splitChar = '@';
            this.txtLoaiBN.splitCharIDAndCode = '#';
            this.txtLoaiBN.TabIndex = 10;
            this.txtLoaiBN.TakeCode = false;
            this.toolTip1.SetToolTip(this.txtLoaiBN, "Nhấn vào đây để xem và bổ sung thêm danh mục dân tộc");
            this.txtLoaiBN.txtMyCode = null;
            this.txtLoaiBN.txtMyCode_Edit = null;
            this.txtLoaiBN.txtMyID = null;
            this.txtLoaiBN.txtMyID_Edit = null;
            this.txtLoaiBN.txtMyName = null;
            this.txtLoaiBN.txtMyName_Edit = null;
            this.txtLoaiBN.txtNext = null;
            // 
            // txtMaDTsinhsong
            // 
            this.txtMaDTsinhsong._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtMaDTsinhsong._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaDTsinhsong.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtMaDTsinhsong.AutoCompleteList")));
            this.txtMaDTsinhsong.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtMaDTsinhsong.CaseSensitive = false;
            this.txtMaDTsinhsong.CompareNoID = true;
            this.txtMaDTsinhsong.DefaultCode = "-1";
            this.txtMaDTsinhsong.DefaultID = "-1";
            this.txtMaDTsinhsong.Drug_ID = null;
            this.txtMaDTsinhsong.ExtraWidth = 0;
            this.txtMaDTsinhsong.FillValueAfterSelect = false;
            this.txtMaDTsinhsong.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaDTsinhsong.LOAI_DANHMUC = "MADOITUONGSINHSONG";
            this.txtMaDTsinhsong.Location = new System.Drawing.Point(123, 83);
            this.txtMaDTsinhsong.MaxHeight = -1;
            this.txtMaDTsinhsong.MinTypedCharacters = 2;
            this.txtMaDTsinhsong.MyCode = "-1";
            this.txtMaDTsinhsong.MyID = "-1";
            this.txtMaDTsinhsong.Name = "txtMaDTsinhsong";
            this.txtMaDTsinhsong.RaiseEvent = false;
            this.txtMaDTsinhsong.RaiseEventEnter = true;
            this.txtMaDTsinhsong.RaiseEventEnterWhenEmpty = false;
            this.txtMaDTsinhsong.SelectedIndex = -1;
            this.txtMaDTsinhsong.Size = new System.Drawing.Size(348, 21);
            this.txtMaDTsinhsong.splitChar = '@';
            this.txtMaDTsinhsong.splitCharIDAndCode = '#';
            this.txtMaDTsinhsong.TabIndex = 13;
            this.txtMaDTsinhsong.TakeCode = false;
            this.toolTip1.SetToolTip(this.txtMaDTsinhsong, "Mã đối tượng sinh sống");
            this.txtMaDTsinhsong.txtMyCode = null;
            this.txtMaDTsinhsong.txtMyCode_Edit = null;
            this.txtMaDTsinhsong.txtMyID = null;
            this.txtMaDTsinhsong.txtMyID_Edit = null;
            this.txtMaDTsinhsong.txtMyName = null;
            this.txtMaDTsinhsong.txtMyName_Edit = null;
            this.txtMaDTsinhsong.txtNext = null;
            // 
            // txtTrieuChungBD
            // 
            this.txtTrieuChungBD._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtTrieuChungBD._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTrieuChungBD.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtTrieuChungBD.AutoCompleteList")));
            this.txtTrieuChungBD.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtTrieuChungBD.CaseSensitive = false;
            this.txtTrieuChungBD.CompareNoID = true;
            this.txtTrieuChungBD.DefaultCode = "-1";
            this.txtTrieuChungBD.DefaultID = "-1";
            this.txtTrieuChungBD.Drug_ID = null;
            this.txtTrieuChungBD.ExtraWidth = 0;
            this.txtTrieuChungBD.FillValueAfterSelect = false;
            this.txtTrieuChungBD.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTrieuChungBD.LOAI_DANHMUC = "TRIEU_CHUNG";
            this.txtTrieuChungBD.Location = new System.Drawing.Point(111, 88);
            this.txtTrieuChungBD.MaxHeight = -1;
            this.txtTrieuChungBD.MinTypedCharacters = 2;
            this.txtTrieuChungBD.MyCode = "-1";
            this.txtTrieuChungBD.MyID = "-1";
            this.txtTrieuChungBD.Name = "txtTrieuChungBD";
            this.txtTrieuChungBD.RaiseEvent = false;
            this.txtTrieuChungBD.RaiseEventEnter = false;
            this.txtTrieuChungBD.RaiseEventEnterWhenEmpty = false;
            this.txtTrieuChungBD.SelectedIndex = -1;
            this.txtTrieuChungBD.Size = new System.Drawing.Size(348, 21);
            this.txtTrieuChungBD.splitChar = '@';
            this.txtTrieuChungBD.splitCharIDAndCode = '#';
            this.txtTrieuChungBD.TabIndex = 21;
            this.txtTrieuChungBD.TakeCode = false;
            this.txtTrieuChungBD.txtMyCode = null;
            this.txtTrieuChungBD.txtMyCode_Edit = null;
            this.txtTrieuChungBD.txtMyID = null;
            this.txtTrieuChungBD.txtMyID_Edit = null;
            this.txtTrieuChungBD.txtMyName = null;
            this.txtTrieuChungBD.txtMyName_Edit = null;
            this.txtTrieuChungBD.txtNext = null;
            // 
            // txtDantoc
            // 
            this.txtDantoc._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtDantoc._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDantoc.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtDantoc.AutoCompleteList")));
            this.txtDantoc.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtDantoc.CaseSensitive = false;
            this.txtDantoc.CompareNoID = true;
            this.txtDantoc.DefaultCode = "-1";
            this.txtDantoc.DefaultID = "-1";
            this.txtDantoc.Drug_ID = null;
            this.txtDantoc.ExtraWidth = 0;
            this.txtDantoc.FillValueAfterSelect = false;
            this.txtDantoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDantoc.LOAI_DANHMUC = "DAN_TOC";
            this.txtDantoc.Location = new System.Drawing.Point(576, 63);
            this.txtDantoc.MaxHeight = -1;
            this.txtDantoc.MinTypedCharacters = 2;
            this.txtDantoc.MyCode = "-1";
            this.txtDantoc.MyID = "-1";
            this.txtDantoc.Name = "txtDantoc";
            this.txtDantoc.RaiseEvent = false;
            this.txtDantoc.RaiseEventEnter = false;
            this.txtDantoc.RaiseEventEnterWhenEmpty = false;
            this.txtDantoc.SelectedIndex = -1;
            this.txtDantoc.Size = new System.Drawing.Size(221, 21);
            this.txtDantoc.splitChar = '@';
            this.txtDantoc.splitCharIDAndCode = '#';
            this.txtDantoc.TabIndex = 20;
            this.txtDantoc.TakeCode = false;
            this.txtDantoc.txtMyCode = null;
            this.txtDantoc.txtMyCode_Edit = null;
            this.txtDantoc.txtMyID = null;
            this.txtDantoc.txtMyID_Edit = null;
            this.txtDantoc.txtMyName = null;
            this.txtDantoc.txtMyName_Edit = null;
            this.txtDantoc.txtNext = null;
            // 
            // label6
            // 
            this.label6.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label6.Location = new System.Drawing.Point(495, 64);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(80, 21);
            this.label6.TabIndex = 581;
            this.label6.Text = "Dân tộc:";
            this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblDiachiBN
            // 
            this.lblDiachiBN.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblDiachiBN.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.lblDiachiBN.Location = new System.Drawing.Point(1, 62);
            this.lblDiachiBN.Name = "lblDiachiBN";
            this.lblDiachiBN.Size = new System.Drawing.Size(108, 21);
            this.lblDiachiBN.TabIndex = 583;
            this.lblDiachiBN.Text = "Địa chỉ:";
            this.lblDiachiBN.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtMaQuyenloi_BHYT
            // 
            this.txtMaQuyenloi_BHYT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtMaQuyenloi_BHYT.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtMaQuyenloi_BHYT.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaQuyenloi_BHYT.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtMaQuyenloi_BHYT.Location = new System.Drawing.Point(183, 10);
            this.txtMaQuyenloi_BHYT.MaxLength = 1;
            this.txtMaQuyenloi_BHYT.Name = "txtMaQuyenloi_BHYT";
            this.txtMaQuyenloi_BHYT.Size = new System.Drawing.Size(24, 22);
            this.txtMaQuyenloi_BHYT.TabIndex = 3;
            this.txtMaQuyenloi_BHYT.Text = "3";
            this.txtMaQuyenloi_BHYT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtNoiphattheBHYT
            // 
            this.txtNoiphattheBHYT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNoiphattheBHYT.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtNoiphattheBHYT.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNoiphattheBHYT.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtNoiphattheBHYT.Location = new System.Drawing.Point(208, 10);
            this.txtNoiphattheBHYT.MaxLength = 2;
            this.txtNoiphattheBHYT.Name = "txtNoiphattheBHYT";
            this.txtNoiphattheBHYT.Size = new System.Drawing.Size(28, 22);
            this.txtNoiphattheBHYT.TabIndex = 4;
            this.txtNoiphattheBHYT.Text = "01";
            this.txtNoiphattheBHYT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtOthu4
            // 
            this.txtOthu4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtOthu4.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtOthu4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtOthu4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtOthu4.Location = new System.Drawing.Point(237, 10);
            this.txtOthu4.MaxLength = 2;
            this.txtOthu4.Name = "txtOthu4";
            this.txtOthu4.Size = new System.Drawing.Size(38, 22);
            this.txtOthu4.TabIndex = 5;
            this.txtOthu4.Text = "01";
            this.txtOthu4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtOthu5
            // 
            this.txtOthu5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtOthu5.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtOthu5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtOthu5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtOthu5.Location = new System.Drawing.Point(277, 10);
            this.txtOthu5.MaxLength = 3;
            this.txtOthu5.Name = "txtOthu5";
            this.txtOthu5.Size = new System.Drawing.Size(38, 22);
            this.txtOthu5.TabIndex = 6;
            this.txtOthu5.Text = "001";
            this.txtOthu5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtOthu6
            // 
            this.txtOthu6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtOthu6.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtOthu6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtOthu6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtOthu6.Location = new System.Drawing.Point(317, 10);
            this.txtOthu6.MaxLength = 5;
            this.txtOthu6.Name = "txtOthu6";
            this.txtOthu6.Size = new System.Drawing.Size(62, 22);
            this.txtOthu6.TabIndex = 7;
            this.txtOthu6.Text = "00001";
            this.txtOthu6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtNoiDongtrusoKCBBD
            // 
            this.txtNoiDongtrusoKCBBD.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNoiDongtrusoKCBBD.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtNoiDongtrusoKCBBD.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNoiDongtrusoKCBBD.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtNoiDongtrusoKCBBD.Location = new System.Drawing.Point(380, 10);
            this.txtNoiDongtrusoKCBBD.MaxLength = 2;
            this.txtNoiDongtrusoKCBBD.Name = "txtNoiDongtrusoKCBBD";
            this.txtNoiDongtrusoKCBBD.Size = new System.Drawing.Size(28, 22);
            this.txtNoiDongtrusoKCBBD.TabIndex = 8;
            this.txtNoiDongtrusoKCBBD.Text = "01";
            this.txtNoiDongtrusoKCBBD.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtNoiDKKCBBD
            // 
            this.txtNoiDKKCBBD.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNoiDKKCBBD.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtNoiDKKCBBD.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNoiDKKCBBD.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtNoiDKKCBBD.Location = new System.Drawing.Point(410, 10);
            this.txtNoiDKKCBBD.MaxLength = 3;
            this.txtNoiDKKCBBD.Name = "txtNoiDKKCBBD";
            this.txtNoiDKKCBBD.Size = new System.Drawing.Size(61, 22);
            this.txtNoiDKKCBBD.TabIndex = 9;
            this.txtNoiDKKCBBD.Text = "M34";
            this.txtNoiDKKCBBD.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtPtramBHYT
            // 
            this.txtPtramBHYT.BackColor = System.Drawing.Color.White;
            this.txtPtramBHYT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtPtramBHYT.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPtramBHYT.ForeColor = System.Drawing.Color.Blue;
            this.txtPtramBHYT.Location = new System.Drawing.Point(590, 8);
            this.txtPtramBHYT.MaxLength = 3;
            this.txtPtramBHYT.Name = "txtPtramBHYT";
            this.txtPtramBHYT.ReadOnly = true;
            this.txtPtramBHYT.Size = new System.Drawing.Size(50, 29);
            this.txtPtramBHYT.TabIndex = 9;
            this.txtPtramBHYT.TabStop = false;
            this.txtPtramBHYT.Text = "100";
            this.txtPtramBHYT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // pnlBHYT
            // 
            this.pnlBHYT.Controls.Add(this.txtMaDTsinhsong);
            this.pnlBHYT.Controls.Add(this.lblPtramdauthe);
            this.pnlBHYT.Controls.Add(this.txtptramDauthe);
            this.pnlBHYT.Controls.Add(this.lblTuyenBHYT);
            this.pnlBHYT.Controls.Add(this.label13);
            this.pnlBHYT.Controls.Add(this.chkGiayBHYT);
            this.pnlBHYT.Controls.Add(this.txtMaDtuong_BHYT2);
            this.pnlBHYT.Controls.Add(this.txtPtramBHYT);
            this.pnlBHYT.Controls.Add(this.txtMaDtuong_BHYT);
            this.pnlBHYT.Controls.Add(this.txtNoiDKKCBBD);
            this.pnlBHYT.Controls.Add(this.label39);
            this.pnlBHYT.Controls.Add(this.txtDiachi_bhyt);
            this.pnlBHYT.Controls.Add(this.dtInsToDate);
            this.pnlBHYT.Controls.Add(this.txtNoiDongtrusoKCBBD);
            this.pnlBHYT.Controls.Add(this.label40);
            this.pnlBHYT.Controls.Add(this.lblMatheBHYT);
            this.pnlBHYT.Controls.Add(this.dtInsFromDate);
            this.pnlBHYT.Controls.Add(this.txtOthu6);
            this.pnlBHYT.Controls.Add(this.label20);
            this.pnlBHYT.Controls.Add(this.lnkThem);
            this.pnlBHYT.Controls.Add(this.lblClinicName);
            this.pnlBHYT.Controls.Add(this.txtOthu5);
            this.pnlBHYT.Controls.Add(this.label24);
            this.pnlBHYT.Controls.Add(this.label25);
            this.pnlBHYT.Controls.Add(this.lblPtram);
            this.pnlBHYT.Controls.Add(this.txtOthu4);
            this.pnlBHYT.Controls.Add(this.lblNoiCapThe);
            this.pnlBHYT.Controls.Add(this.lblDiachiBHYT);
            this.pnlBHYT.Controls.Add(this.txtMaQuyenloi_BHYT);
            this.pnlBHYT.Controls.Add(this.txtNoiphattheBHYT);
            this.pnlBHYT.Controls.Add(this.chkTraiTuyen);
            this.pnlBHYT.Controls.Add(this.chkCapCuu);
            this.pnlBHYT.Location = new System.Drawing.Point(-6, 142);
            this.pnlBHYT.Name = "pnlBHYT";
            this.pnlBHYT.Size = new System.Drawing.Size(821, 137);
            this.pnlBHYT.TabIndex = 0;
            this.pnlBHYT.TabStop = true;
            // 
            // lblPtramdauthe
            // 
            this.lblPtramdauthe.BackColor = System.Drawing.Color.Transparent;
            this.lblPtramdauthe.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblPtramdauthe.Location = new System.Drawing.Point(672, 13);
            this.lblPtramdauthe.Name = "lblPtramdauthe";
            this.lblPtramdauthe.Size = new System.Drawing.Size(95, 21);
            this.lblPtramdauthe.TabIndex = 545;
            this.lblPtramdauthe.Text = "% Đầu thẻ:";
            this.lblPtramdauthe.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtptramDauthe
            // 
            this.txtptramDauthe.BackColor = System.Drawing.Color.White;
            this.txtptramDauthe.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtptramDauthe.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtptramDauthe.ForeColor = System.Drawing.Color.Blue;
            this.txtptramDauthe.Location = new System.Drawing.Point(768, 8);
            this.txtptramDauthe.MaxLength = 3;
            this.txtptramDauthe.Name = "txtptramDauthe";
            this.txtptramDauthe.ReadOnly = true;
            this.txtptramDauthe.Size = new System.Drawing.Size(50, 29);
            this.txtptramDauthe.TabIndex = 544;
            this.txtptramDauthe.TabStop = false;
            this.txtptramDauthe.Text = "100";
            this.txtptramDauthe.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // lblTuyenBHYT
            // 
            this.lblTuyenBHYT.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.lblTuyenBHYT.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
            this.lblTuyenBHYT.Location = new System.Drawing.Point(473, 77);
            this.lblTuyenBHYT.Name = "lblTuyenBHYT";
            this.lblTuyenBHYT.Size = new System.Drawing.Size(111, 32);
            this.lblTuyenBHYT.TabIndex = 542;
            this.lblTuyenBHYT.Text = "ĐÚNG TUYẾN";
            this.lblTuyenBHYT.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.lblTuyenBHYT.Visible = false;
            // 
            // label13
            // 
            this.label13.BackColor = System.Drawing.Color.Transparent;
            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(8, 83);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(111, 21);
            this.label13.TabIndex = 541;
            this.label13.Text = "Mã ĐT sinh sống:";
            this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // chkGiayBHYT
            // 
            this.chkGiayBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkGiayBHYT.Location = new System.Drawing.Point(219, 108);
            this.chkGiayBHYT.Name = "chkGiayBHYT";
            this.chkGiayBHYT.Size = new System.Drawing.Size(118, 23);
            this.chkGiayBHYT.TabIndex = 539;
            this.chkGiayBHYT.TabStop = false;
            this.chkGiayBHYT.Text = "Có giấy BHYT?";
            this.chkGiayBHYT.ToolTipText = "Chọn mục này sẽ được BHYT chi trả 100%";
            // 
            // txtMaDtuong_BHYT2
            // 
            this.txtMaDtuong_BHYT2._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtMaDtuong_BHYT2._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaDtuong_BHYT2._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtMaDtuong_BHYT2.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtMaDtuong_BHYT2.AutoCompleteList")));
            this.txtMaDtuong_BHYT2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtMaDtuong_BHYT2.CaseSensitive = false;
            this.txtMaDtuong_BHYT2.CompareNoID = true;
            this.txtMaDtuong_BHYT2.DefaultCode = "-1";
            this.txtMaDtuong_BHYT2.DefaultID = "-1";
            this.txtMaDtuong_BHYT2.Drug_ID = null;
            this.txtMaDtuong_BHYT2.ExtraWidth = 250;
            this.txtMaDtuong_BHYT2.FillValueAfterSelect = true;
            this.txtMaDtuong_BHYT2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaDtuong_BHYT2.Location = new System.Drawing.Point(476, 83);
            this.txtMaDtuong_BHYT2.MaxHeight = 289;
            this.txtMaDtuong_BHYT2.MinTypedCharacters = 2;
            this.txtMaDtuong_BHYT2.MyCode = "-1";
            this.txtMaDtuong_BHYT2.MyID = "-1";
            this.txtMaDtuong_BHYT2.MyText = "";
            this.txtMaDtuong_BHYT2.Name = "txtMaDtuong_BHYT2";
            this.txtMaDtuong_BHYT2.RaiseEvent = false;
            this.txtMaDtuong_BHYT2.RaiseEventEnter = false;
            this.txtMaDtuong_BHYT2.RaiseEventEnterWhenEmpty = false;
            this.txtMaDtuong_BHYT2.SelectedIndex = -1;
            this.txtMaDtuong_BHYT2.Size = new System.Drawing.Size(58, 21);
            this.txtMaDtuong_BHYT2.splitChar = '@';
            this.txtMaDtuong_BHYT2.splitCharIDAndCode = '#';
            this.txtMaDtuong_BHYT2.TabIndex = 2;
            this.txtMaDtuong_BHYT2.TakeCode = true;
            this.txtMaDtuong_BHYT2.txtMyCode = null;
            this.txtMaDtuong_BHYT2.txtMyCode_Edit = null;
            this.txtMaDtuong_BHYT2.txtMyID = null;
            this.txtMaDtuong_BHYT2.txtMyID_Edit = null;
            this.txtMaDtuong_BHYT2.txtMyName = null;
            this.txtMaDtuong_BHYT2.txtMyName_Edit = null;
            this.txtMaDtuong_BHYT2.txtNext = this.txtMaQuyenloi_BHYT;
            this.txtMaDtuong_BHYT2.Visible = false;
            // 
            // txtMaDtuong_BHYT
            // 
            this.txtMaDtuong_BHYT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtMaDtuong_BHYT.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtMaDtuong_BHYT.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaDtuong_BHYT.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.txtMaDtuong_BHYT.Location = new System.Drawing.Point(124, 10);
            this.txtMaDtuong_BHYT.MaxLength = 2;
            this.txtMaDtuong_BHYT.Name = "txtMaDtuong_BHYT";
            this.txtMaDtuong_BHYT.Size = new System.Drawing.Size(58, 22);
            this.txtMaDtuong_BHYT.TabIndex = 2;
            this.txtMaDtuong_BHYT.Text = "DN";
            this.txtMaDtuong_BHYT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtDiachi_bhyt
            // 
            this.txtDiachi_bhyt._backcolor = System.Drawing.SystemColors.Control;
            this.txtDiachi_bhyt._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDiachi_bhyt.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtDiachi_bhyt.AutoCompleteList")));
            this.txtDiachi_bhyt.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtDiachi_bhyt.CaseSensitive = false;
            this.txtDiachi_bhyt.Drug_ID = null;
            this.txtDiachi_bhyt.ExtraWidth = 0;
            this.txtDiachi_bhyt.FillValueAfterSelect = false;
            this.txtDiachi_bhyt.Location = new System.Drawing.Point(123, 60);
            this.txtDiachi_bhyt.MaxHeight = 289;
            this.txtDiachi_bhyt.MinTypedCharacters = 2;
            this.txtDiachi_bhyt.Name = "txtDiachi_bhyt";
            this.txtDiachi_bhyt.RaiseEvent = false;
            this.txtDiachi_bhyt.SelectedIndex = -1;
            this.txtDiachi_bhyt.Size = new System.Drawing.Size(348, 20);
            this.txtDiachi_bhyt.splitChar = '\0';
            this.txtDiachi_bhyt.splitCharIDAndCode = '\0';
            this.txtDiachi_bhyt.TabIndex = 12;
            this.txtDiachi_bhyt.txtMyCode = null;
            this.txtDiachi_bhyt.txtMyCode_Edit = null;
            this.txtDiachi_bhyt.txtMyID = null;
            this.txtDiachi_bhyt.txtMyID_Edit = null;
            this.txtDiachi_bhyt.txtMyName = null;
            this.txtDiachi_bhyt.txtMyName_Edit = null;
            this.txtDiachi_bhyt.txtNext = null;
            // 
            // cmdGetBV
            // 
            this.cmdGetBV.Enabled = false;
            this.cmdGetBV.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdGetBV.Image = ((System.Drawing.Image)(resources.GetObject("cmdGetBV.Image")));
            this.cmdGetBV.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdGetBV.Location = new System.Drawing.Point(782, 251);
            this.cmdGetBV.Name = "cmdGetBV";
            this.cmdGetBV.Size = new System.Drawing.Size(25, 25);
            this.cmdGetBV.TabIndex = 540;
            this.cmdGetBV.TabStop = false;
            // 
            // txtTEN_BN
            // 
            this.txtTEN_BN.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtTEN_BN.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTEN_BN.Location = new System.Drawing.Point(111, 7);
            this.txtTEN_BN.Name = "txtTEN_BN";
            this.txtTEN_BN.Size = new System.Drawing.Size(348, 21);
            this.txtTEN_BN.TabIndex = 13;
            // 
            // txtCMT
            // 
            this.txtCMT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtCMT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtCMT.Location = new System.Drawing.Point(323, 37);
            this.txtCMT.MaxLength = 30;
            this.txtCMT.Name = "txtCMT";
            this.txtCMT.Size = new System.Drawing.Size(137, 21);
            this.txtCMT.TabIndex = 17;
            // 
            // ctxBOD
            // 
            this.ctxBOD.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuBOD});
            this.ctxBOD.Name = "ctxBOD";
            this.ctxBOD.Size = new System.Drawing.Size(219, 26);
            // 
            // mnuBOD
            // 
            this.mnuBOD.CheckOnClick = true;
            this.mnuBOD.Name = "mnuBOD";
            this.mnuBOD.Size = new System.Drawing.Size(218, 22);
            this.mnuBOD.Text = "Nhập ngày tháng năm sinh";
            // 
            // txtEmail
            // 
            this.txtEmail.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtEmail.Location = new System.Drawing.Point(111, 86);
            this.txtEmail.Name = "txtEmail";
            this.txtEmail.Size = new System.Drawing.Size(348, 21);
            this.txtEmail.TabIndex = 12;
            // 
            // txtMaBN
            // 
            this.txtMaBN.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtMaBN.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaBN.ForeColor = System.Drawing.Color.Black;
            this.txtMaBN.Location = new System.Drawing.Point(118, 69);
            this.txtMaBN.MaxLength = 10;
            this.txtMaBN.Name = "txtMaBN";
            this.txtMaBN.Size = new System.Drawing.Size(112, 21);
            this.txtMaBN.TabIndex = 0;
            this.txtMaBN.TabStop = false;
            this.txtMaBN.Text = "123456";
            this.txtMaBN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtMaLankham
            // 
            this.txtMaLankham.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtMaLankham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaLankham.ForeColor = System.Drawing.Color.Black;
            this.txtMaLankham.Location = new System.Drawing.Point(312, 69);
            this.txtMaLankham.MaxLength = 8;
            this.txtMaLankham.Name = "txtMaLankham";
            this.txtMaLankham.Size = new System.Drawing.Size(90, 21);
            this.txtMaLankham.TabIndex = 0;
            this.txtMaLankham.TabStop = false;
            this.txtMaLankham.Text = "14000001";
            this.txtMaLankham.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtSolankham
            // 
            this.txtSolankham.BackColor = System.Drawing.Color.White;
            this.txtSolankham.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtSolankham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSolankham.ForeColor = System.Drawing.Color.Black;
            this.txtSolankham.Location = new System.Drawing.Point(481, 69);
            this.txtSolankham.MaxLength = 8;
            this.txtSolankham.Name = "txtSolankham";
            this.txtSolankham.ReadOnly = true;
            this.txtSolankham.Size = new System.Drawing.Size(38, 21);
            this.txtSolankham.TabIndex = 0;
            this.txtSolankham.TabStop = false;
            this.txtSolankham.Text = "2";
            this.txtSolankham.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // pnlMain
            // 
            this.pnlMain.Controls.Add(this.pnlFill);
            this.pnlMain.Controls.Add(this.pnlRight);
            this.pnlMain.Controls.Add(this.pnlBottom);
            this.pnlMain.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlMain.Location = new System.Drawing.Point(0, 0);
            this.pnlMain.Name = "pnlMain";
            this.pnlMain.Size = new System.Drawing.Size(1008, 707);
            this.pnlMain.TabIndex = 595;
            // 
            // pnlFill
            // 
            this.pnlFill.Controls.Add(this.grpChoKham);
            this.pnlFill.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlFill.Location = new System.Drawing.Point(821, 0);
            this.pnlFill.Name = "pnlFill";
            this.pnlFill.Size = new System.Drawing.Size(187, 653);
            this.pnlFill.TabIndex = 598;
            // 
            // pnlRight
            // 
            this.pnlRight.Controls.Add(this.uiGroupBox3);
            this.pnlRight.Controls.Add(this.panel2);
            this.pnlRight.Dock = System.Windows.Forms.DockStyle.Left;
            this.pnlRight.Location = new System.Drawing.Point(0, 0);
            this.pnlRight.Name = "pnlRight";
            this.pnlRight.Size = new System.Drawing.Size(821, 653);
            this.pnlRight.TabIndex = 597;
            // 
            // uiGroupBox3
            // 
            this.uiGroupBox3.Controls.Add(this.grdRegExam);
            this.uiGroupBox3.Controls.Add(this.pnlnutchucnang);
            this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.uiGroupBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiGroupBox3.FrameStyle = Janus.Windows.EditControls.FrameStyle.Top;
            this.uiGroupBox3.ImageSize = new System.Drawing.Size(24, 24);
            this.uiGroupBox3.Location = new System.Drawing.Point(0, 490);
            this.uiGroupBox3.Name = "uiGroupBox3";
            this.uiGroupBox3.Size = new System.Drawing.Size(821, 163);
            this.uiGroupBox3.TabIndex = 601;
            this.uiGroupBox3.Text = "Danh sách các dịch vụ KCB bệnh nhân đã đăng ký";
            // 
            // 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, 17);
            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(821, 110);
            this.grdRegExam.TabIndex = 595;
            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;
            // 
            // pnlnutchucnang
            // 
            this.pnlnutchucnang.Controls.Add(this.panel3);
            this.pnlnutchucnang.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.pnlnutchucnang.Location = new System.Drawing.Point(0, 127);
            this.pnlnutchucnang.Name = "pnlnutchucnang";
            this.pnlnutchucnang.Size = new System.Drawing.Size(821, 33);
            this.pnlnutchucnang.TabIndex = 594;
            // 
            // panel3
            // 
            this.panel3.Controls.Add(this.lblStatus);
            this.panel3.Controls.Add(this.cmdInPhieuKham);
            this.panel3.Controls.Add(this.cmdXoaKham);
            this.panel3.Controls.Add(this.cmdThanhToanKham);
            this.panel3.Controls.Add(this.pnlPrint);
            this.panel3.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel3.Location = new System.Drawing.Point(0, 0);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(821, 33);
            this.panel3.TabIndex = 705;
            // 
            // lblStatus
            // 
            this.lblStatus.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblStatus.ForeColor = System.Drawing.Color.Navy;
            this.lblStatus.Location = new System.Drawing.Point(211, 4);
            this.lblStatus.Name = "lblStatus";
            this.lblStatus.Size = new System.Drawing.Size(151, 24);
            this.lblStatus.TabIndex = 605;
            this.lblStatus.Text = "THÊM LẦN KHÁM";
            this.lblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // 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(608, 2);
            this.cmdInPhieuKham.Name = "cmdInPhieuKham";
            this.cmdInPhieuKham.Size = new System.Drawing.Size(113, 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(727, 2);
            this.cmdXoaKham.Name = "cmdXoaKham";
            this.cmdXoaKham.Size = new System.Drawing.Size(91, 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(474, 2);
            this.cmdThanhToanKham.Name = "cmdThanhToanKham";
            this.cmdThanhToanKham.Size = new System.Drawing.Size(132, 27);
            this.cmdThanhToanKham.TabIndex = 33;
            this.cmdThanhToanKham.TabStop = false;
            this.cmdThanhToanKham.Tag = "TT";
            this.cmdThanhToanKham.Text = "Thanh 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)";
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.txtSoBATCQG);
            this.panel2.Controls.Add(this.lblBATC);
            this.panel2.Controls.Add(this.txtSoBA);
            this.panel2.Controls.Add(this.label26);
            this.panel2.Controls.Add(this.label19);
            this.panel2.Controls.Add(this.txtLoaikham);
            this.panel2.Controls.Add(this.tabControl1);
            this.panel2.Controls.Add(this.txtNoichuyenden);
            this.panel2.Controls.Add(this.cmdGetBV);
            this.panel2.Controls.Add(this.cboDoituongKCB);
            this.panel2.Controls.Add(this.dtpInputDate);
            this.panel2.Controls.Add(this.panel1);
            this.panel2.Controls.Add(this.vbLine2);
            this.panel2.Controls.Add(this.vbLine1);
            this.panel2.Controls.Add(this.txtIDKieuKham);
            this.panel2.Controls.Add(this.label14);
            this.panel2.Controls.Add(this.txtSolankham);
            this.panel2.Controls.Add(this.lblDoituongKCB);
            this.panel2.Controls.Add(this.txtIDPkham);
            this.panel2.Controls.Add(this.txtMaLankham);
            this.panel2.Controls.Add(this.txtMaBN);
            this.panel2.Controls.Add(this.label3);
            this.panel2.Controls.Add(this.chkChuyenVien);
            this.panel2.Controls.Add(this.label1);
            this.panel2.Controls.Add(this.dtCreateDate);
            this.panel2.Controls.Add(this.label2);
            this.panel2.Controls.Add(this.pnlBHYT);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel2.Location = new System.Drawing.Point(0, 0);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(821, 490);
            this.panel2.TabIndex = 600;
            // 
            // txtSoBATCQG
            // 
            this.txtSoBATCQG.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtSoBATCQG.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSoBATCQG.ForeColor = System.Drawing.Color.Black;
            this.txtSoBATCQG.Location = new System.Drawing.Point(715, 69);
            this.txtSoBATCQG.MaxLength = 8;
            this.txtSoBATCQG.Name = "txtSoBATCQG";
            this.txtSoBATCQG.Size = new System.Drawing.Size(90, 21);
            this.txtSoBATCQG.TabIndex = 604;
            this.txtSoBATCQG.TabStop = false;
            this.txtSoBATCQG.Text = "1";
            this.txtSoBATCQG.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.txtSoBATCQG.Visible = false;
            // 
            // lblBATC
            // 
            this.lblBATC.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblBATC.ForeColor = System.Drawing.Color.Red;
            this.lblBATC.Location = new System.Drawing.Point(637, 69);
            this.lblBATC.Name = "lblBATC";
            this.lblBATC.Size = new System.Drawing.Size(71, 21);
            this.lblBATC.TabIndex = 605;
            this.lblBATC.Text = "Số B.A.T.C:";
            this.lblBATC.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.lblBATC.Visible = false;
            // 
            // txtSoBA
            // 
            this.txtSoBA.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtSoBA.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSoBA.ForeColor = System.Drawing.Color.Black;
            this.txtSoBA.Location = new System.Drawing.Point(582, 69);
            this.txtSoBA.MaxLength = 8;
            this.txtSoBA.Name = "txtSoBA";
            this.txtSoBA.Size = new System.Drawing.Size(52, 21);
            this.txtSoBA.TabIndex = 602;
            this.txtSoBA.TabStop = false;
            this.txtSoBA.Text = "1";
            this.txtSoBA.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // label26
            // 
            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(519, 69);
            this.label26.Name = "label26";
            this.label26.Size = new System.Drawing.Size(56, 21);
            this.label26.TabIndex = 603;
            this.label26.Text = "Số &B.A:";
            this.label26.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.ForeColor = System.Drawing.Color.Red;
            this.label19.Location = new System.Drawing.Point(523, 98);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(52, 21);
            this.label19.TabIndex = 601;
            this.label19.Text = "Loại BN";
            this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtLoaikham
            // 
            this.txtLoaikham._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtLoaikham._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtLoaikham.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtLoaikham.AutoCompleteList")));
            this.txtLoaikham.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtLoaikham.CaseSensitive = false;
            this.txtLoaikham.CompareNoID = true;
            this.txtLoaikham.DefaultCode = "-1";
            this.txtLoaikham.DefaultID = "-1";
            this.txtLoaikham.Drug_ID = null;
            this.txtLoaikham.ExtraWidth = 0;
            this.txtLoaikham.FillValueAfterSelect = false;
            this.txtLoaikham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtLoaikham.LOAI_DANHMUC = "KIEUKHAM";
            this.txtLoaikham.Location = new System.Drawing.Point(582, 98);
            this.txtLoaikham.MaxHeight = -1;
            this.txtLoaikham.MinTypedCharacters = 2;
            this.txtLoaikham.MyCode = "-1";
            this.txtLoaikham.MyID = "-1";
            this.txtLoaikham.Name = "txtLoaikham";
            this.txtLoaikham.RaiseEvent = false;
            this.txtLoaikham.RaiseEventEnter = false;
            this.txtLoaikham.RaiseEventEnterWhenEmpty = false;
            this.txtLoaikham.SelectedIndex = -1;
            this.txtLoaikham.Size = new System.Drawing.Size(223, 21);
            this.txtLoaikham.splitChar = '@';
            this.txtLoaikham.splitCharIDAndCode = '#';
            this.txtLoaikham.TabIndex = 600;
            this.txtLoaikham.TabStop = false;
            this.txtLoaikham.TakeCode = false;
            this.txtLoaikham.txtMyCode = null;
            this.txtLoaikham.txtMyCode_Edit = null;
            this.txtLoaikham.txtMyID = null;
            this.txtLoaikham.txtMyID_Edit = null;
            this.txtLoaikham.txtMyName = null;
            this.txtLoaikham.txtMyName_Edit = null;
            this.txtLoaikham.txtNext = null;
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tabControl1.Location = new System.Drawing.Point(2, 282);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(814, 202);
            this.tabControl1.TabIndex = 1;
            this.tabControl1.TabStop = false;
            // 
            // tabPage1
            // 
            this.tabPage1.BackColor = System.Drawing.SystemColors.Control;
            this.tabPage1.Controls.Add(this.lblLoaituoi);
            this.tabPage1.Controls.Add(this.txtSoDT);
            this.tabPage1.Controls.Add(this.txtNguoiLienhe);
            this.tabPage1.Controls.Add(this.label4);
            this.tabPage1.Controls.Add(this.chkLaysokham);
            this.tabPage1.Controls.Add(this.txtSoKcb);
            this.tabPage1.Controls.Add(this.cmdThemmoiDiachinh);
            this.tabPage1.Controls.Add(this.txtXaphuong);
            this.tabPage1.Controls.Add(this.label16);
            this.tabPage1.Controls.Add(this.txtQuanhuyen);
            this.tabPage1.Controls.Add(this.label15);
            this.tabPage1.Controls.Add(this.txtTinhTp);
            this.tabPage1.Controls.Add(this.chkTpQH);
            this.tabPage1.Controls.Add(this.lblHoten);
            this.tabPage1.Controls.Add(this.label12);
            this.tabPage1.Controls.Add(this.txtTrieuChungBD);
            this.tabPage1.Controls.Add(this.label17);
            this.tabPage1.Controls.Add(this.txtCMT);
            this.tabPage1.Controls.Add(this.txtDantoc);
            this.tabPage1.Controls.Add(this.lblDiachiBN);
            this.tabPage1.Controls.Add(this.txtNgheNghiep);
            this.tabPage1.Controls.Add(this.cboPatientSex);
            this.tabPage1.Controls.Add(this.txtTEN_BN);
            this.tabPage1.Controls.Add(this.label11);
            this.tabPage1.Controls.Add(this.panel5);
            this.tabPage1.Controls.Add(this.lblNamsinh);
            this.tabPage1.Controls.Add(this.txtTuoi);
            this.tabPage1.Controls.Add(this.label6);
            this.tabPage1.Controls.Add(this.label9);
            this.tabPage1.Controls.Add(this.label21);
            this.tabPage1.Controls.Add(this.lblTuoi);
            this.tabPage1.Controls.Add(this.txtDiachi);
            this.tabPage1.Controls.Add(this.label35);
            this.tabPage1.Controls.Add(this.dtpBOD);
            this.tabPage1.Location = new System.Drawing.Point(4, 24);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(806, 174);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "Thông tin chính của bệnh nhân(F1)";
            // 
            // lblLoaituoi
            // 
            this.lblLoaituoi.AutoSize = true;
            this.lblLoaituoi.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblLoaituoi.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.lblLoaituoi.Location = new System.Drawing.Point(756, 13);
            this.lblLoaituoi.Name = "lblLoaituoi";
            this.lblLoaituoi.Size = new System.Drawing.Size(35, 15);
            this.lblLoaituoi.TabIndex = 611;
            this.lblLoaituoi.Text = "Tuần";
            // 
            // txtSoDT
            // 
            this.txtSoDT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtSoDT.Location = new System.Drawing.Point(576, 88);
            this.txtSoDT.Name = "txtSoDT";
            this.txtSoDT.Size = new System.Drawing.Size(221, 21);
            this.txtSoDT.TabIndex = 22;
            // 
            // txtNguoiLienhe
            // 
            this.txtNguoiLienhe.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNguoiLienhe.Location = new System.Drawing.Point(576, 111);
            this.txtNguoiLienhe.Name = "txtNguoiLienhe";
            this.txtNguoiLienhe.Size = new System.Drawing.Size(221, 21);
            this.txtNguoiLienhe.TabIndex = 22;
            // 
            // label4
            // 
            this.label4.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label4.Location = new System.Drawing.Point(476, 110);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(98, 21);
            this.label4.TabIndex = 593;
            this.label4.Text = "Người liên hệ:";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // chkLaysokham
            // 
            this.chkLaysokham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkLaysokham.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.chkLaysokham.Location = new System.Drawing.Point(6, 110);
            this.chkLaysokham.Name = "chkLaysokham";
            this.chkLaysokham.Size = new System.Drawing.Size(103, 23);
            this.chkLaysokham.TabIndex = 22;
            this.chkLaysokham.Text = "Lấy sổ khám?";
            // 
            // txtSoKcb
            // 
            this.txtSoKcb._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtSoKcb._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSoKcb.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtSoKcb.AutoCompleteList")));
            this.txtSoKcb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtSoKcb.CaseSensitive = false;
            this.txtSoKcb.CompareNoID = true;
            this.txtSoKcb.DefaultCode = "-1";
            this.txtSoKcb.DefaultID = "-1";
            this.txtSoKcb.Drug_ID = null;
            this.txtSoKcb.Enabled = false;
            this.txtSoKcb.ExtraWidth = 0;
            this.txtSoKcb.FillValueAfterSelect = false;
            this.txtSoKcb.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSoKcb.LOAI_DANHMUC = "SO_KCB";
            this.txtSoKcb.Location = new System.Drawing.Point(111, 111);
            this.txtSoKcb.MaxHeight = -1;
            this.txtSoKcb.MinTypedCharacters = 2;
            this.txtSoKcb.MyCode = "-1";
            this.txtSoKcb.MyID = "-1";
            this.txtSoKcb.Name = "txtSoKcb";
            this.txtSoKcb.RaiseEvent = false;
            this.txtSoKcb.RaiseEventEnter = false;
            this.txtSoKcb.RaiseEventEnterWhenEmpty = false;
            this.txtSoKcb.SelectedIndex = -1;
            this.txtSoKcb.Size = new System.Drawing.Size(348, 21);
            this.txtSoKcb.splitChar = '@';
            this.txtSoKcb.splitCharIDAndCode = '#';
            this.txtSoKcb.TabIndex = 22;
            this.txtSoKcb.TakeCode = false;
            this.txtSoKcb.txtMyCode = null;
            this.txtSoKcb.txtMyCode_Edit = null;
            this.txtSoKcb.txtMyID = null;
            this.txtSoKcb.txtMyID_Edit = null;
            this.txtSoKcb.txtMyName = null;
            this.txtSoKcb.txtMyName_Edit = null;
            this.txtSoKcb.txtNext = null;
            // 
            // txtXaphuong
            // 
            this.txtXaphuong._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtXaphuong._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtXaphuong._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtXaphuong.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtXaphuong.AutoCompleteList")));
            this.txtXaphuong.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtXaphuong.CaseSensitive = false;
            this.txtXaphuong.CompareNoID = true;
            this.txtXaphuong.DefaultCode = "-1";
            this.txtXaphuong.DefaultID = "-1";
            this.txtXaphuong.Drug_ID = null;
            this.txtXaphuong.ExtraWidth = 200;
            this.txtXaphuong.FillValueAfterSelect = false;
            this.txtXaphuong.Location = new System.Drawing.Point(592, 174);
            this.txtXaphuong.MaxHeight = 289;
            this.txtXaphuong.MinTypedCharacters = 2;
            this.txtXaphuong.MyCode = "-1";
            this.txtXaphuong.MyID = "-1";
            this.txtXaphuong.MyText = "";
            this.txtXaphuong.Name = "txtXaphuong";
            this.txtXaphuong.RaiseEvent = true;
            this.txtXaphuong.RaiseEventEnter = false;
            this.txtXaphuong.RaiseEventEnterWhenEmpty = false;
            this.txtXaphuong.SelectedIndex = -1;
            this.txtXaphuong.Size = new System.Drawing.Size(206, 21);
            this.txtXaphuong.splitChar = '@';
            this.txtXaphuong.splitCharIDAndCode = '#';
            this.txtXaphuong.TabIndex = 609;
            this.txtXaphuong.TabStop = false;
            this.txtXaphuong.TakeCode = false;
            this.txtXaphuong.txtMyCode = null;
            this.txtXaphuong.txtMyCode_Edit = null;
            this.txtXaphuong.txtMyID = null;
            this.txtXaphuong.txtMyID_Edit = null;
            this.txtXaphuong.txtMyName = null;
            this.txtXaphuong.txtMyName_Edit = null;
            this.txtXaphuong.txtNext = null;
            this.txtXaphuong.Visible = false;
            // 
            // label16
            // 
            this.label16.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label16.Location = new System.Drawing.Point(484, 175);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(96, 21);
            this.label16.TabIndex = 608;
            this.label16.Text = "Xã/phường:";
            this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.label16.Visible = false;
            // 
            // txtQuanhuyen
            // 
            this.txtQuanhuyen._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtQuanhuyen._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtQuanhuyen._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtQuanhuyen.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtQuanhuyen.AutoCompleteList")));
            this.txtQuanhuyen.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtQuanhuyen.CaseSensitive = false;
            this.txtQuanhuyen.CompareNoID = true;
            this.txtQuanhuyen.DefaultCode = "-1";
            this.txtQuanhuyen.DefaultID = "-1";
            this.txtQuanhuyen.Drug_ID = null;
            this.txtQuanhuyen.ExtraWidth = 200;
            this.txtQuanhuyen.FillValueAfterSelect = false;
            this.txtQuanhuyen.Location = new System.Drawing.Point(323, 174);
            this.txtQuanhuyen.MaxHeight = 289;
            this.txtQuanhuyen.MinTypedCharacters = 2;
            this.txtQuanhuyen.MyCode = "-1";
            this.txtQuanhuyen.MyID = "-1";
            this.txtQuanhuyen.MyText = "";
            this.txtQuanhuyen.Name = "txtQuanhuyen";
            this.txtQuanhuyen.RaiseEvent = true;
            this.txtQuanhuyen.RaiseEventEnter = false;
            this.txtQuanhuyen.RaiseEventEnterWhenEmpty = false;
            this.txtQuanhuyen.SelectedIndex = -1;
            this.txtQuanhuyen.Size = new System.Drawing.Size(137, 21);
            this.txtQuanhuyen.splitChar = '@';
            this.txtQuanhuyen.splitCharIDAndCode = '#';
            this.txtQuanhuyen.TabIndex = 607;
            this.txtQuanhuyen.TabStop = false;
            this.txtQuanhuyen.TakeCode = false;
            this.txtQuanhuyen.txtMyCode = null;
            this.txtQuanhuyen.txtMyCode_Edit = null;
            this.txtQuanhuyen.txtMyID = null;
            this.txtQuanhuyen.txtMyID_Edit = null;
            this.txtQuanhuyen.txtMyName = null;
            this.txtQuanhuyen.txtMyName_Edit = null;
            this.txtQuanhuyen.txtNext = null;
            this.txtQuanhuyen.Visible = false;
            // 
            // label15
            // 
            this.label15.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label15.Location = new System.Drawing.Point(241, 174);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(82, 21);
            this.label15.TabIndex = 606;
            this.label15.Text = "Quận/huyện:";
            this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.label15.Visible = false;
            // 
            // txtTinhTp
            // 
            this.txtTinhTp._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtTinhTp._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTinhTp._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtTinhTp.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtTinhTp.AutoCompleteList")));
            this.txtTinhTp.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtTinhTp.CaseSensitive = false;
            this.txtTinhTp.CompareNoID = true;
            this.txtTinhTp.DefaultCode = "-1";
            this.txtTinhTp.DefaultID = "-1";
            this.txtTinhTp.Drug_ID = null;
            this.txtTinhTp.ExtraWidth = 200;
            this.txtTinhTp.FillValueAfterSelect = false;
            this.txtTinhTp.Location = new System.Drawing.Point(109, 175);
            this.txtTinhTp.MaxHeight = 289;
            this.txtTinhTp.MinTypedCharacters = 2;
            this.txtTinhTp.MyCode = "-1";
            this.txtTinhTp.MyID = "-1";
            this.txtTinhTp.MyText = "";
            this.txtTinhTp.Name = "txtTinhTp";
            this.txtTinhTp.RaiseEvent = true;
            this.txtTinhTp.RaiseEventEnter = false;
            this.txtTinhTp.RaiseEventEnterWhenEmpty = false;
            this.txtTinhTp.SelectedIndex = -1;
            this.txtTinhTp.Size = new System.Drawing.Size(128, 21);
            this.txtTinhTp.splitChar = '@';
            this.txtTinhTp.splitCharIDAndCode = '#';
            this.txtTinhTp.TabIndex = 605;
            this.txtTinhTp.TabStop = false;
            this.txtTinhTp.TakeCode = false;
            this.txtTinhTp.txtMyCode = null;
            this.txtTinhTp.txtMyCode_Edit = null;
            this.txtTinhTp.txtMyID = null;
            this.txtTinhTp.txtMyID_Edit = null;
            this.txtTinhTp.txtMyName = null;
            this.txtTinhTp.txtMyName_Edit = null;
            this.txtTinhTp.txtNext = null;
            this.txtTinhTp.Visible = false;
            // 
            // chkTpQH
            // 
            this.chkTpQH.AutoSize = true;
            this.chkTpQH.Location = new System.Drawing.Point(24, 176);
            this.chkTpQH.Name = "chkTpQH";
            this.chkTpQH.Size = new System.Drawing.Size(67, 19);
            this.chkTpQH.TabIndex = 604;
            this.chkTpQH.Text = "Tỉnh/Tp";
            this.chkTpQH.UseVisualStyleBackColor = true;
            this.chkTpQH.Visible = false;
            // 
            // txtNgheNghiep
            // 
            this.txtNgheNghiep._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtNgheNghiep._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNgheNghiep.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtNgheNghiep.AutoCompleteList")));
            this.txtNgheNghiep.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNgheNghiep.CaseSensitive = false;
            this.txtNgheNghiep.CompareNoID = true;
            this.txtNgheNghiep.DefaultCode = "-1";
            this.txtNgheNghiep.DefaultID = "-1";
            this.txtNgheNghiep.Drug_ID = null;
            this.txtNgheNghiep.ExtraWidth = 0;
            this.txtNgheNghiep.FillValueAfterSelect = false;
            this.txtNgheNghiep.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNgheNghiep.LOAI_DANHMUC = "NGHE_NGHIEP";
            this.txtNgheNghiep.Location = new System.Drawing.Point(576, 37);
            this.txtNgheNghiep.MaxHeight = -1;
            this.txtNgheNghiep.MinTypedCharacters = 2;
            this.txtNgheNghiep.MyCode = "-1";
            this.txtNgheNghiep.MyID = "-1";
            this.txtNgheNghiep.Name = "txtNgheNghiep";
            this.txtNgheNghiep.RaiseEvent = false;
            this.txtNgheNghiep.RaiseEventEnter = false;
            this.txtNgheNghiep.RaiseEventEnterWhenEmpty = false;
            this.txtNgheNghiep.SelectedIndex = -1;
            this.txtNgheNghiep.Size = new System.Drawing.Size(221, 21);
            this.txtNgheNghiep.splitChar = '@';
            this.txtNgheNghiep.splitCharIDAndCode = '#';
            this.txtNgheNghiep.TabIndex = 18;
            this.txtNgheNghiep.TakeCode = false;
            this.txtNgheNghiep.txtMyCode = null;
            this.txtNgheNghiep.txtMyCode_Edit = null;
            this.txtNgheNghiep.txtMyID = null;
            this.txtNgheNghiep.txtMyID_Edit = null;
            this.txtNgheNghiep.txtMyName = null;
            this.txtNgheNghiep.txtMyName_Edit = null;
            this.txtNgheNghiep.txtNext = null;
            // 
            // panel5
            // 
            this.panel5.Controls.Add(this.pnlChonphongkham);
            this.panel5.Controls.Add(this.pnlChonKieukham);
            this.panel5.Location = new System.Drawing.Point(107, 135);
            this.panel5.Name = "panel5";
            this.panel5.Size = new System.Drawing.Size(704, 28);
            this.panel5.TabIndex = 600;
            // 
            // pnlChonphongkham
            // 
            this.pnlChonphongkham.Controls.Add(this.txtExamtypeCode);
            this.pnlChonphongkham.Controls.Add(this.cboKieuKham);
            this.pnlChonphongkham.Controls.Add(this.txtMyNameEdit);
            this.pnlChonphongkham.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlChonphongkham.Location = new System.Drawing.Point(0, 0);
            this.pnlChonphongkham.Name = "pnlChonphongkham";
            this.pnlChonphongkham.Size = new System.Drawing.Size(704, 28);
            this.pnlChonphongkham.TabIndex = 1;
            // 
            // txtExamtypeCode
            // 
            this.txtExamtypeCode._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtExamtypeCode._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtExamtypeCode._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            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 = 400;
            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, 3);
            this.txtExamtypeCode.MaxHeight = 289;
            this.txtExamtypeCode.MinTypedCharacters = 2;
            this.txtExamtypeCode.MyCode = "-1";
            this.txtExamtypeCode.MyID = "-1";
            this.txtExamtypeCode.MyText = "";
            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 = 23;
            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;
            // 
            // 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(691, 3);
            this.txtMyNameEdit.Name = "txtMyNameEdit";
            this.txtMyNameEdit.Size = new System.Drawing.Size(10, 23);
            this.txtMyNameEdit.TabIndex = 550;
            this.txtMyNameEdit.TabStop = false;
            this.txtMyNameEdit.Visible = false;
            // 
            // pnlChonKieukham
            // 
            this.pnlChonKieukham.Controls.Add(this.txtKieuKham);
            this.pnlChonKieukham.Controls.Add(this.txtPhongkham);
            this.pnlChonKieukham.Controls.Add(this.label23);
            this.pnlChonKieukham.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlChonKieukham.Location = new System.Drawing.Point(0, 0);
            this.pnlChonKieukham.Name = "pnlChonKieukham";
            this.pnlChonKieukham.Size = new System.Drawing.Size(704, 28);
            this.pnlChonKieukham.TabIndex = 2;
            // 
            // txtKieuKham
            // 
            this.txtKieuKham._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtKieuKham._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtKieuKham._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            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(4, 4);
            this.txtKieuKham.MaxHeight = 289;
            this.txtKieuKham.MinTypedCharacters = 2;
            this.txtKieuKham.MyCode = "-1";
            this.txtKieuKham.MyID = "-1";
            this.txtKieuKham.MyText = "";
            this.txtKieuKham.Name = "txtKieuKham";
            this.txtKieuKham.RaiseEvent = true;
            this.txtKieuKham.RaiseEventEnter = true;
            this.txtKieuKham.RaiseEventEnterWhenEmpty = true;
            this.txtKieuKham.SelectedIndex = -1;
            this.txtKieuKham.Size = new System.Drawing.Size(350, 21);
            this.txtKieuKham.splitChar = '@';
            this.txtKieuKham.splitCharIDAndCode = '#';
            this.txtKieuKham.TabIndex = 23;
            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;
            // 
            // txtPhongkham
            // 
            this.txtPhongkham._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtPhongkham._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPhongkham._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            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(487, 2);
            this.txtPhongkham.MaxHeight = 289;
            this.txtPhongkham.MinTypedCharacters = 2;
            this.txtPhongkham.MyCode = "-1";
            this.txtPhongkham.MyID = "-1";
            this.txtPhongkham.MyText = "";
            this.txtPhongkham.Name = "txtPhongkham";
            this.txtPhongkham.RaiseEvent = true;
            this.txtPhongkham.RaiseEventEnter = true;
            this.txtPhongkham.RaiseEventEnterWhenEmpty = true;
            this.txtPhongkham.SelectedIndex = -1;
            this.txtPhongkham.Size = new System.Drawing.Size(208, 21);
            this.txtPhongkham.splitChar = '@';
            this.txtPhongkham.splitCharIDAndCode = '#';
            this.txtPhongkham.TabIndex = 24;
            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;
            // 
            // txtDiachi
            // 
            this.txtDiachi._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtDiachi._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDiachi.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtDiachi.AutoCompleteList")));
            this.txtDiachi.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtDiachi.CaseSensitive = false;
            this.txtDiachi.Drug_ID = null;
            this.txtDiachi.ExtraWidth = 0;
            this.txtDiachi.FillValueAfterSelect = false;
            this.txtDiachi.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDiachi.Location = new System.Drawing.Point(111, 63);
            this.txtDiachi.MaxHeight = 289;
            this.txtDiachi.MinTypedCharacters = 2;
            this.txtDiachi.Name = "txtDiachi";
            this.txtDiachi.RaiseEvent = false;
            this.txtDiachi.SelectedIndex = -1;
            this.txtDiachi.Size = new System.Drawing.Size(348, 21);
            this.txtDiachi.splitChar = '\0';
            this.txtDiachi.splitCharIDAndCode = '\0';
            this.txtDiachi.TabIndex = 19;
            this.txtDiachi.txtMyCode = null;
            this.txtDiachi.txtMyCode_Edit = null;
            this.txtDiachi.txtMyID = null;
            this.txtDiachi.txtMyID_Edit = null;
            this.txtDiachi.txtMyName = null;
            this.txtDiachi.txtMyName_Edit = null;
            this.txtDiachi.txtNext = null;
            // 
            // dtpBOD
            // 
            this.dtpBOD.ContextMenuStrip = this.ctxBOD;
            this.dtpBOD.CustomFormat = "dd/MM/yyyy HH:mm";
            this.dtpBOD.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtpBOD.DropDownCalendar.Name = "";
            this.dtpBOD.Font = new System.Drawing.Font("Arial", 9F);
            this.dtpBOD.Location = new System.Drawing.Point(576, 8);
            this.dtpBOD.MinDate = new System.DateTime(1950, 2, 1, 0, 0, 0, 0);
            this.dtpBOD.Name = "dtpBOD";
            this.dtpBOD.ShowDropDown = false;
            this.dtpBOD.Size = new System.Drawing.Size(115, 21);
            this.dtpBOD.TabIndex = 14;
            this.dtpBOD.Value = new System.DateTime(2013, 9, 23, 0, 0, 0, 0);
            // 
            // tabPage2
            // 
            this.tabPage2.BackColor = System.Drawing.SystemColors.Control;
            this.tabPage2.Controls.Add(this.txtLoaiBN);
            this.tabPage2.Controls.Add(this.label10);
            this.tabPage2.Controls.Add(this.txtNoigioithieu);
            this.tabPage2.Controls.Add(this.label7);
            this.tabPage2.Controls.Add(this.label22);
            this.tabPage2.Controls.Add(this.txtEmail);
            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(806, 174);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "Thông tin thêm(F2)";
            // 
            // 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(11, 59);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(95, 21);
            this.label10.TabIndex = 591;
            this.label10.Text = "Nơi giới thiệu:";
            this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtNoigioithieu
            // 
            this.txtNoigioithieu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNoigioithieu.Location = new System.Drawing.Point(111, 59);
            this.txtNoigioithieu.Name = "txtNoigioithieu";
            this.txtNoigioithieu.Size = new System.Drawing.Size(348, 21);
            this.txtNoigioithieu.TabIndex = 11;
            // 
            // 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(8, 32);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(98, 21);
            this.label7.TabIndex = 589;
            this.label7.Text = "Phân loại BN";
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtNoichuyenden
            // 
            this.txtNoichuyenden._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtNoichuyenden._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNoichuyenden._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtNoichuyenden.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtNoichuyenden.AutoCompleteList")));
            this.txtNoichuyenden.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNoichuyenden.CaseSensitive = false;
            this.txtNoichuyenden.CompareNoID = true;
            this.txtNoichuyenden.DefaultCode = "-1";
            this.txtNoichuyenden.DefaultID = "-1";
            this.txtNoichuyenden.Drug_ID = null;
            this.txtNoichuyenden.Enabled = false;
            this.txtNoichuyenden.ExtraWidth = 0;
            this.txtNoichuyenden.FillValueAfterSelect = false;
            this.txtNoichuyenden.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNoichuyenden.Location = new System.Drawing.Point(582, 253);
            this.txtNoichuyenden.MaxHeight = 289;
            this.txtNoichuyenden.MinTypedCharacters = 2;
            this.txtNoichuyenden.MyCode = "-1";
            this.txtNoichuyenden.MyID = "-1";
            this.txtNoichuyenden.MyText = "";
            this.txtNoichuyenden.Name = "txtNoichuyenden";
            this.txtNoichuyenden.RaiseEvent = true;
            this.txtNoichuyenden.RaiseEventEnter = true;
            this.txtNoichuyenden.RaiseEventEnterWhenEmpty = true;
            this.txtNoichuyenden.SelectedIndex = -1;
            this.txtNoichuyenden.Size = new System.Drawing.Size(198, 21);
            this.txtNoichuyenden.splitChar = '@';
            this.txtNoichuyenden.splitCharIDAndCode = '#';
            this.txtNoichuyenden.TabIndex = 12;
            this.txtNoichuyenden.TakeCode = false;
            this.txtNoichuyenden.txtMyCode = null;
            this.txtNoichuyenden.txtMyCode_Edit = null;
            this.txtNoichuyenden.txtMyID = null;
            this.txtNoichuyenden.txtMyID_Edit = null;
            this.txtNoichuyenden.txtMyName = null;
            this.txtNoichuyenden.txtMyName_Edit = null;
            this.txtNoichuyenden.txtNext = null;
            // 
            // cboDoituongKCB
            // 
            this.cboDoituongKCB.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboDoituongKCB.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, 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.cboDoituongKCB.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem4,
            uiComboBoxItem5,
            uiComboBoxItem6});
            this.cboDoituongKCB.Location = new System.Drawing.Point(312, 98);
            this.cboDoituongKCB.Name = "cboDoituongKCB";
            this.cboDoituongKCB.Size = new System.Drawing.Size(207, 21);
            this.cboDoituongKCB.TabIndex = 1;
            this.cboDoituongKCB.TabStop = false;
            this.cboDoituongKCB.Text = "Đối tượng KCB";
            // 
            // dtpInputDate
            // 
            this.dtpInputDate.CustomFormat = "dd/MM/yyyy";
            this.dtpInputDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtpInputDate.DropDownCalendar.Name = "";
            this.dtpInputDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtpInputDate.Location = new System.Drawing.Point(637, 98);
            this.dtpInputDate.Name = "dtpInputDate";
            this.dtpInputDate.ShowUpDown = true;
            this.dtpInputDate.Size = new System.Drawing.Size(112, 21);
            this.dtpInputDate.TabIndex = 1;
            this.dtpInputDate.TabStop = false;
            this.dtpInputDate.Value = new System.DateTime(2013, 9, 23, 0, 0, 0, 0);
            this.dtpInputDate.Visible = false;
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.pThongTinQMS);
            this.panel1.Controls.Add(this.pnlTieuDe);
            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(821, 44);
            this.panel1.TabIndex = 599;
            // 
            // pnlTieuDe
            // 
            this.pnlTieuDe.Controls.Add(this.label18);
            this.pnlTieuDe.Controls.Add(this.panel4);
            this.pnlTieuDe.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlTieuDe.Location = new System.Drawing.Point(0, 0);
            this.pnlTieuDe.Name = "pnlTieuDe";
            this.pnlTieuDe.Size = new System.Drawing.Size(821, 44);
            this.pnlTieuDe.TabIndex = 600;
            // 
            // label18
            // 
            this.label18.Dock = System.Windows.Forms.DockStyle.Left;
            this.label18.Font = new System.Drawing.Font("Arial", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label18.Location = new System.Drawing.Point(73, 0);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(707, 44);
            this.label18.TabIndex = 386;
            this.label18.Text = "ĐĂNG KÝ THÔNG TIN KHÁM CHỮA BỆNH";
            this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // panel4
            // 
            this.panel4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel4.BackgroundImage")));
            this.panel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
            this.panel4.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel4.Location = new System.Drawing.Point(0, 0);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(73, 44);
            this.panel4.TabIndex = 0;
            // 
            // vbLine2
            // 
            this.vbLine2._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.vbLine2.BackColor = System.Drawing.Color.Transparent;
            this.vbLine2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine2.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine2.Location = new System.Drawing.Point(7, 121);
            this.vbLine2.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine2.Name = "vbLine2";
            this.vbLine2.Size = new System.Drawing.Size(819, 22);
            this.vbLine2.TabIndex = 597;
            this.vbLine2.TabStop = false;
            this.vbLine2.YourText = "Thông tin dành cho đối tượng khám BHYT";
            // 
            // vbLine1
            // 
            this.vbLine1._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.vbLine1.BackColor = System.Drawing.Color.Transparent;
            this.vbLine1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine1.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine1.Location = new System.Drawing.Point(7, 44);
            this.vbLine1.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine1.Name = "vbLine1";
            this.vbLine1.Size = new System.Drawing.Size(819, 22);
            this.vbLine1.TabIndex = 596;
            this.vbLine1.TabStop = false;
            this.vbLine1.YourText = "Thông tin đăng ký KCB";
            // 
            // lblDoituongKCB
            // 
            this.lblDoituongKCB.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblDoituongKCB.ForeColor = System.Drawing.Color.Red;
            this.lblDoituongKCB.Location = new System.Drawing.Point(237, 98);
            this.lblDoituongKCB.Name = "lblDoituongKCB";
            this.lblDoituongKCB.Size = new System.Drawing.Size(72, 21);
            this.lblDoituongKCB.TabIndex = 402;
            this.lblDoituongKCB.Text = "Đối tượng:";
            this.lblDoituongKCB.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // pnlBottom
            // 
            this.pnlBottom.Controls.Add(this.uiGroupBox2);
            this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.pnlBottom.Location = new System.Drawing.Point(0, 653);
            this.pnlBottom.Name = "pnlBottom";
            this.pnlBottom.Size = new System.Drawing.Size(1008, 54);
            this.pnlBottom.TabIndex = 596;
            // 
            // errorProvider1
            // 
            this.errorProvider1.ContainerControl = this;
            // 
            // frm_KCB_DANGKY
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
            this.ClientSize = new System.Drawing.Size(1008, 730);
            this.Controls.Add(this.pnlMain);
            this.Controls.Add(this.uiStatusBar1);
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frm_KCB_DANGKY";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Đăng ký khám chữa bệnh";
            ((System.ComponentModel.ISupportInitialize)(this.grpChoKham)).EndInit();
            this.grpChoKham.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdListKhoa)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
            this.uiGroupBox2.ResumeLayout(false);
            this.uiGroupBox2.PerformLayout();
            this.pThongTinQMS.ResumeLayout(false);
            this.pThongTinQMS.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cboKieuKham)).EndInit();
            this.pnlBHYT.ResumeLayout(false);
            this.pnlBHYT.PerformLayout();
            this.ctxBOD.ResumeLayout(false);
            this.pnlMain.ResumeLayout(false);
            this.pnlFill.ResumeLayout(false);
            this.pnlRight.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).EndInit();
            this.uiGroupBox3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdRegExam)).EndInit();
            this.pnlnutchucnang.ResumeLayout(false);
            this.panel3.ResumeLayout(false);
            this.pnlPrint.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.tabPage1.PerformLayout();
            this.panel5.ResumeLayout(false);
            this.pnlChonphongkham.ResumeLayout(false);
            this.pnlChonphongkham.PerformLayout();
            this.pnlChonKieukham.ResumeLayout(false);
            this.pnlChonKieukham.PerformLayout();
            this.tabPage2.ResumeLayout(false);
            this.tabPage2.PerformLayout();
            this.panel1.ResumeLayout(false);
            this.pnlTieuDe.ResumeLayout(false);
            this.pnlBottom.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            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();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmUser_FormControl_AU));
            this.GroupBox2 = new System.Windows.Forms.GroupBox();
            this.cboType = new Janus.Windows.EditControls.UIComboBox();
            this.label3 = new System.Windows.Forms.Label();
            this.cboProperty = new Janus.Windows.EditControls.UIComboBox();
            this.label2 = new System.Windows.Forms.Label();
            this.txtControlName = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label8 = new System.Windows.Forms.Label();
            this.txtID = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label5 = new System.Windows.Forms.Label();
            this.txtFormName = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label1 = new System.Windows.Forms.Label();
            this.btnSave = new Janus.Windows.EditControls.UIButton();
            this.btnExit = new Janus.Windows.EditControls.UIButton();
            this.btnReset = new Janus.Windows.EditControls.UIButton();
            this.GroupBox2.SuspendLayout();
            this.SuspendLayout();
            // 
            // GroupBox2
            // 
            this.GroupBox2.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.GroupBox2.Controls.Add(this.cboType);
            this.GroupBox2.Controls.Add(this.label3);
            this.GroupBox2.Controls.Add(this.cboProperty);
            this.GroupBox2.Controls.Add(this.label2);
            this.GroupBox2.Controls.Add(this.txtControlName);
            this.GroupBox2.Controls.Add(this.label8);
            this.GroupBox2.Controls.Add(this.txtID);
            this.GroupBox2.Controls.Add(this.label5);
            this.GroupBox2.Controls.Add(this.txtFormName);
            this.GroupBox2.Controls.Add(this.label1);
            this.GroupBox2.Location = new System.Drawing.Point(7, 3);
            this.GroupBox2.Margin = new System.Windows.Forms.Padding(5);
            this.GroupBox2.Name = "GroupBox2";
            this.GroupBox2.Padding = new System.Windows.Forms.Padding(5);
            this.GroupBox2.Size = new System.Drawing.Size(331, 190);
            this.GroupBox2.TabIndex = 0;
            this.GroupBox2.TabStop = false;
            // 
            // cboType
            // 
            this.cboType.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboType.Location = new System.Drawing.Point(93, 117);
            this.cboType.Name = "cboType";
            this.cboType.Size = new System.Drawing.Size(225, 26);
            this.cboType.TabIndex = 3;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(10, 121);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(38, 19);
            this.label3.TabIndex = 23;
            this.label3.Text = "Type";
            // 
            // cboProperty
            // 
            this.cboProperty.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboProperty.Enabled = false;
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "";
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "ENABLE";
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "VISIBLE";
            uiComboBoxItem4.FormatStyle.Alpha = 0;
            uiComboBoxItem4.IsSeparator = false;
            uiComboBoxItem4.Text = "DISPOSE";
            uiComboBoxItem5.FormatStyle.Alpha = 0;
            uiComboBoxItem5.IsSeparator = false;
            uiComboBoxItem5.Text = "ContextMenuStrip";
            this.cboProperty.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3,
            uiComboBoxItem4,
            uiComboBoxItem5});
            this.cboProperty.Location = new System.Drawing.Point(93, 149);
            this.cboProperty.Name = "cboProperty";
            this.cboProperty.Size = new System.Drawing.Size(225, 26);
            this.cboProperty.TabIndex = 4;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(10, 152);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(62, 19);
            this.label2.TabIndex = 20;
            this.label2.Text = "Property";
            // 
            // txtControlName
            // 
            this.txtControlName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtControlName.Location = new System.Drawing.Point(93, 85);
            this.txtControlName.Name = "txtControlName";
            this.txtControlName.Size = new System.Drawing.Size(225, 26);
            this.txtControlName.TabIndex = 2;
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(10, 88);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(56, 19);
            this.label8.TabIndex = 18;
            this.label8.Text = "Control";
            // 
            // txtID
            // 
            this.txtID.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtID.Enabled = false;
            this.txtID.Location = new System.Drawing.Point(93, 21);
            this.txtID.Name = "txtID";
            this.txtID.Size = new System.Drawing.Size(225, 26);
            this.txtID.TabIndex = 0;
            this.txtID.Text = "-1";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(10, 24);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(23, 19);
            this.label5.TabIndex = 10;
            this.label5.Text = "ID";
            // 
            // txtFormName
            // 
            this.txtFormName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtFormName.Location = new System.Drawing.Point(93, 53);
            this.txtFormName.Name = "txtFormName";
            this.txtFormName.Size = new System.Drawing.Size(225, 26);
            this.txtFormName.TabIndex = 1;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(10, 56);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(41, 19);
            this.label1.TabIndex = 0;
            this.label1.Text = "Form";
            // 
            // btnSave
            // 
            this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnSave.Location = new System.Drawing.Point(93, 232);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(113, 23);
            this.btnSave.TabIndex = 2;
            this.btnSave.Tag = "";
            this.btnSave.Text = "Lưu (Ctrl+S)";
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            // 
            // btnExit
            // 
            this.btnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnExit.Location = new System.Drawing.Point(219, 232);
            this.btnExit.Name = "btnExit";
            this.btnExit.Size = new System.Drawing.Size(113, 23);
            this.btnExit.TabIndex = 3;
            this.btnExit.Text = "Thoát (Esc)";
            this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
            // 
            // btnReset
            // 
            this.btnReset.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnReset.Location = new System.Drawing.Point(93, 201);
            this.btnReset.Name = "btnReset";
            this.btnReset.Size = new System.Drawing.Size(238, 25);
            this.btnReset.TabIndex = 1;
            this.btnReset.Tag = "";
            this.btnReset.Text = "Làm Mới (Ctrl+R)";
            this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
            // 
            // frmUser_FormControl_AU
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 19F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(352, 264);
            this.Controls.Add(this.GroupBox2);
            this.Controls.Add(this.btnSave);
            this.Controls.Add(this.btnExit);
            this.Controls.Add(this.btnReset);
            this.Font = new System.Drawing.Font("Segoe UI Semibold", 10.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.KeyPreview = true;
            this.Margin = new System.Windows.Forms.Padding(4);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frmUser_FormControl_AU";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "FORM CONTROL PROPERTY";
            this.Load += new System.EventHandler(this.frmTestTypeList_AU_Load);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmTestTypeList_AU_KeyDown);
            this.GroupBox2.ResumeLayout(false);
            this.GroupBox2.PerformLayout();
            this.ResumeLayout(false);

        }
Example #19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     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.EditControls.UIComboBoxItem      uiComboBoxItem7 = new Janus.Windows.EditControls.UIComboBoxItem();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(frm_DSACH_BN_TKIEM));
     Janus.Windows.GridEX.GridEXLayout grdPatient_DesignTimeLayout  = new Janus.Windows.GridEX.GridEXLayout();
     this.uiGroupBox1        = new Janus.Windows.EditControls.UIGroupBox();
     this.cboTrangthainoitru = new Janus.Windows.EditControls.UIComboBox();
     this.lblTrangthainoitru = new System.Windows.Forms.Label();
     this.label8             = new System.Windows.Forms.Label();
     this.txtDienthoai       = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.label6             = new System.Windows.Forms.Label();
     this.txtCMT             = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.pnlTrangthai       = new System.Windows.Forms.Panel();
     this.radTatCa           = new Janus.Windows.EditControls.UIRadioButton();
     this.radNgoaiTru        = new Janus.Windows.EditControls.UIRadioButton();
     this.radNoiTru          = new Janus.Windows.EditControls.UIRadioButton();
     this.label5             = new System.Windows.Forms.Label();
     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.grdPatient = new Janus.Windows.GridEX.GridEX();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
     this.uiGroupBox1.SuspendLayout();
     this.pnlTrangthai.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdPatient)).BeginInit();
     this.SuspendLayout();
     //
     // uiGroupBox1
     //
     this.uiGroupBox1.Controls.Add(this.cboTrangthainoitru);
     this.uiGroupBox1.Controls.Add(this.lblTrangthainoitru);
     this.uiGroupBox1.Controls.Add(this.label8);
     this.uiGroupBox1.Controls.Add(this.txtDienthoai);
     this.uiGroupBox1.Controls.Add(this.label6);
     this.uiGroupBox1.Controls.Add(this.txtCMT);
     this.uiGroupBox1.Controls.Add(this.pnlTrangthai);
     this.uiGroupBox1.Controls.Add(this.label5);
     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, 0);
     this.uiGroupBox1.Name     = "uiGroupBox1";
     this.uiGroupBox1.Size     = new System.Drawing.Size(1008, 131);
     this.uiGroupBox1.TabIndex = 2;
     //
     // cboTrangthainoitru
     //
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.IsSeparator       = false;
     uiComboBoxItem1.Text              = "Tất cả";
     uiComboBoxItem1.Value             = ((byte)(100));
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator       = false;
     uiComboBoxItem2.Text              = "Ngoại trú";
     uiComboBoxItem2.Value             = ((byte)(0));
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator       = false;
     uiComboBoxItem3.Text              = "Nhập viện";
     uiComboBoxItem3.Value             = ((byte)(1));
     uiComboBoxItem4.FormatStyle.Alpha = 0;
     uiComboBoxItem4.IsSeparator       = false;
     uiComboBoxItem4.Text              = "Đang điều trị";
     uiComboBoxItem4.Value             = ((byte)(2));
     uiComboBoxItem5.FormatStyle.Alpha = 0;
     uiComboBoxItem5.IsSeparator       = false;
     uiComboBoxItem5.Text              = "Tổng hợp ra viện";
     uiComboBoxItem5.Value             = ((byte)(3));
     uiComboBoxItem6.FormatStyle.Alpha = 0;
     uiComboBoxItem6.IsSeparator       = false;
     uiComboBoxItem6.Text              = "Đã duyệt ra viện";
     uiComboBoxItem6.Value             = ((byte)(4));
     uiComboBoxItem7.FormatStyle.Alpha = 0;
     uiComboBoxItem7.IsSeparator       = false;
     uiComboBoxItem7.Text              = "Đã ra viện";
     uiComboBoxItem7.Value             = ((byte)(5));
     this.cboTrangthainoitru.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2,
         uiComboBoxItem3,
         uiComboBoxItem4,
         uiComboBoxItem5,
         uiComboBoxItem6,
         uiComboBoxItem7
     });
     this.cboTrangthainoitru.Location = new System.Drawing.Point(94, 102);
     this.cboTrangthainoitru.Name     = "cboTrangthainoitru";
     this.cboTrangthainoitru.Size     = new System.Drawing.Size(313, 21);
     this.cboTrangthainoitru.TabIndex = 529;
     this.cboTrangthainoitru.TabStop  = false;
     this.cboTrangthainoitru.Text     = "Trạng thái nội trú";
     //
     // lblTrangthainoitru
     //
     this.lblTrangthainoitru.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTrangthainoitru.ForeColor = System.Drawing.Color.Black;
     this.lblTrangthainoitru.Location  = new System.Drawing.Point(0, 97);
     this.lblTrangthainoitru.Name      = "lblTrangthainoitru";
     this.lblTrangthainoitru.Size      = new System.Drawing.Size(91, 32);
     this.lblTrangthainoitru.TabIndex  = 528;
     this.lblTrangthainoitru.Text      = "T.thái nội trú";
     this.lblTrangthainoitru.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label8
     //
     this.label8.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.Black;
     this.label8.Location  = new System.Drawing.Point(652, 43);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(96, 19);
     this.label8.TabIndex  = 527;
     this.label8.Text      = "Điện thoại:";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtDienthoai
     //
     this.txtDienthoai.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.txtDienthoai.BackColor     = System.Drawing.Color.White;
     this.txtDienthoai.Font          = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDienthoai.Location      = new System.Drawing.Point(754, 40);
     this.txtDienthoai.Name          = "txtDienthoai";
     this.txtDienthoai.Size          = new System.Drawing.Size(119, 21);
     this.txtDienthoai.TabIndex      = 6;
     this.txtDienthoai.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // 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.Black;
     this.label6.Location  = new System.Drawing.Point(465, 46);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(44, 19);
     this.label6.TabIndex  = 525;
     this.label6.Text      = "CMT";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtCMT
     //
     this.txtCMT.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCMT.BackColor     = System.Drawing.Color.White;
     this.txtCMT.Font          = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCMT.Location      = new System.Drawing.Point(515, 44);
     this.txtCMT.Name          = "txtCMT";
     this.txtCMT.Numeric       = true;
     this.txtCMT.Size          = new System.Drawing.Size(131, 21);
     this.txtCMT.TabIndex      = 5;
     this.txtCMT.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // pnlTrangthai
     //
     this.pnlTrangthai.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlTrangthai.Controls.Add(this.radTatCa);
     this.pnlTrangthai.Controls.Add(this.radNgoaiTru);
     this.pnlTrangthai.Controls.Add(this.radNoiTru);
     this.pnlTrangthai.Location = new System.Drawing.Point(94, 67);
     this.pnlTrangthai.Name     = "pnlTrangthai";
     this.pnlTrangthai.Size     = new System.Drawing.Size(313, 31);
     this.pnlTrangthai.TabIndex = 523;
     //
     // radTatCa
     //
     this.radTatCa.Checked   = true;
     this.radTatCa.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radTatCa.ForeColor = System.Drawing.Color.Black;
     this.radTatCa.Location  = new System.Drawing.Point(9, 3);
     this.radTatCa.Name      = "radTatCa";
     this.radTatCa.Size      = new System.Drawing.Size(74, 25);
     this.radTatCa.TabIndex  = 7;
     this.radTatCa.TabStop   = true;
     this.radTatCa.Text      = "Tất cả";
     //
     // radNgoaiTru
     //
     this.radNgoaiTru.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radNgoaiTru.ForeColor = System.Drawing.Color.Black;
     this.radNgoaiTru.Location  = new System.Drawing.Point(92, 3);
     this.radNgoaiTru.Name      = "radNgoaiTru";
     this.radNgoaiTru.Size      = new System.Drawing.Size(92, 25);
     this.radNgoaiTru.TabIndex  = 7;
     this.radNgoaiTru.Text      = "Ngoại trú";
     //
     // radNoiTru
     //
     this.radNoiTru.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radNoiTru.ForeColor = System.Drawing.Color.Black;
     this.radNoiTru.Location  = new System.Drawing.Point(198, 3);
     this.radNoiTru.Name      = "radNoiTru";
     this.radNoiTru.Size      = new System.Drawing.Size(79, 25);
     this.radNoiTru.TabIndex  = 7;
     this.radNoiTru.Text      = "Nội trú";
     //
     // 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.Black;
     this.label5.Location  = new System.Drawing.Point(6, 72);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(79, 21);
     this.label5.TabIndex  = 522;
     this.label5.Text      = "Trạng thái:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboObjectType
     //
     this.cboObjectType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.cboObjectType.Location = new System.Drawing.Point(515, 70);
     this.cboObjectType.Name     = "cboObjectType";
     this.cboObjectType.Size     = new System.Drawing.Size(358, 21);
     this.cboObjectType.TabIndex = 8;
     this.cboObjectType.TabStop  = false;
     this.cboObjectType.Text     = "Đối tượng";
     //
     // 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.Black;
     this.label4.Location  = new System.Drawing.Point(652, 16);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(96, 19);
     this.label4.TabIndex  = 518;
     this.label4.Text      = "Mã lượt khám:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtPatientCode
     //
     this.txtPatientCode.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     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(754, 13);
     this.txtPatientCode.Name          = "txtPatientCode";
     this.txtPatientCode.Size          = new System.Drawing.Size(119, 21);
     this.txtPatientCode.TabIndex      = 3;
     this.txtPatientCode.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // 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.Black;
     this.label2.Location  = new System.Drawing.Point(413, 17);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(96, 19);
     this.label2.TabIndex  = 516;
     this.label2.Text      = "ID Bệnh nhân:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtPatient_ID
     //
     this.txtPatient_ID.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     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(515, 16);
     this.txtPatient_ID.Name          = "txtPatient_ID";
     this.txtPatient_ID.Numeric       = true;
     this.txtPatient_ID.Size          = new System.Drawing.Size(131, 21);
     this.txtPatient_ID.TabIndex      = 2;
     this.txtPatient_ID.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // 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(413, 71);
     this.Label7.Name      = "Label7";
     this.Label7.Size      = new System.Drawing.Size(96, 19);
     this.Label7.TabIndex  = 514;
     this.Label7.Text      = "Đối tượng:";
     this.Label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // 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.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(6, 45);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(79, 21);
     this.label3.TabIndex  = 511;
     this.label3.Text      = "Tên BN :";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // 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   = 0;
     this.chkByDate.TabStop    = false;
     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(879, 15);
     this.cmdTimKiem.Name      = "cmdTimKiem";
     this.cmdTimKiem.Size      = new System.Drawing.Size(123, 71);
     this.cmdTimKiem.TabIndex  = 9;
     this.cmdTimKiem.Text      = "Tìm kiếm";
     //
     // grdPatient
     //
     this.grdPatient.AllowEdit        = Janus.Windows.GridEX.InheritableBoolean.False;
     this.grdPatient.BackColor        = System.Drawing.Color.Silver;
     this.grdPatient.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><FilterRowInfoText>Lọc" +
                                        " thông tin bệnh nhân</FilterRowInfoText></LocalizableData>";
     grdPatient_DesignTimeLayout.LayoutString = resources.GetString("grdPatient_DesignTimeLayout.LayoutString");
     this.grdPatient.DesignTimeLayout         = grdPatient_DesignTimeLayout;
     this.grdPatient.Dock                           = System.Windows.Forms.DockStyle.Fill;
     this.grdPatient.DynamicFiltering               = true;
     this.grdPatient.FilterMode                     = Janus.Windows.GridEX.FilterMode.Automatic;
     this.grdPatient.FocusCellDisplayMode           = Janus.Windows.GridEX.FocusCellDisplayMode.UseSelectedFormatStyle;
     this.grdPatient.FocusCellFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.grdPatient.FocusCellFormatStyle.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
     this.grdPatient.FocusCellFormatStyle.FontBold  = Janus.Windows.GridEX.TriState.True;
     this.grdPatient.Font                           = new System.Drawing.Font("Arial", 9F);
     this.grdPatient.FrozenColumns                  = 3;
     this.grdPatient.GroupByBoxVisible              = false;
     this.grdPatient.HideSelection                  = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdPatient.Location                       = new System.Drawing.Point(0, 131);
     this.grdPatient.Name                           = "grdPatient";
     this.grdPatient.RecordNavigator                = true;
     this.grdPatient.RowHeaders                     = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdPatient.SelectedFormatStyle.BackColor  = System.Drawing.Color.SteelBlue;
     this.grdPatient.Size                           = new System.Drawing.Size(1008, 503);
     this.grdPatient.TabIndex                       = 10;
     this.grdPatient.TabStop                        = false;
     this.grdPatient.VisualStyle                    = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // frm_DSACH_BN_TKIEM
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1008, 634);
     this.Controls.Add(this.grdPatient);
     this.Controls.Add(this.uiGroupBox1);
     this.KeyPreview    = true;
     this.Name          = "frm_DSACH_BN_TKIEM";
     this.ShowIcon      = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Danh sách Bệnh nhân";
     this.Load         += new System.EventHandler(this.frm_DSACH_BN_TKIEM_Load);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
     this.uiGroupBox1.ResumeLayout(false);
     this.uiGroupBox1.PerformLayout();
     this.pnlTrangthai.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdPatient)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(BHYT_79A));
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem81 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem82 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem83 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem84 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem85 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem86 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem87 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem88 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem89 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem90 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem91 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem92 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem93 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem94 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem95 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem96 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.GridEX.GridEXLayout grExcel9324_DesignTimeLayout  = new Janus.Windows.GridEX.GridEXLayout();
     Janus.Windows.GridEX.GridEXLayout grdExcel_DesignTimeLayout     = new Janus.Windows.GridEX.GridEXLayout();
     Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout      = new Janus.Windows.GridEX.GridEXLayout();
     this.pnlHeader       = new System.Windows.Forms.Panel();
     this.baocaO_TIEUDE1  = new VNS.HIS.UI.FORMs.BAOCAO.BHYT.UserControls.BAOCAO_TIEUDE();
     this.pnlSearch       = new System.Windows.Forms.Panel();
     this.radChonNam      = new Janus.Windows.EditControls.UIRadioButton();
     this.radChonQuy      = new Janus.Windows.EditControls.UIRadioButton();
     this.radChonNgay     = new Janus.Windows.EditControls.UIRadioButton();
     this.radChonThang    = new Janus.Windows.EditControls.UIRadioButton();
     this.dtpNam          = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.cboQuy          = new Janus.Windows.EditControls.UIComboBox();
     this.cboThang        = new Janus.Windows.EditControls.UIComboBox();
     this.label3          = new System.Windows.Forms.Label();
     this.dtpToDate       = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtpFromDate     = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.groupBox3       = new System.Windows.Forms.GroupBox();
     this.rad80A          = new System.Windows.Forms.RadioButton();
     this.rad79A          = new System.Windows.Forms.RadioButton();
     this.label4          = new System.Windows.Forms.Label();
     this.cboObject       = new System.Windows.Forms.ComboBox();
     this.cmdSearch       = new Janus.Windows.EditControls.UIButton();
     this.label1          = new System.Windows.Forms.Label();
     this.label2          = new System.Windows.Forms.Label();
     this.label5          = new System.Windows.Forms.Label();
     this.dtCreateDate    = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.groupBox1       = new System.Windows.Forms.GroupBox();
     this.optChitiet      = new System.Windows.Forms.RadioButton();
     this.optTonghop      = new System.Windows.Forms.RadioButton();
     this.pnlfunctions    = new System.Windows.Forms.Panel();
     this.radTheo3360     = new System.Windows.Forms.RadioButton();
     this.radTheo79AHD    = new System.Windows.Forms.RadioButton();
     this.prgBar          = new System.Windows.Forms.ProgressBar();
     this.cmdExcel        = new Janus.Windows.EditControls.UIButton();
     this.cmdPrint        = new Janus.Windows.EditControls.UIButton();
     this.cmdPreview      = new Janus.Windows.EditControls.UIButton();
     this.pnlMain         = new System.Windows.Forms.Panel();
     this.groupBox2       = new System.Windows.Forms.GroupBox();
     this.grExcel9324     = new Janus.Windows.GridEX.GridEX();
     this.grdExcel        = new Janus.Windows.GridEX.GridEX();
     this.grdList         = new Janus.Windows.GridEX.GridEX();
     this.toolTip1        = new System.Windows.Forms.ToolTip(this.components);
     this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
     this.gridEXExporter1 = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
     this.uiGroupBox1     = new Janus.Windows.EditControls.UIGroupBox();
     this.pnlHeader.SuspendLayout();
     this.pnlSearch.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.pnlfunctions.SuspendLayout();
     this.pnlMain.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grExcel9324)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdExcel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
     this.uiGroupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlHeader
     //
     this.pnlHeader.Controls.Add(this.baocaO_TIEUDE1);
     this.pnlHeader.Dock     = System.Windows.Forms.DockStyle.Top;
     this.pnlHeader.Location = new System.Drawing.Point(0, 0);
     this.pnlHeader.Name     = "pnlHeader";
     this.pnlHeader.Size     = new System.Drawing.Size(1024, 35);
     this.pnlHeader.TabIndex = 0;
     //
     // baocaO_TIEUDE1
     //
     this.baocaO_TIEUDE1.Dock              = System.Windows.Forms.DockStyle.Top;
     this.baocaO_TIEUDE1.Location          = new System.Drawing.Point(0, 0);
     this.baocaO_TIEUDE1.MA_BAOCAO         = "BHYT79ATH";
     this.baocaO_TIEUDE1.Name              = "baocaO_TIEUDE1";
     this.baocaO_TIEUDE1.Phimtat           = "";
     this.baocaO_TIEUDE1.PicImg            = ((System.Drawing.Image)(resources.GetObject("baocaO_TIEUDE1.PicImg")));
     this.baocaO_TIEUDE1.ShortcutAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.baocaO_TIEUDE1.ShortcutFont      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.baocaO_TIEUDE1.showHelp          = false;
     this.baocaO_TIEUDE1.Size              = new System.Drawing.Size(1024, 31);
     this.baocaO_TIEUDE1.TabIndex          = 0;
     this.baocaO_TIEUDE1.TIEUDE            = "BẢNG TỔNG HỢP ĐỀ NGHỊ THANH TOÁN CHI PHÍ KHÁM CHỮA BỆNH NGOẠI TRÚ";
     this.baocaO_TIEUDE1.TitleFont         = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     //
     // pnlSearch
     //
     this.pnlSearch.Controls.Add(this.radChonNam);
     this.pnlSearch.Controls.Add(this.radChonQuy);
     this.pnlSearch.Controls.Add(this.radChonNgay);
     this.pnlSearch.Controls.Add(this.radChonThang);
     this.pnlSearch.Controls.Add(this.dtpNam);
     this.pnlSearch.Controls.Add(this.cboQuy);
     this.pnlSearch.Controls.Add(this.cboThang);
     this.pnlSearch.Controls.Add(this.label3);
     this.pnlSearch.Controls.Add(this.dtpToDate);
     this.pnlSearch.Controls.Add(this.dtpFromDate);
     this.pnlSearch.Controls.Add(this.groupBox3);
     this.pnlSearch.Controls.Add(this.label4);
     this.pnlSearch.Controls.Add(this.cboObject);
     this.pnlSearch.Controls.Add(this.cmdSearch);
     this.pnlSearch.Controls.Add(this.label1);
     this.pnlSearch.Dock     = System.Windows.Forms.DockStyle.Top;
     this.pnlSearch.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.pnlSearch.Location = new System.Drawing.Point(0, 35);
     this.pnlSearch.Name     = "pnlSearch";
     this.pnlSearch.Size     = new System.Drawing.Size(1024, 125);
     this.pnlSearch.TabIndex = 1;
     //
     // radChonNam
     //
     this.radChonNam.Location        = new System.Drawing.Point(488, 14);
     this.radChonNam.Name            = "radChonNam";
     this.radChonNam.Size            = new System.Drawing.Size(82, 23);
     this.radChonNam.TabIndex        = 67;
     this.radChonNam.Text            = "Chọn Năm";
     this.radChonNam.VisualStyle     = Janus.Windows.UI.VisualStyle.VS2005;
     this.radChonNam.CheckedChanged += new System.EventHandler(this.radChonNam_CheckedChanged);
     //
     // radChonQuy
     //
     this.radChonQuy.Location        = new System.Drawing.Point(264, 14);
     this.radChonQuy.Name            = "radChonQuy";
     this.radChonQuy.Size            = new System.Drawing.Size(82, 23);
     this.radChonQuy.TabIndex        = 66;
     this.radChonQuy.Text            = "Chọn Quý";
     this.radChonQuy.VisualStyle     = Janus.Windows.UI.VisualStyle.VS2005;
     this.radChonQuy.CheckedChanged += new System.EventHandler(this.radChonQuy_CheckedChanged);
     //
     // radChonNgay
     //
     this.radChonNgay.Checked         = true;
     this.radChonNgay.Location        = new System.Drawing.Point(35, 46);
     this.radChonNgay.Name            = "radChonNgay";
     this.radChonNgay.Size            = new System.Drawing.Size(82, 23);
     this.radChonNgay.TabIndex        = 65;
     this.radChonNgay.TabStop         = true;
     this.radChonNgay.Text            = "Chọn ngày ";
     this.radChonNgay.VisualStyle     = Janus.Windows.UI.VisualStyle.VS2005;
     this.radChonNgay.CheckedChanged += new System.EventHandler(this.radChonNgay_CheckedChanged);
     //
     // radChonThang
     //
     this.radChonThang.Location        = new System.Drawing.Point(35, 14);
     this.radChonThang.Name            = "radChonThang";
     this.radChonThang.Size            = new System.Drawing.Size(82, 23);
     this.radChonThang.TabIndex        = 64;
     this.radChonThang.Text            = "Chọn tháng";
     this.radChonThang.VisualStyle     = Janus.Windows.UI.VisualStyle.VS2005;
     this.radChonThang.CheckedChanged += new System.EventHandler(this.radChonThang_CheckedChanged);
     //
     // dtpNam
     //
     this.dtpNam.CustomFormat = "yyyy ";
     this.dtpNam.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtpNam.DropDownCalendar.Name        = "";
     this.dtpNam.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     this.dtpNam.Font       = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtpNam.Location   = new System.Drawing.Point(573, 14);
     this.dtpNam.Name       = "dtpNam";
     this.dtpNam.ShowUpDown = true;
     this.dtpNam.Size       = new System.Drawing.Size(113, 21);
     this.dtpNam.TabIndex   = 63;
     this.dtpNam.UseCompatibleTextRendering = true;
     this.dtpNam.Value         = new System.DateTime(2014, 9, 11, 0, 0, 0, 0);
     this.dtpNam.VisualStyle   = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     this.dtpNam.ValueChanged += new System.EventHandler(this.dtpNam_ValueChanged);
     //
     // cboQuy
     //
     this.cboQuy.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     uiComboBoxItem81.FormatStyle.Alpha = 0;
     uiComboBoxItem81.IsSeparator       = false;
     uiComboBoxItem81.Text              = "Quý 1";
     uiComboBoxItem81.Value             = ((byte)(1));
     uiComboBoxItem82.FormatStyle.Alpha = 0;
     uiComboBoxItem82.IsSeparator       = false;
     uiComboBoxItem82.Text              = "Quý 2";
     uiComboBoxItem82.Value             = ((byte)(2));
     uiComboBoxItem83.FormatStyle.Alpha = 0;
     uiComboBoxItem83.IsSeparator       = false;
     uiComboBoxItem83.Text              = "Quý 3";
     uiComboBoxItem83.Value             = ((byte)(3));
     uiComboBoxItem84.FormatStyle.Alpha = 0;
     uiComboBoxItem84.IsSeparator       = false;
     uiComboBoxItem84.Text              = "Quý 4";
     uiComboBoxItem84.Value             = ((byte)(4));
     this.cboQuy.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem81,
         uiComboBoxItem82,
         uiComboBoxItem83,
         uiComboBoxItem84
     });
     this.cboQuy.Location              = new System.Drawing.Point(350, 14);
     this.cboQuy.Name                  = "cboQuy";
     this.cboQuy.Size                  = new System.Drawing.Size(132, 21);
     this.cboQuy.TabIndex              = 62;
     this.cboQuy.Text                  = "Chọn Quý";
     this.cboQuy.VisualStyle           = Janus.Windows.UI.VisualStyle.Office2003;
     this.cboQuy.SelectedIndexChanged += new System.EventHandler(this.cboQuy_SelectedIndexChanged);
     //
     // cboThang
     //
     this.cboThang.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     uiComboBoxItem85.FormatStyle.Alpha = 0;
     uiComboBoxItem85.IsSeparator       = false;
     uiComboBoxItem85.Text              = "Tháng 1";
     uiComboBoxItem85.Value             = "1";
     uiComboBoxItem86.FormatStyle.Alpha = 0;
     uiComboBoxItem86.IsSeparator       = false;
     uiComboBoxItem86.Text              = "Tháng 2";
     uiComboBoxItem86.Value             = "2";
     uiComboBoxItem87.FormatStyle.Alpha = 0;
     uiComboBoxItem87.IsSeparator       = false;
     uiComboBoxItem87.Text              = "Tháng 3";
     uiComboBoxItem87.Value             = "3";
     uiComboBoxItem88.FormatStyle.Alpha = 0;
     uiComboBoxItem88.IsSeparator       = false;
     uiComboBoxItem88.Text              = "Tháng 4";
     uiComboBoxItem88.Value             = "4";
     uiComboBoxItem89.FormatStyle.Alpha = 0;
     uiComboBoxItem89.IsSeparator       = false;
     uiComboBoxItem89.Text              = "Tháng 5";
     uiComboBoxItem89.Value             = "5";
     uiComboBoxItem90.FormatStyle.Alpha = 0;
     uiComboBoxItem90.IsSeparator       = false;
     uiComboBoxItem90.Text              = "Tháng 6";
     uiComboBoxItem90.Value             = "6";
     uiComboBoxItem91.FormatStyle.Alpha = 0;
     uiComboBoxItem91.IsSeparator       = false;
     uiComboBoxItem91.Text              = "Tháng 7";
     uiComboBoxItem91.Value             = "7";
     uiComboBoxItem92.FormatStyle.Alpha = 0;
     uiComboBoxItem92.IsSeparator       = false;
     uiComboBoxItem92.Text              = "Tháng 8";
     uiComboBoxItem92.Value             = "8";
     uiComboBoxItem93.FormatStyle.Alpha = 0;
     uiComboBoxItem93.IsSeparator       = false;
     uiComboBoxItem93.Text              = "Tháng 9";
     uiComboBoxItem93.Value             = "9";
     uiComboBoxItem94.FormatStyle.Alpha = 0;
     uiComboBoxItem94.IsSeparator       = false;
     uiComboBoxItem94.Text              = "Tháng 10";
     uiComboBoxItem94.Value             = "10";
     uiComboBoxItem95.FormatStyle.Alpha = 0;
     uiComboBoxItem95.IsSeparator       = false;
     uiComboBoxItem95.Text              = "Tháng 11";
     uiComboBoxItem95.Value             = "11";
     uiComboBoxItem96.FormatStyle.Alpha = 0;
     uiComboBoxItem96.IsSeparator       = false;
     uiComboBoxItem96.Text              = "Tháng 12";
     uiComboBoxItem96.Value             = "12";
     this.cboThang.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem85,
         uiComboBoxItem86,
         uiComboBoxItem87,
         uiComboBoxItem88,
         uiComboBoxItem89,
         uiComboBoxItem90,
         uiComboBoxItem91,
         uiComboBoxItem92,
         uiComboBoxItem93,
         uiComboBoxItem94,
         uiComboBoxItem95,
         uiComboBoxItem96
     });
     this.cboThang.Location              = new System.Drawing.Point(123, 14);
     this.cboThang.Name                  = "cboThang";
     this.cboThang.Size                  = new System.Drawing.Size(132, 21);
     this.cboThang.TabIndex              = 61;
     this.cboThang.Text                  = "Chọn tháng";
     this.cboThang.VisualStyle           = Janus.Windows.UI.VisualStyle.Office2003;
     this.cboThang.SelectedIndexChanged += new System.EventHandler(this.cboThang_SelectedIndexChanged);
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(261, 47);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(83, 20);
     this.label3.TabIndex  = 60;
     this.label3.Text      = "đến ngày";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // dtpToDate
     //
     this.dtpToDate.CustomFormat = "dd/MM/yyyy";
     this.dtpToDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtpToDate.DropDownCalendar.Name        = "";
     this.dtpToDate.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     this.dtpToDate.Location    = new System.Drawing.Point(350, 46);
     this.dtpToDate.Name        = "dtpToDate";
     this.dtpToDate.ShowUpDown  = true;
     this.dtpToDate.Size        = new System.Drawing.Size(132, 21);
     this.dtpToDate.TabIndex    = 59;
     this.dtpToDate.Value       = new System.DateTime(2014, 5, 6, 0, 0, 0, 0);
     this.dtpToDate.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     //
     // dtpFromDate
     //
     this.dtpFromDate.CustomFormat = "dd/MM/yyyy";
     this.dtpFromDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtpFromDate.DropDownCalendar.FirstDayOfWeek = Janus.Windows.CalendarCombo.CalendarDayOfWeek.Sunday;
     this.dtpFromDate.DropDownCalendar.Name           = "";
     this.dtpFromDate.DropDownCalendar.VisualStyle    = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     this.dtpFromDate.Location    = new System.Drawing.Point(123, 46);
     this.dtpFromDate.Name        = "dtpFromDate";
     this.dtpFromDate.ShowUpDown  = true;
     this.dtpFromDate.Size        = new System.Drawing.Size(132, 21);
     this.dtpFromDate.TabIndex    = 58;
     this.dtpFromDate.Value       = new System.DateTime(2014, 5, 6, 0, 0, 0, 0);
     this.dtpFromDate.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.rad80A);
     this.groupBox3.Controls.Add(this.rad79A);
     this.groupBox3.Location = new System.Drawing.Point(705, 7);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(10, 34);
     this.groupBox3.TabIndex = 47;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Visible  = false;
     //
     // rad80A
     //
     this.rad80A.AutoSize = true;
     this.rad80A.Location = new System.Drawing.Point(137, 15);
     this.rad80A.Name     = "rad80A";
     this.rad80A.Size     = new System.Drawing.Size(75, 19);
     this.rad80A.TabIndex = 1;
     this.rad80A.Text     = "Mẫu 80 A";
     this.rad80A.UseVisualStyleBackColor = true;
     //
     // rad79A
     //
     this.rad79A.AutoSize = true;
     this.rad79A.Checked  = true;
     this.rad79A.Location = new System.Drawing.Point(29, 15);
     this.rad79A.Name     = "rad79A";
     this.rad79A.Size     = new System.Drawing.Size(75, 19);
     this.rad79A.TabIndex = 0;
     this.rad79A.TabStop  = true;
     this.rad79A.Text     = "Mẫu 79 A";
     this.rad79A.UseVisualStyleBackColor = true;
     //
     // label4
     //
     this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.label4.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Navy;
     this.label4.Location  = new System.Drawing.Point(32, 67);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(654, 42);
     this.label4.TabIndex  = 46;
     this.label4.Text      = resources.GetString("label4.Text");
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // cboObject
     //
     this.cboObject.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboObject.FormattingEnabled = true;
     this.cboObject.Location          = new System.Drawing.Point(705, 59);
     this.cboObject.Name     = "cboObject";
     this.cboObject.Size     = new System.Drawing.Size(10, 23);
     this.cboObject.TabIndex = 2;
     this.cboObject.Visible  = false;
     //
     // cmdSearch
     //
     this.cmdSearch.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdSearch.Image     = ((System.Drawing.Image)(resources.GetObject("cmdSearch.Image")));
     this.cmdSearch.ImageSize = new System.Drawing.Size(0, 0);
     this.cmdSearch.Location  = new System.Drawing.Point(889, 26);
     this.cmdSearch.Name      = "cmdSearch";
     this.cmdSearch.Size      = new System.Drawing.Size(120, 56);
     this.cmdSearch.TabIndex  = 3;
     this.cmdSearch.Text      = "Tìm kiếm(F3)";
     this.toolTip1.SetToolTip(this.cmdSearch, "Nhấn vào đây để thực hiện lấy dữ liệu báo cáo BHYT.79A");
     this.cmdSearch.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
     //
     // label1
     //
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location  = new System.Drawing.Point(705, 59);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(10, 20);
     this.label1.TabIndex  = 43;
     this.label1.Text      = "Đối tượng KCB:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.label1.Visible   = false;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(12, 8);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(87, 20);
     this.label2.TabIndex  = 51;
     this.label2.Text      = "Kiểu in:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label5
     //
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location  = new System.Drawing.Point(301, 11);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(87, 20);
     this.label5.TabIndex  = 50;
     this.label5.Text      = "Ngày in báo cáo";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // dtCreateDate
     //
     this.dtCreateDate.CustomFormat = "dd/MM/yyyy";
     this.dtCreateDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtCreateDate.DropDownCalendar.Name        = "";
     this.dtCreateDate.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
     this.dtCreateDate.ForeColor   = System.Drawing.Color.Black;
     this.dtCreateDate.Location    = new System.Drawing.Point(394, 9);
     this.dtCreateDate.Name        = "dtCreateDate";
     this.dtCreateDate.ShowUpDown  = true;
     this.dtCreateDate.Size        = new System.Drawing.Size(131, 21);
     this.dtCreateDate.TabIndex    = 49;
     this.dtCreateDate.Value       = new System.DateTime(2014, 5, 6, 0, 0, 0, 0);
     this.dtCreateDate.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.optChitiet);
     this.groupBox1.Controls.Add(this.optTonghop);
     this.groupBox1.Location = new System.Drawing.Point(104, -1);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(193, 33);
     this.groupBox1.TabIndex = 4;
     this.groupBox1.TabStop  = false;
     //
     // optChitiet
     //
     this.optChitiet.AutoSize = true;
     this.optChitiet.Location = new System.Drawing.Point(105, 11);
     this.optChitiet.Name     = "optChitiet";
     this.optChitiet.Size     = new System.Drawing.Size(67, 19);
     this.optChitiet.TabIndex = 1;
     this.optChitiet.Text     = "Chi Tiết";
     this.optChitiet.UseVisualStyleBackColor = true;
     //
     // optTonghop
     //
     this.optTonghop.AutoSize = true;
     this.optTonghop.Checked  = true;
     this.optTonghop.Location = new System.Drawing.Point(21, 10);
     this.optTonghop.Name     = "optTonghop";
     this.optTonghop.Size     = new System.Drawing.Size(78, 19);
     this.optTonghop.TabIndex = 0;
     this.optTonghop.TabStop  = true;
     this.optTonghop.Text     = "Tổng hợp";
     this.optTonghop.UseVisualStyleBackColor = true;
     //
     // pnlfunctions
     //
     this.pnlfunctions.Controls.Add(this.uiGroupBox1);
     this.pnlfunctions.Controls.Add(this.prgBar);
     this.pnlfunctions.Controls.Add(this.label2);
     this.pnlfunctions.Controls.Add(this.label5);
     this.pnlfunctions.Controls.Add(this.cmdExcel);
     this.pnlfunctions.Controls.Add(this.dtCreateDate);
     this.pnlfunctions.Controls.Add(this.cmdPrint);
     this.pnlfunctions.Controls.Add(this.groupBox1);
     this.pnlfunctions.Controls.Add(this.cmdPreview);
     this.pnlfunctions.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.pnlfunctions.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.pnlfunctions.Location = new System.Drawing.Point(0, 612);
     this.pnlfunctions.Name     = "pnlfunctions";
     this.pnlfunctions.Size     = new System.Drawing.Size(1024, 56);
     this.pnlfunctions.TabIndex = 2;
     //
     // radTheo3360
     //
     this.radTheo3360.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.radTheo3360.AutoSize = true;
     this.radTheo3360.Checked  = true;
     this.radTheo3360.Location = new System.Drawing.Point(8, 8);
     this.radTheo3360.Name     = "radTheo3360";
     this.radTheo3360.Size     = new System.Drawing.Size(53, 19);
     this.radTheo3360.TabIndex = 53;
     this.radTheo3360.TabStop  = true;
     this.radTheo3360.Text     = "3360";
     this.radTheo3360.UseVisualStyleBackColor = true;
     //
     // radTheo79AHD
     //
     this.radTheo79AHD.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.radTheo79AHD.AutoSize = true;
     this.radTheo79AHD.Location = new System.Drawing.Point(8, 28);
     this.radTheo79AHD.Name     = "radTheo79AHD";
     this.radTheo79AHD.Size     = new System.Drawing.Size(68, 19);
     this.radTheo79AHD.TabIndex = 52;
     this.radTheo79AHD.Text     = "79A-HD";
     this.radTheo79AHD.UseVisualStyleBackColor = true;
     //
     // prgBar
     //
     this.prgBar.Location = new System.Drawing.Point(3, 35);
     this.prgBar.Name     = "prgBar";
     this.prgBar.Size     = new System.Drawing.Size(522, 17);
     this.prgBar.TabIndex = 18;
     this.prgBar.Visible  = false;
     //
     // cmdExcel
     //
     this.cmdExcel.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdExcel.Enabled   = false;
     this.cmdExcel.Image     = ((System.Drawing.Image)(resources.GetObject("cmdExcel.Image")));
     this.cmdExcel.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdExcel.Location  = new System.Drawing.Point(895, 14);
     this.cmdExcel.Name      = "cmdExcel";
     this.cmdExcel.Size      = new System.Drawing.Size(114, 34);
     this.cmdExcel.TabIndex  = 17;
     this.cmdExcel.Text      = "Excel";
     this.toolTip1.SetToolTip(this.cmdExcel, "Nhấn vào đây để xuất dữ liệu báo cáo ra file excel");
     this.cmdExcel.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
     //
     // cmdPrint
     //
     this.cmdPrint.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdPrint.Enabled     = false;
     this.cmdPrint.Image       = ((System.Drawing.Image)(resources.GetObject("cmdPrint.Image")));
     this.cmdPrint.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdPrint.Location    = new System.Drawing.Point(650, 14);
     this.cmdPrint.Name        = "cmdPrint";
     this.cmdPrint.Size        = new System.Drawing.Size(114, 34);
     this.cmdPrint.TabIndex    = 13;
     this.cmdPrint.Text        = "In";
     this.cmdPrint.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
     //
     // cmdPreview
     //
     this.cmdPreview.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdPreview.Enabled     = false;
     this.cmdPreview.Image       = ((System.Drawing.Image)(resources.GetObject("cmdPreview.Image")));
     this.cmdPreview.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdPreview.Location    = new System.Drawing.Point(768, 14);
     this.cmdPreview.Name        = "cmdPreview";
     this.cmdPreview.Size        = new System.Drawing.Size(124, 34);
     this.cmdPreview.TabIndex    = 12;
     this.cmdPreview.Text        = "Xem trước khi in";
     this.cmdPreview.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
     //
     // pnlMain
     //
     this.pnlMain.Controls.Add(this.groupBox2);
     this.pnlMain.Controls.Add(this.grExcel9324);
     this.pnlMain.Controls.Add(this.grdExcel);
     this.pnlMain.Controls.Add(this.grdList);
     this.pnlMain.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pnlMain.Location = new System.Drawing.Point(0, 160);
     this.pnlMain.Name     = "pnlMain";
     this.pnlMain.Size     = new System.Drawing.Size(1024, 452);
     this.pnlMain.TabIndex = 3;
     //
     // groupBox2
     //
     this.groupBox2.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Location = new System.Drawing.Point(531, 461);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(92, 38);
     this.groupBox2.TabIndex = 52;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "groupBox2";
     //
     // grExcel9324
     //
     grExcel9324_DesignTimeLayout.LayoutString = resources.GetString("grExcel9324_DesignTimeLayout.LayoutString");
     this.grExcel9324.DesignTimeLayout         = grExcel9324_DesignTimeLayout;
     this.grExcel9324.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.grExcel9324.DynamicFiltering = true;
     this.grExcel9324.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.grExcel9324.FilterRowUpdateMode            = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
     this.grExcel9324.FocusCellDisplayMode           = Janus.Windows.GridEX.FocusCellDisplayMode.UseSelectedFormatStyle;
     this.grExcel9324.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.grExcel9324.GroupByBoxVisible                      = false;
     this.grExcel9324.GroupMode                              = Janus.Windows.GridEX.GroupMode.Collapsed;
     this.grExcel9324.GroupRowFormatStyle.Font               = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
     this.grExcel9324.GroupRowFormatStyle.FontBold           = Janus.Windows.GridEX.TriState.True;
     this.grExcel9324.GroupTotalRowFormatStyle.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
     this.grExcel9324.GroupTotals                            = Janus.Windows.GridEX.GroupTotals.Always;
     this.grExcel9324.Location         = new System.Drawing.Point(0, 240);
     this.grExcel9324.Name             = "grExcel9324";
     this.grExcel9324.RecordNavigator  = true;
     this.grExcel9324.RowHeaderContent = Janus.Windows.GridEX.RowHeaderContent.RowIndex;
     this.grExcel9324.RowHeaders       = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grExcel9324.Size             = new System.Drawing.Size(1024, 106);
     this.grExcel9324.TabIndex         = 275;
     this.grExcel9324.TabStop          = false;
     this.grExcel9324.TotalRow         = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grExcel9324.TotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.grExcel9324.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grExcel9324.Visible          = false;
     //
     // grdExcel
     //
     grdExcel_DesignTimeLayout.LayoutString = resources.GetString("grdExcel_DesignTimeLayout.LayoutString");
     this.grdExcel.DesignTimeLayout         = grdExcel_DesignTimeLayout;
     this.grdExcel.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.grdExcel.DynamicFiltering = true;
     this.grdExcel.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.grdExcel.FilterRowUpdateMode            = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
     this.grdExcel.FocusCellDisplayMode           = Janus.Windows.GridEX.FocusCellDisplayMode.UseSelectedFormatStyle;
     this.grdExcel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.grdExcel.GroupByBoxVisible                      = false;
     this.grdExcel.GroupMode                              = Janus.Windows.GridEX.GroupMode.Collapsed;
     this.grdExcel.GroupRowFormatStyle.Font               = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
     this.grdExcel.GroupRowFormatStyle.FontBold           = Janus.Windows.GridEX.TriState.True;
     this.grdExcel.GroupTotalRowFormatStyle.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
     this.grdExcel.GroupTotals                            = Janus.Windows.GridEX.GroupTotals.Always;
     this.grdExcel.Location         = new System.Drawing.Point(0, 346);
     this.grdExcel.Name             = "grdExcel";
     this.grdExcel.RecordNavigator  = true;
     this.grdExcel.RowHeaderContent = Janus.Windows.GridEX.RowHeaderContent.RowIndex;
     this.grdExcel.RowHeaders       = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdExcel.Size             = new System.Drawing.Size(1024, 106);
     this.grdExcel.TabIndex         = 273;
     this.grdExcel.TabStop          = false;
     this.grdExcel.TotalRow         = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdExcel.TotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.grdExcel.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdExcel.Visible          = false;
     //
     // grdList
     //
     this.grdList.DefaultFilterRowComparison = Janus.Windows.GridEX.FilterConditionOperator.Contains;
     grdList_DesignTimeLayout.LayoutString   = resources.GetString("grdList_DesignTimeLayout.LayoutString");
     this.grdList.DesignTimeLayout           = grdList_DesignTimeLayout;
     this.grdList.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.grdList.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
     this.grdList.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.grdList.FilterRowUpdateMode            = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
     this.grdList.FocusCellDisplayMode           = Janus.Windows.GridEX.FocusCellDisplayMode.UseSelectedFormatStyle;
     this.grdList.Font = new System.Drawing.Font("Arial", 9F);
     this.grdList.GroupByBoxVisible                      = false;
     this.grdList.GroupMode                              = Janus.Windows.GridEX.GroupMode.Collapsed;
     this.grdList.GroupRowFormatStyle.Font               = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.grdList.GroupRowFormatStyle.FontBold           = Janus.Windows.GridEX.TriState.True;
     this.grdList.GroupRowFormatStyle.ForeColor          = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.grdList.GroupTotalRowFormatStyle.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
     this.grdList.GroupTotals                            = Janus.Windows.GridEX.GroupTotals.Always;
     this.grdList.Location         = new System.Drawing.Point(0, 0);
     this.grdList.Name             = "grdList";
     this.grdList.RecordNavigator  = true;
     this.grdList.RowHeaderContent = Janus.Windows.GridEX.RowHeaderContent.RowIndex;
     this.grdList.Size             = new System.Drawing.Size(1024, 452);
     this.grdList.TabIndex         = 274;
     this.grdList.TabStop          = false;
     this.grdList.TotalRow         = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.TotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.grdList.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdList.VisualStyle      = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // gridEXExporter1
     //
     this.gridEXExporter1.GridEX = this.grdExcel;
     //
     // uiGroupBox1
     //
     this.uiGroupBox1.Controls.Add(this.radTheo3360);
     this.uiGroupBox1.Controls.Add(this.radTheo79AHD);
     this.uiGroupBox1.Location    = new System.Drawing.Point(531, 2);
     this.uiGroupBox1.Name        = "uiGroupBox1";
     this.uiGroupBox1.Size        = new System.Drawing.Size(112, 50);
     this.uiGroupBox1.TabIndex    = 54;
     this.uiGroupBox1.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2003;
     //
     // BHYT_79A
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.Controls.Add(this.pnlMain);
     this.Controls.Add(this.pnlfunctions);
     this.Controls.Add(this.pnlSearch);
     this.Controls.Add(this.pnlHeader);
     this.Name = "BHYT_79A";
     this.Size = new System.Drawing.Size(1024, 668);
     this.pnlHeader.ResumeLayout(false);
     this.pnlSearch.ResumeLayout(false);
     this.pnlSearch.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.pnlfunctions.ResumeLayout(false);
     this.pnlfunctions.PerformLayout();
     this.pnlMain.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grExcel9324)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdExcel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
     this.uiGroupBox1.ResumeLayout(false);
     this.uiGroupBox1.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();
     System.ComponentModel.ComponentResourceManager resources           = new System.ComponentModel.ComponentResourceManager(typeof(frm_danhsachbenhnhan_ngoaitru));
     Janus.Windows.GridEX.GridEXLayout         grdList_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();
     this.cmdExportToExcel = new Janus.Windows.EditControls.UIButton();
     this.dtNgayInPhieu    = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.label3           = new System.Windows.Forms.Label();
     this.cmdInPhieuXN     = new Janus.Windows.EditControls.UIButton();
     this.cmdExit          = new Janus.Windows.EditControls.UIButton();
     this.saveFileDialog1  = new System.Windows.Forms.SaveFileDialog();
     this.gridEXExporter1  = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
     this.printDialog1     = new System.Windows.Forms.PrintDialog();
     this.baocaO_TIEUDE1   = new VNS.HIS.UI.FORMs.BAOCAO.BHYT.UserControls.BAOCAO_TIEUDE();
     this.uiGroupBox2      = new Janus.Windows.EditControls.UIGroupBox();
     this.cboDoituongKCB   = new Janus.Windows.EditControls.UIComboBox();
     this.panel1           = new System.Windows.Forms.Panel();
     this.grdList          = new Janus.Windows.GridEX.GridEX();
     this.cboKhoa          = new Janus.Windows.EditControls.UIComboBox();
     this.label4           = new System.Windows.Forms.Label();
     this.label1           = new System.Windows.Forms.Label();
     this.dtToDate         = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtFromDate       = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.chkByDate        = new Janus.Windows.EditControls.UICheckBox();
     this.toolTip1         = new System.Windows.Forms.ToolTip(this.components);
     this.cbolankham       = new Janus.Windows.EditControls.UIComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
     this.uiGroupBox2.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     this.SuspendLayout();
     //
     // cmdExportToExcel
     //
     this.cmdExportToExcel.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdExportToExcel.Font        = new System.Drawing.Font("Arial", 9F);
     this.cmdExportToExcel.Image       = ((System.Drawing.Image)(resources.GetObject("cmdExportToExcel.Image")));
     this.cmdExportToExcel.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdExportToExcel.Location    = new System.Drawing.Point(364, 530);
     this.cmdExportToExcel.Name        = "cmdExportToExcel";
     this.cmdExportToExcel.Size        = new System.Drawing.Size(133, 30);
     this.cmdExportToExcel.TabIndex    = 9;
     this.cmdExportToExcel.Text        = "Xuất Excel";
     this.cmdExportToExcel.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
     this.cmdExportToExcel.Click      += new System.EventHandler(this.cmdExportToExcel_Click);
     //
     // dtNgayInPhieu
     //
     this.dtNgayInPhieu.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.dtNgayInPhieu.CustomFormat = "dd/MM/yyyy";
     this.dtNgayInPhieu.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtNgayInPhieu.DropDownCalendar.Name = "";
     this.dtNgayInPhieu.Font       = new System.Drawing.Font("Arial", 9F);
     this.dtNgayInPhieu.Location   = new System.Drawing.Point(81, 530);
     this.dtNgayInPhieu.Name       = "dtNgayInPhieu";
     this.dtNgayInPhieu.ShowUpDown = true;
     this.dtNgayInPhieu.Size       = new System.Drawing.Size(200, 21);
     this.dtNgayInPhieu.TabIndex   = 11;
     this.dtNgayInPhieu.TabStop    = false;
     this.dtNgayInPhieu.Value      = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
     //
     // label3
     //
     this.label3.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.AutoSize = true;
     this.label3.Font     = new System.Drawing.Font("Arial", 9F);
     this.label3.Location = new System.Drawing.Point(3, 534);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(48, 15);
     this.label3.TabIndex = 88;
     this.label3.Text     = "Ngày in";
     //
     // cmdInPhieuXN
     //
     this.cmdInPhieuXN.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdInPhieuXN.Font        = new System.Drawing.Font("Arial", 9F);
     this.cmdInPhieuXN.Image       = ((System.Drawing.Image)(resources.GetObject("cmdInPhieuXN.Image")));
     this.cmdInPhieuXN.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdInPhieuXN.Location    = new System.Drawing.Point(503, 530);
     this.cmdInPhieuXN.Name        = "cmdInPhieuXN";
     this.cmdInPhieuXN.Size        = new System.Drawing.Size(133, 30);
     this.cmdInPhieuXN.TabIndex    = 8;
     this.cmdInPhieuXN.Text        = "In báo cáo";
     this.cmdInPhieuXN.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
     this.cmdInPhieuXN.Click      += new System.EventHandler(this.cmdInPhieuXN_Click);
     //
     // cmdExit
     //
     this.cmdExit.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdExit.Font      = new System.Drawing.Font("Arial", 9F);
     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(642, 530);
     this.cmdExit.Name      = "cmdExit";
     this.cmdExit.Size      = new System.Drawing.Size(133, 30);
     this.cmdExit.TabIndex  = 10;
     this.cmdExit.Text      = "Thoát (Esc)";
     //
     // printDialog1
     //
     this.printDialog1.UseEXDialog = true;
     //
     // baocaO_TIEUDE1
     //
     this.baocaO_TIEUDE1.BackColor         = System.Drawing.SystemColors.Control;
     this.baocaO_TIEUDE1.Dock              = System.Windows.Forms.DockStyle.Top;
     this.baocaO_TIEUDE1.Location          = new System.Drawing.Point(0, 0);
     this.baocaO_TIEUDE1.MA_BAOCAO         = "THUOC_BCDSACH_BNHANLINHTHUOC";
     this.baocaO_TIEUDE1.Name              = "baocaO_TIEUDE1";
     this.baocaO_TIEUDE1.Phimtat           = "Bạn có thể sử dụng phím tắt";
     this.baocaO_TIEUDE1.PicImg            = ((System.Drawing.Image)(resources.GetObject("baocaO_TIEUDE1.PicImg")));
     this.baocaO_TIEUDE1.ShortcutAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.baocaO_TIEUDE1.ShortcutFont      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.baocaO_TIEUDE1.showHelp          = false;
     this.baocaO_TIEUDE1.Size              = new System.Drawing.Size(1010, 53);
     this.baocaO_TIEUDE1.TabIndex          = 115;
     this.baocaO_TIEUDE1.TIEUDE            = "BÁO CÁO THỐNG KÊ DANH SÁCH BỆNH NHÂN";
     this.baocaO_TIEUDE1.TitleFont         = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     //
     // uiGroupBox2
     //
     this.uiGroupBox2.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.uiGroupBox2.Controls.Add(this.cboDoituongKCB);
     this.uiGroupBox2.Controls.Add(this.panel1);
     this.uiGroupBox2.Controls.Add(this.cboKhoa);
     this.uiGroupBox2.Controls.Add(this.label4);
     this.uiGroupBox2.Controls.Add(this.label1);
     this.uiGroupBox2.Controls.Add(this.dtToDate);
     this.uiGroupBox2.Controls.Add(this.dtFromDate);
     this.uiGroupBox2.Controls.Add(this.chkByDate);
     this.uiGroupBox2.Font     = new System.Drawing.Font("Arial", 9F);
     this.uiGroupBox2.Image    = ((System.Drawing.Image)(resources.GetObject("uiGroupBox2.Image")));
     this.uiGroupBox2.Location = new System.Drawing.Point(0, 59);
     this.uiGroupBox2.Name     = "uiGroupBox2";
     this.uiGroupBox2.Size     = new System.Drawing.Size(1010, 465);
     this.uiGroupBox2.TabIndex = 116;
     this.uiGroupBox2.Text     = "Thông tin tìm kiếm";
     //
     // cboDoituongKCB
     //
     this.cboDoituongKCB.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboDoituongKCB.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboDoituongKCB.Location           = new System.Drawing.Point(520, 27);
     this.cboDoituongKCB.Name               = "cboDoituongKCB";
     this.cboDoituongKCB.SelectInDataSource = true;
     this.cboDoituongKCB.Size               = new System.Drawing.Size(270, 21);
     this.cboDoituongKCB.TabIndex           = 1;
     this.cboDoituongKCB.Text               = "Đối tượng";
     //
     // panel1
     //
     this.panel1.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.panel1.Controls.Add(this.grdList);
     this.panel1.Location = new System.Drawing.Point(6, 123);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(998, 336);
     this.panel1.TabIndex = 46;
     //
     // grdList
     //
     this.grdList.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     grdList_DesignTimeLayout.LayoutString = resources.GetString("grdList_DesignTimeLayout.LayoutString");
     this.grdList.DesignTimeLayout         = grdList_DesignTimeLayout;
     this.grdList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdList.Font = new System.Drawing.Font("Arial", 9F);
     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.Size             = new System.Drawing.Size(998, 336);
     this.grdList.TabIndex         = 21;
     this.grdList.TabStop          = false;
     this.grdList.TotalRow         = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdList.VisualStyle      = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // cboKhoa
     //
     this.cboKhoa.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboKhoa.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboKhoa.Location           = new System.Drawing.Point(123, 27);
     this.cboKhoa.Name               = "cboKhoa";
     this.cboKhoa.SelectInDataSource = true;
     this.cboKhoa.Size               = new System.Drawing.Size(270, 21);
     this.cboKhoa.TabIndex           = 0;
     this.cboKhoa.Text               = "Khoa thực hiện";
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(13, 29);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(104, 15);
     this.label4.TabIndex  = 44;
     this.label4.Text      = "Khoa KCB";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(410, 29);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(104, 15);
     this.label1.TabIndex  = 16;
     this.label1.Text      = "Đối tượng KCB:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // dtToDate
     //
     this.dtToDate.CustomFormat = "dd/MM/yyyy";
     this.dtToDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtToDate.DropDownCalendar.Name = "";
     this.dtToDate.Font       = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtToDate.Location   = new System.Drawing.Point(521, 54);
     this.dtToDate.Name       = "dtToDate";
     this.dtToDate.ShowUpDown = true;
     this.dtToDate.Size       = new System.Drawing.Size(269, 21);
     this.dtToDate.TabIndex   = 6;
     this.dtToDate.Value      = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
     //
     // dtFromDate
     //
     this.dtFromDate.CustomFormat = "dd/MM/yyyy";
     this.dtFromDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtFromDate.DropDownCalendar.Name = "";
     this.dtFromDate.Font       = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtFromDate.Location   = new System.Drawing.Point(123, 54);
     this.dtFromDate.Name       = "dtFromDate";
     this.dtFromDate.ShowUpDown = true;
     this.dtFromDate.Size       = new System.Drawing.Size(270, 21);
     this.dtFromDate.TabIndex   = 5;
     this.dtFromDate.Value      = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
     //
     // chkByDate
     //
     this.chkByDate.Checked    = true;
     this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkByDate.Location   = new System.Drawing.Point(48, 55);
     this.chkByDate.Name       = "chkByDate";
     this.chkByDate.Size       = new System.Drawing.Size(69, 23);
     this.chkByDate.TabIndex   = 4;
     this.chkByDate.Text       = "Từ ngày";
     //
     // toolTip1
     //
     this.toolTip1.IsBalloon    = true;
     this.toolTip1.ToolTipTitle = "Trợ giúp";
     //
     // cbolankham
     //
     this.cbolankham.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              = "Tất cả";
     uiComboBoxItem1.Value             = ((short)(-1));
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator       = false;
     uiComboBoxItem2.Text              = "Khám 1 lần";
     uiComboBoxItem2.Value             = ((short)(1));
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator       = false;
     uiComboBoxItem3.Text              = "Khám hơn 1 lần";
     uiComboBoxItem3.Value             = ((short)(2));
     this.cbolankham.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2,
         uiComboBoxItem3
     });
     this.cbolankham.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cbolankham.Location           = new System.Drawing.Point(122, 142);
     this.cbolankham.Name               = "cbolankham";
     this.cbolankham.SelectInDataSource = true;
     this.cbolankham.Size               = new System.Drawing.Size(270, 21);
     this.cbolankham.TabIndex           = 117;
     this.cbolankham.Text               = "Chọn lần khám";
     //
     // frm_danhsachbenhnhan_ngoaitru
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1010, 562);
     this.Controls.Add(this.cbolankham);
     this.Controls.Add(this.uiGroupBox2);
     this.Controls.Add(this.baocaO_TIEUDE1);
     this.Controls.Add(this.cmdExportToExcel);
     this.Controls.Add(this.dtNgayInPhieu);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.cmdInPhieuXN);
     this.Controls.Add(this.cmdExit);
     this.KeyPreview    = true;
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "frm_danhsachbenhnhan_ngoaitru";
     this.ShowIcon      = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "BÁO CÁO TÌNH HÌNH TIẾP ĐÓN BỆNH NHÂN";
     this.Load         += new System.EventHandler(this.frm_BAOCAO_TONGHOP_TAI_KKB_DTUONG_THUPHI_Load);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
     this.uiGroupBox2.ResumeLayout(false);
     this.uiGroupBox2.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #22
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(frm_MapingPara));
     Janus.Windows.GridEX.GridEXLayout         grdLIS_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.GridEX.GridEXLayout         grdHIS_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     this.uiGroupBox2   = new Janus.Windows.EditControls.UIGroupBox();
     this.cmdSave       = new Janus.Windows.EditControls.UIButton();
     this.cmdExit       = new Janus.Windows.EditControls.UIButton();
     this.uiTab1        = new Janus.Windows.UI.Tab.UITab();
     this.uiTabPage1    = new Janus.Windows.UI.Tab.UITabPage();
     this.uiGroupBox4   = new Janus.Windows.EditControls.UIGroupBox();
     this.uiGroupBox3   = new Janus.Windows.EditControls.UIGroupBox();
     this.grdLIS        = new Janus.Windows.GridEX.GridEX();
     this.uiGroupBox1   = new Janus.Windows.EditControls.UIGroupBox();
     this.label3        = new System.Windows.Forms.Label();
     this.cboTrangThai  = new Janus.Windows.EditControls.UIComboBox();
     this.label2        = new System.Windows.Forms.Label();
     this.txtAlias_Name = new Janus.Windows.GridEX.EditControls.EditBox();
     this.cboThietBi    = new Janus.Windows.EditControls.UIComboBox();
     this.cmdGetData    = new Janus.Windows.EditControls.UIButton();
     this.label1        = new System.Windows.Forms.Label();
     this.uiTabPage2    = new Janus.Windows.UI.Tab.UITabPage();
     this.uiTabPage3    = new Janus.Windows.UI.Tab.UITabPage();
     this.grdHIS        = new Janus.Windows.GridEX.GridEX();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
     this.uiGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiTab1)).BeginInit();
     this.uiTab1.SuspendLayout();
     this.uiTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox4)).BeginInit();
     this.uiGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).BeginInit();
     this.uiGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdLIS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
     this.uiGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdHIS)).BeginInit();
     this.SuspendLayout();
     //
     // uiGroupBox2
     //
     this.uiGroupBox2.Controls.Add(this.cmdSave);
     this.uiGroupBox2.Controls.Add(this.cmdExit);
     this.uiGroupBox2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.uiGroupBox2.Image    = ((System.Drawing.Image)(resources.GetObject("uiGroupBox2.Image")));
     this.uiGroupBox2.Location = new System.Drawing.Point(0, 576);
     this.uiGroupBox2.Name     = "uiGroupBox2";
     this.uiGroupBox2.Size     = new System.Drawing.Size(907, 50);
     this.uiGroupBox2.TabIndex = 2;
     this.uiGroupBox2.Text     = "&Chức năng";
     //
     // cmdSave
     //
     this.cmdSave.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdSave.Image    = ((System.Drawing.Image)(resources.GetObject("cmdSave.Image")));
     this.cmdSave.Location = new System.Drawing.Point(365, 18);
     this.cmdSave.Name     = "cmdSave";
     this.cmdSave.Size     = new System.Drawing.Size(125, 26);
     this.cmdSave.TabIndex = 1;
     this.cmdSave.Text     = "&Lưu lại(Ctrl+S)";
     this.cmdSave.Click   += new System.EventHandler(this.cmdSave_Click);
     //
     // cmdExit
     //
     this.cmdExit.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdExit.Image    = ((System.Drawing.Image)(resources.GetObject("cmdExit.Image")));
     this.cmdExit.Location = new System.Drawing.Point(496, 18);
     this.cmdExit.Name     = "cmdExit";
     this.cmdExit.Size     = new System.Drawing.Size(125, 26);
     this.cmdExit.TabIndex = 0;
     this.cmdExit.Text     = "&Thoát(Esc)";
     this.cmdExit.Click   += new System.EventHandler(this.cmdExit_Click);
     //
     // uiTab1
     //
     this.uiTab1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.uiTab1.Location = new System.Drawing.Point(0, 0);
     this.uiTab1.Name     = "uiTab1";
     this.uiTab1.Size     = new System.Drawing.Size(907, 576);
     this.uiTab1.TabIndex = 3;
     this.uiTab1.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
         this.uiTabPage1,
         this.uiTabPage2,
         this.uiTabPage3
     });
     this.uiTab1.VisualStyle = Janus.Windows.UI.Tab.TabVisualStyle.VS2005;
     //
     // uiTabPage1
     //
     this.uiTabPage1.Controls.Add(this.uiGroupBox4);
     this.uiTabPage1.Controls.Add(this.uiGroupBox3);
     this.uiTabPage1.Controls.Add(this.uiGroupBox1);
     this.uiTabPage1.Location = new System.Drawing.Point(1, 21);
     this.uiTabPage1.Name     = "uiTabPage1";
     this.uiTabPage1.Size     = new System.Drawing.Size(905, 554);
     this.uiTabPage1.TabStop  = true;
     this.uiTabPage1.Text     = "Thông số map chi tiết";
     //
     // uiGroupBox4
     //
     this.uiGroupBox4.Controls.Add(this.grdHIS);
     this.uiGroupBox4.Dock     = System.Windows.Forms.DockStyle.Left;
     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(419, 93);
     this.uiGroupBox4.Name     = "uiGroupBox4";
     this.uiGroupBox4.Size     = new System.Drawing.Size(486, 461);
     this.uiGroupBox4.TabIndex = 7;
     this.uiGroupBox4.Text     = "&Danh sách thông số HIS";
     //
     // uiGroupBox3
     //
     this.uiGroupBox3.Controls.Add(this.grdLIS);
     this.uiGroupBox3.Dock     = System.Windows.Forms.DockStyle.Left;
     this.uiGroupBox3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox3.Location = new System.Drawing.Point(0, 93);
     this.uiGroupBox3.Name     = "uiGroupBox3";
     this.uiGroupBox3.Size     = new System.Drawing.Size(419, 461);
     this.uiGroupBox3.TabIndex = 6;
     this.uiGroupBox3.Text     = "&Danh sách thông số LIS";
     //
     // grdLIS
     //
     grdLIS_DesignTimeLayout.LayoutString = resources.GetString("grdLIS_DesignTimeLayout.LayoutString");
     this.grdLIS.DesignTimeLayout         = grdLIS_DesignTimeLayout;
     this.grdLIS.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdLIS.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grdLIS.GroupByBoxVisible = false;
     this.grdLIS.Location          = new System.Drawing.Point(3, 17);
     this.grdLIS.Name     = "grdLIS";
     this.grdLIS.Size     = new System.Drawing.Size(413, 441);
     this.grdLIS.TabIndex = 0;
     //
     // uiGroupBox1
     //
     this.uiGroupBox1.Controls.Add(this.label3);
     this.uiGroupBox1.Controls.Add(this.cboTrangThai);
     this.uiGroupBox1.Controls.Add(this.label2);
     this.uiGroupBox1.Controls.Add(this.txtAlias_Name);
     this.uiGroupBox1.Controls.Add(this.cboThietBi);
     this.uiGroupBox1.Controls.Add(this.cmdGetData);
     this.uiGroupBox1.Controls.Add(this.label1);
     this.uiGroupBox1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.uiGroupBox1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.uiGroupBox1.Name     = "uiGroupBox1";
     this.uiGroupBox1.Size     = new System.Drawing.Size(905, 93);
     this.uiGroupBox1.TabIndex = 5;
     this.uiGroupBox1.Text     = "&Thông tin tìm kiếm";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(351, 30);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(62, 15);
     this.label3.TabIndex = 9;
     this.label3.Text     = "Trạng thái";
     //
     // cboTrangThai
     //
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.IsSeparator       = false;
     uiComboBoxItem1.Text              = "Tất cả";
     uiComboBoxItem1.Value             = -1;
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator       = false;
     uiComboBoxItem2.Text              = "Đã Map";
     uiComboBoxItem2.Value             = 1;
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator       = false;
     uiComboBoxItem3.Text              = "Chưa map";
     uiComboBoxItem3.Value             = 0;
     this.cboTrangThai.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2,
         uiComboBoxItem3
     });
     this.cboTrangThai.Location = new System.Drawing.Point(432, 26);
     this.cboTrangThai.Name     = "cboTrangThai";
     this.cboTrangThai.Size     = new System.Drawing.Size(158, 21);
     this.cboTrangThai.TabIndex = 8;
     this.cboTrangThai.Text     = "trạng thái";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(7, 53);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(74, 15);
     this.label2.TabIndex = 7;
     this.label2.Text     = "Alias_Name";
     //
     // txtAlias_Name
     //
     this.txtAlias_Name.Location = new System.Drawing.Point(102, 51);
     this.txtAlias_Name.Name     = "txtAlias_Name";
     this.txtAlias_Name.Size     = new System.Drawing.Size(215, 21);
     this.txtAlias_Name.TabIndex = 6;
     //
     // cboThietBi
     //
     this.cboThietBi.Location = new System.Drawing.Point(102, 24);
     this.cboThietBi.Name     = "cboThietBi";
     this.cboThietBi.Size     = new System.Drawing.Size(215, 21);
     this.cboThietBi.TabIndex = 5;
     this.cboThietBi.Text     = "Thiết bị";
     //
     // cmdGetData
     //
     this.cmdGetData.Image    = ((System.Drawing.Image)(resources.GetObject("cmdGetData.Image")));
     this.cmdGetData.Location = new System.Drawing.Point(650, 20);
     this.cmdGetData.Name     = "cmdGetData";
     this.cmdGetData.Size     = new System.Drawing.Size(143, 48);
     this.cmdGetData.TabIndex = 4;
     this.cmdGetData.Text     = "&Lấy thông tin (F3)";
     this.cmdGetData.Click   += new System.EventHandler(this.cmdGetData_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(6, 26);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(47, 15);
     this.label1.TabIndex = 3;
     this.label1.Text     = "&Thiết bị";
     //
     // uiTabPage2
     //
     this.uiTabPage2.Location = new System.Drawing.Point(1, 21);
     this.uiTabPage2.Name     = "uiTabPage2";
     this.uiTabPage2.Size     = new System.Drawing.Size(819, 463);
     this.uiTabPage2.TabStop  = true;
     this.uiTabPage2.Text     = "Thông số map loại xét nghiệm";
     //
     // uiTabPage3
     //
     this.uiTabPage3.Location = new System.Drawing.Point(1, 21);
     this.uiTabPage3.Name     = "uiTabPage3";
     this.uiTabPage3.Size     = new System.Drawing.Size(819, 463);
     this.uiTabPage3.TabStop  = true;
     this.uiTabPage3.Text     = "Thông số map đối tượng";
     //
     // grdHIS
     //
     this.grdHIS.ColumnAutoResize         = true;
     grdHIS_DesignTimeLayout.LayoutString = resources.GetString("grdHIS_DesignTimeLayout.LayoutString");
     this.grdHIS.DesignTimeLayout         = grdHIS_DesignTimeLayout;
     this.grdHIS.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdHIS.GroupByBoxVisible = false;
     this.grdHIS.Location          = new System.Drawing.Point(3, 17);
     this.grdHIS.Name           = "grdHIS";
     this.grdHIS.Size           = new System.Drawing.Size(480, 441);
     this.grdHIS.TabIndex       = 1;
     this.grdHIS.FormattingRow += new Janus.Windows.GridEX.RowLoadEventHandler(this.grdLIS_FormattingRow);
     //
     // frm_MapingPara
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(907, 626);
     this.Controls.Add(this.uiTab1);
     this.Controls.Add(this.uiGroupBox2);
     this.Name          = "frm_MapingPara";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Thông tin map thông số 2 hệ thống HIS-LIS";
     this.Load         += new System.EventHandler(this.frm_MapingPara_Load);
     this.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.frm_MapingPara_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
     this.uiGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiTab1)).EndInit();
     this.uiTab1.ResumeLayout(false);
     this.uiTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox4)).EndInit();
     this.uiGroupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).EndInit();
     this.uiGroupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdLIS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
     this.uiGroupBox1.ResumeLayout(false);
     this.uiGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdHIS)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Janus.Windows.GridEX.GridEXLayout         grdDetail_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem7            = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem8            = new Janus.Windows.EditControls.UIComboBoxItem();
     this.lblUserName           = new MMIS.Component.XLabel();
     this.lblUserSex            = new MMIS.Component.XLabel();
     this.lblNationality        = new MMIS.Component.XLabel();
     this.lblUserAge            = new MMIS.Component.XLabel();
     this.lblBirthday           = new MMIS.Component.XLabel();
     this.lblNativePlace        = new MMIS.Component.XLabel();
     this.lblStartWorkDate      = new MMIS.Component.XLabel();
     this.lblToCompWorkDate     = new MMIS.Component.XLabel();
     this.lblPersonID           = new MMIS.Component.XLabel();
     this.lblSpecialty          = new MMIS.Component.XLabel();
     this.lblHouseHoldAddr      = new MMIS.Component.XLabel();
     this.lblHomeAddress        = new MMIS.Component.XLabel();
     this.lblHomeTel            = new MMIS.Component.XLabel();
     this.lblMobileNo           = new MMIS.Component.XLabel();
     this.lblWorkTel            = new MMIS.Component.XLabel();
     this.lblEducation          = new MMIS.Component.XLabel();
     this.lblMajor              = new MMIS.Component.XLabel();
     this.lblUniversity         = new MMIS.Component.XLabel();
     this.lblMeasureWorkYears   = new MMIS.Component.XLabel();
     this.lblMeasureWorkContent = new MMIS.Component.XLabel();
     this.lblDeptId             = new MMIS.Component.XLabel();
     this.lblPost               = new MMIS.Component.XLabel();
     this.lblRoleId             = new MMIS.Component.XLabel();
     this.lblUserId             = new MMIS.Component.XLabel();
     this.lblRemark             = new MMIS.Component.XLabel();
     this.txtUserName           = new MMIS.Component.XEditBox();
     this.txtNationality        = new MMIS.Component.XEditBox();
     this.nebUserAge            = new MMIS.Component.XNumberEditBox();
     this.dtBirthday            = new MMIS.Component.XDateTimePicker();
     this.txtNativePlace        = new MMIS.Component.XEditBox();
     this.dtStartWorkDate       = new MMIS.Component.XDateTimePicker();
     this.dtToCompWorkDate      = new MMIS.Component.XDateTimePicker();
     this.txtPersonID           = new MMIS.Component.XEditBox();
     this.txtSpecialty          = new MMIS.Component.XEditBox();
     this.txtHouseHoldAddr      = new MMIS.Component.XEditBox();
     this.txtHomeAddress        = new MMIS.Component.XEditBox();
     this.txtHomeTel            = new MMIS.Component.XEditBox();
     this.txtMobileNo           = new MMIS.Component.XEditBox();
     this.txtWorkTel            = new MMIS.Component.XEditBox();
     this.txtEducation          = new MMIS.Component.XEditBox();
     this.txtMajor              = new MMIS.Component.XEditBox();
     this.txtUniversity         = new MMIS.Component.XEditBox();
     this.nebMeasureWorkYears   = new MMIS.Component.XNumberEditBox();
     this.txtMeasureWorkContent = new MMIS.Component.XEditBox();
     this.txtPost               = new MMIS.Component.XEditBox();
     this.txtRoleId             = new MMIS.Component.XEditBox();
     this.txtRemark             = new MMIS.Component.XEditBox();
     this.txtUserSex            = new MMIS.Component.XCombobox();
     this.txtUserId             = new MMIS.UI.XSelectUsersEditBox();
     this.xLabel1               = new MMIS.Component.XLabel();
     this.pnlItems              = new System.Windows.Forms.Panel();
     this.txtDeptId             = new MMIS.UI.XSelectUseDeptEditBox();
     this.xLabel2               = new MMIS.Component.XLabel();
     this.txtFilePath           = new MMIS.Component.XEditBox();
     ((System.ComponentModel.ISupportInitialize)(this.xGroupBox1)).BeginInit();
     this.xGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdDetail)).BeginInit();
     this.SuspendLayout();
     //
     // xGroupBox1
     //
     this.xGroupBox1.Location = new System.Drawing.Point(347, 491);
     this.xGroupBox1.Size     = new System.Drawing.Size(296, 65);
     this.xGroupBox1.Visible  = false;
     //
     // grdDetail
     //
     grdDetail_DesignTimeLayout.LayoutString = "<GridEXLayoutData><RootTable><GroupCondition /></RootTable></GridEXLayoutData>";
     this.grdDetail.DesignTimeLayout         = grdDetail_DesignTimeLayout;
     this.grdDetail.Size = new System.Drawing.Size(441, 37);
     //
     // btnOk
     //
     this.btnOk.Location = new System.Drawing.Point(637, 491);
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(724, 491);
     //
     // lblUserName
     //
     this.lblUserName.AutoSize  = true;
     this.lblUserName.ForeColor = System.Drawing.Color.Black;
     this.lblUserName.Location  = new System.Drawing.Point(22, 15);
     this.lblUserName.Name      = "lblUserName";
     this.lblUserName.Size      = new System.Drawing.Size(32, 17);
     this.lblUserName.TabIndex  = 1;
     this.lblUserName.Text      = "姓名";
     //
     // lblUserSex
     //
     this.lblUserSex.AutoSize  = true;
     this.lblUserSex.ForeColor = System.Drawing.Color.Black;
     this.lblUserSex.Location  = new System.Drawing.Point(280, 15);
     this.lblUserSex.Name      = "lblUserSex";
     this.lblUserSex.Size      = new System.Drawing.Size(32, 17);
     this.lblUserSex.TabIndex  = 2;
     this.lblUserSex.Text      = "性别";
     //
     // lblNationality
     //
     this.lblNationality.AutoSize  = true;
     this.lblNationality.ForeColor = System.Drawing.Color.Black;
     this.lblNationality.Location  = new System.Drawing.Point(552, 15);
     this.lblNationality.Name      = "lblNationality";
     this.lblNationality.Size      = new System.Drawing.Size(32, 17);
     this.lblNationality.TabIndex  = 3;
     this.lblNationality.Text      = "民族";
     //
     // lblUserAge
     //
     this.lblUserAge.AutoSize  = true;
     this.lblUserAge.ForeColor = System.Drawing.Color.Black;
     this.lblUserAge.Location  = new System.Drawing.Point(22, 46);
     this.lblUserAge.Name      = "lblUserAge";
     this.lblUserAge.Size      = new System.Drawing.Size(32, 17);
     this.lblUserAge.TabIndex  = 4;
     this.lblUserAge.Text      = "年龄";
     //
     // lblBirthday
     //
     this.lblBirthday.AutoSize  = true;
     this.lblBirthday.ForeColor = System.Drawing.Color.Black;
     this.lblBirthday.Location  = new System.Drawing.Point(280, 46);
     this.lblBirthday.Name      = "lblBirthday";
     this.lblBirthday.Size      = new System.Drawing.Size(56, 17);
     this.lblBirthday.TabIndex  = 5;
     this.lblBirthday.Text      = "出生日期";
     //
     // lblNativePlace
     //
     this.lblNativePlace.AutoSize  = true;
     this.lblNativePlace.ForeColor = System.Drawing.Color.Black;
     this.lblNativePlace.Location  = new System.Drawing.Point(552, 46);
     this.lblNativePlace.Name      = "lblNativePlace";
     this.lblNativePlace.Size      = new System.Drawing.Size(32, 17);
     this.lblNativePlace.TabIndex  = 6;
     this.lblNativePlace.Text      = "籍贯";
     //
     // lblStartWorkDate
     //
     this.lblStartWorkDate.AutoSize  = true;
     this.lblStartWorkDate.ForeColor = System.Drawing.Color.Black;
     this.lblStartWorkDate.Location  = new System.Drawing.Point(22, 77);
     this.lblStartWorkDate.Name      = "lblStartWorkDate";
     this.lblStartWorkDate.Size      = new System.Drawing.Size(80, 17);
     this.lblStartWorkDate.TabIndex  = 7;
     this.lblStartWorkDate.Text      = "参加工作时间";
     //
     // lblToCompWorkDate
     //
     this.lblToCompWorkDate.AutoSize  = true;
     this.lblToCompWorkDate.ForeColor = System.Drawing.Color.Black;
     this.lblToCompWorkDate.Location  = new System.Drawing.Point(280, 77);
     this.lblToCompWorkDate.Name      = "lblToCompWorkDate";
     this.lblToCompWorkDate.Size      = new System.Drawing.Size(104, 17);
     this.lblToCompWorkDate.TabIndex  = 8;
     this.lblToCompWorkDate.Text      = "到本单位工作时间";
     //
     // lblPersonID
     //
     this.lblPersonID.AutoSize  = true;
     this.lblPersonID.ForeColor = System.Drawing.Color.Black;
     this.lblPersonID.Location  = new System.Drawing.Point(552, 77);
     this.lblPersonID.Name      = "lblPersonID";
     this.lblPersonID.Size      = new System.Drawing.Size(56, 17);
     this.lblPersonID.TabIndex  = 9;
     this.lblPersonID.Text      = "身份证号";
     //
     // lblSpecialty
     //
     this.lblSpecialty.AutoSize  = true;
     this.lblSpecialty.ForeColor = System.Drawing.Color.Black;
     this.lblSpecialty.Location  = new System.Drawing.Point(22, 109);
     this.lblSpecialty.Name      = "lblSpecialty";
     this.lblSpecialty.Size      = new System.Drawing.Size(32, 17);
     this.lblSpecialty.TabIndex  = 10;
     this.lblSpecialty.Text      = "特长";
     //
     // lblHouseHoldAddr
     //
     this.lblHouseHoldAddr.AutoSize  = true;
     this.lblHouseHoldAddr.ForeColor = System.Drawing.Color.Black;
     this.lblHouseHoldAddr.Location  = new System.Drawing.Point(278, 109);
     this.lblHouseHoldAddr.Name      = "lblHouseHoldAddr";
     this.lblHouseHoldAddr.Size      = new System.Drawing.Size(68, 17);
     this.lblHouseHoldAddr.TabIndex  = 11;
     this.lblHouseHoldAddr.Text      = "户口所在地";
     //
     // lblHomeAddress
     //
     this.lblHomeAddress.AutoSize  = true;
     this.lblHomeAddress.ForeColor = System.Drawing.Color.Black;
     this.lblHomeAddress.Location  = new System.Drawing.Point(552, 109);
     this.lblHomeAddress.Name      = "lblHomeAddress";
     this.lblHomeAddress.Size      = new System.Drawing.Size(56, 17);
     this.lblHomeAddress.TabIndex  = 12;
     this.lblHomeAddress.Text      = "家庭地址";
     //
     // lblHomeTel
     //
     this.lblHomeTel.AutoSize  = true;
     this.lblHomeTel.ForeColor = System.Drawing.Color.Black;
     this.lblHomeTel.Location  = new System.Drawing.Point(22, 141);
     this.lblHomeTel.Name      = "lblHomeTel";
     this.lblHomeTel.Size      = new System.Drawing.Size(56, 17);
     this.lblHomeTel.TabIndex  = 13;
     this.lblHomeTel.Text      = "家庭电话";
     //
     // lblMobileNo
     //
     this.lblMobileNo.AutoSize  = true;
     this.lblMobileNo.ForeColor = System.Drawing.Color.Black;
     this.lblMobileNo.Location  = new System.Drawing.Point(280, 141);
     this.lblMobileNo.Name      = "lblMobileNo";
     this.lblMobileNo.Size      = new System.Drawing.Size(44, 17);
     this.lblMobileNo.TabIndex  = 14;
     this.lblMobileNo.Text      = "手机号";
     //
     // lblWorkTel
     //
     this.lblWorkTel.AutoSize  = true;
     this.lblWorkTel.ForeColor = System.Drawing.Color.Black;
     this.lblWorkTel.Location  = new System.Drawing.Point(552, 141);
     this.lblWorkTel.Name      = "lblWorkTel";
     this.lblWorkTel.Size      = new System.Drawing.Size(56, 17);
     this.lblWorkTel.TabIndex  = 15;
     this.lblWorkTel.Text      = "工作电话";
     //
     // lblEducation
     //
     this.lblEducation.AutoSize  = true;
     this.lblEducation.ForeColor = System.Drawing.Color.Black;
     this.lblEducation.Location  = new System.Drawing.Point(22, 173);
     this.lblEducation.Name      = "lblEducation";
     this.lblEducation.Size      = new System.Drawing.Size(56, 17);
     this.lblEducation.TabIndex  = 16;
     this.lblEducation.Text      = "文化程度";
     //
     // lblMajor
     //
     this.lblMajor.AutoSize  = true;
     this.lblMajor.ForeColor = System.Drawing.Color.Black;
     this.lblMajor.Location  = new System.Drawing.Point(285, 173);
     this.lblMajor.Name      = "lblMajor";
     this.lblMajor.Size      = new System.Drawing.Size(56, 17);
     this.lblMajor.TabIndex  = 17;
     this.lblMajor.Text      = "所学专业";
     //
     // lblUniversity
     //
     this.lblUniversity.AutoSize  = true;
     this.lblUniversity.ForeColor = System.Drawing.Color.Black;
     this.lblUniversity.Location  = new System.Drawing.Point(552, 173);
     this.lblUniversity.Name      = "lblUniversity";
     this.lblUniversity.Size      = new System.Drawing.Size(56, 17);
     this.lblUniversity.TabIndex  = 18;
     this.lblUniversity.Text      = "毕业院校";
     //
     // lblMeasureWorkYears
     //
     this.lblMeasureWorkYears.AutoSize  = true;
     this.lblMeasureWorkYears.ForeColor = System.Drawing.Color.Black;
     this.lblMeasureWorkYears.Location  = new System.Drawing.Point(22, 204);
     this.lblMeasureWorkYears.Name      = "lblMeasureWorkYears";
     this.lblMeasureWorkYears.Size      = new System.Drawing.Size(80, 17);
     this.lblMeasureWorkYears.TabIndex  = 19;
     this.lblMeasureWorkYears.Text      = "计量工作年限";
     //
     // lblMeasureWorkContent
     //
     this.lblMeasureWorkContent.AutoSize  = true;
     this.lblMeasureWorkContent.ForeColor = System.Drawing.Color.Black;
     this.lblMeasureWorkContent.Location  = new System.Drawing.Point(278, 204);
     this.lblMeasureWorkContent.Name      = "lblMeasureWorkContent";
     this.lblMeasureWorkContent.Size      = new System.Drawing.Size(104, 17);
     this.lblMeasureWorkContent.TabIndex  = 20;
     this.lblMeasureWorkContent.Text      = "负责计量工作内容";
     //
     // lblDeptId
     //
     this.lblDeptId.AutoSize  = true;
     this.lblDeptId.ForeColor = System.Drawing.Color.Black;
     this.lblDeptId.Location  = new System.Drawing.Point(22, 235);
     this.lblDeptId.Name      = "lblDeptId";
     this.lblDeptId.Size      = new System.Drawing.Size(32, 17);
     this.lblDeptId.TabIndex  = 21;
     this.lblDeptId.Text      = "部门";
     //
     // lblPost
     //
     this.lblPost.AutoSize  = true;
     this.lblPost.ForeColor = System.Drawing.Color.Black;
     this.lblPost.Location  = new System.Drawing.Point(285, 237);
     this.lblPost.Name      = "lblPost";
     this.lblPost.Size      = new System.Drawing.Size(32, 17);
     this.lblPost.TabIndex  = 22;
     this.lblPost.Text      = "职务";
     //
     // lblRoleId
     //
     this.lblRoleId.AutoSize  = true;
     this.lblRoleId.ForeColor = System.Drawing.Color.Black;
     this.lblRoleId.Location  = new System.Drawing.Point(22, 498);
     this.lblRoleId.Name      = "lblRoleId";
     this.lblRoleId.Size      = new System.Drawing.Size(32, 17);
     this.lblRoleId.TabIndex  = 23;
     this.lblRoleId.Text      = "角色";
     this.lblRoleId.Visible   = false;
     //
     // lblUserId
     //
     this.lblUserId.AutoSize  = true;
     this.lblUserId.ForeColor = System.Drawing.Color.Black;
     this.lblUserId.Location  = new System.Drawing.Point(552, 237);
     this.lblUserId.Name      = "lblUserId";
     this.lblUserId.Size      = new System.Drawing.Size(56, 17);
     this.lblUserId.TabIndex  = 24;
     this.lblUserId.Text      = "关联用户";
     //
     // lblRemark
     //
     this.lblRemark.AutoSize  = true;
     this.lblRemark.ForeColor = System.Drawing.Color.Black;
     this.lblRemark.Location  = new System.Drawing.Point(22, 268);
     this.lblRemark.Name      = "lblRemark";
     this.lblRemark.Size      = new System.Drawing.Size(32, 17);
     this.lblRemark.TabIndex  = 25;
     this.lblRemark.Text      = "备注";
     //
     // txtUserName
     //
     this.txtUserName.IsAllowEmpty = false;
     this.txtUserName.Location     = new System.Drawing.Point(84, 12);
     this.txtUserName.Name         = "txtUserName";
     this.txtUserName.Size         = new System.Drawing.Size(185, 23);
     this.txtUserName.TabIndex     = 1;
     this.txtUserName.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // txtNationality
     //
     this.txtNationality.IsAllowEmpty = true;
     this.txtNationality.Location     = new System.Drawing.Point(614, 12);
     this.txtNationality.Name         = "txtNationality";
     this.txtNationality.Size         = new System.Drawing.Size(185, 23);
     this.txtNationality.TabIndex     = 3;
     this.txtNationality.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // nebUserAge
     //
     this.nebUserAge.FormatString        = "0";
     this.nebUserAge.IsAllowEmpty        = false;
     this.nebUserAge.IsAllowLessThanZero = false;
     this.nebUserAge.IsAllowZero         = true;
     this.nebUserAge.Location            = new System.Drawing.Point(84, 43);
     this.nebUserAge.Name     = "nebUserAge";
     this.nebUserAge.Size     = new System.Drawing.Size(185, 23);
     this.nebUserAge.TabIndex = 101;
     this.nebUserAge.Text     = "0";
     this.nebUserAge.Value    = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.nebUserAge.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // dtBirthday
     //
     this.dtBirthday.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     //
     //
     //
     this.dtBirthday.DropDownCalendar.Name        = "";
     this.dtBirthday.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
     this.dtBirthday.Location    = new System.Drawing.Point(347, 43);
     this.dtBirthday.Name        = "dtBirthday";
     this.dtBirthday.Size        = new System.Drawing.Size(185, 23);
     this.dtBirthday.TabIndex    = 5;
     this.dtBirthday.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
     //
     // txtNativePlace
     //
     this.txtNativePlace.IsAllowEmpty = true;
     this.txtNativePlace.Location     = new System.Drawing.Point(614, 43);
     this.txtNativePlace.Name         = "txtNativePlace";
     this.txtNativePlace.Size         = new System.Drawing.Size(185, 23);
     this.txtNativePlace.TabIndex     = 6;
     this.txtNativePlace.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // dtStartWorkDate
     //
     this.dtStartWorkDate.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     //
     //
     //
     this.dtStartWorkDate.DropDownCalendar.Name        = "";
     this.dtStartWorkDate.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
     this.dtStartWorkDate.Location    = new System.Drawing.Point(108, 74);
     this.dtStartWorkDate.Name        = "dtStartWorkDate";
     this.dtStartWorkDate.Size        = new System.Drawing.Size(161, 23);
     this.dtStartWorkDate.TabIndex    = 7;
     this.dtStartWorkDate.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
     //
     // dtToCompWorkDate
     //
     this.dtToCompWorkDate.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     //
     //
     //
     this.dtToCompWorkDate.DropDownCalendar.Name        = "";
     this.dtToCompWorkDate.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
     this.dtToCompWorkDate.Location    = new System.Drawing.Point(395, 74);
     this.dtToCompWorkDate.Name        = "dtToCompWorkDate";
     this.dtToCompWorkDate.Size        = new System.Drawing.Size(137, 23);
     this.dtToCompWorkDate.TabIndex    = 8;
     this.dtToCompWorkDate.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
     //
     // txtPersonID
     //
     this.txtPersonID.IsAllowEmpty = true;
     this.txtPersonID.Location     = new System.Drawing.Point(614, 74);
     this.txtPersonID.Name         = "txtPersonID";
     this.txtPersonID.Size         = new System.Drawing.Size(185, 23);
     this.txtPersonID.TabIndex     = 9;
     this.txtPersonID.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // txtSpecialty
     //
     this.txtSpecialty.IsAllowEmpty = true;
     this.txtSpecialty.Location     = new System.Drawing.Point(84, 106);
     this.txtSpecialty.Name         = "txtSpecialty";
     this.txtSpecialty.Size         = new System.Drawing.Size(185, 23);
     this.txtSpecialty.TabIndex     = 10;
     this.txtSpecialty.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // txtHouseHoldAddr
     //
     this.txtHouseHoldAddr.IsAllowEmpty = true;
     this.txtHouseHoldAddr.Location     = new System.Drawing.Point(347, 106);
     this.txtHouseHoldAddr.Name         = "txtHouseHoldAddr";
     this.txtHouseHoldAddr.Size         = new System.Drawing.Size(185, 23);
     this.txtHouseHoldAddr.TabIndex     = 11;
     this.txtHouseHoldAddr.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // txtHomeAddress
     //
     this.txtHomeAddress.IsAllowEmpty = true;
     this.txtHomeAddress.Location     = new System.Drawing.Point(614, 106);
     this.txtHomeAddress.Name         = "txtHomeAddress";
     this.txtHomeAddress.Size         = new System.Drawing.Size(185, 23);
     this.txtHomeAddress.TabIndex     = 12;
     this.txtHomeAddress.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // txtHomeTel
     //
     this.txtHomeTel.IsAllowEmpty = true;
     this.txtHomeTel.Location     = new System.Drawing.Point(84, 137);
     this.txtHomeTel.Name         = "txtHomeTel";
     this.txtHomeTel.Size         = new System.Drawing.Size(185, 23);
     this.txtHomeTel.TabIndex     = 13;
     this.txtHomeTel.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // txtMobileNo
     //
     this.txtMobileNo.IsAllowEmpty = true;
     this.txtMobileNo.Location     = new System.Drawing.Point(347, 137);
     this.txtMobileNo.Name         = "txtMobileNo";
     this.txtMobileNo.Size         = new System.Drawing.Size(185, 23);
     this.txtMobileNo.TabIndex     = 14;
     this.txtMobileNo.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // txtWorkTel
     //
     this.txtWorkTel.IsAllowEmpty = true;
     this.txtWorkTel.Location     = new System.Drawing.Point(614, 137);
     this.txtWorkTel.Name         = "txtWorkTel";
     this.txtWorkTel.Size         = new System.Drawing.Size(185, 23);
     this.txtWorkTel.TabIndex     = 15;
     this.txtWorkTel.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // txtEducation
     //
     this.txtEducation.IsAllowEmpty = true;
     this.txtEducation.Location     = new System.Drawing.Point(84, 170);
     this.txtEducation.Name         = "txtEducation";
     this.txtEducation.Size         = new System.Drawing.Size(185, 23);
     this.txtEducation.TabIndex     = 16;
     this.txtEducation.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // txtMajor
     //
     this.txtMajor.IsAllowEmpty = true;
     this.txtMajor.Location     = new System.Drawing.Point(347, 170);
     this.txtMajor.Name         = "txtMajor";
     this.txtMajor.Size         = new System.Drawing.Size(185, 23);
     this.txtMajor.TabIndex     = 17;
     this.txtMajor.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // txtUniversity
     //
     this.txtUniversity.IsAllowEmpty = true;
     this.txtUniversity.Location     = new System.Drawing.Point(614, 170);
     this.txtUniversity.Name         = "txtUniversity";
     this.txtUniversity.Size         = new System.Drawing.Size(185, 23);
     this.txtUniversity.TabIndex     = 18;
     this.txtUniversity.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // nebMeasureWorkYears
     //
     this.nebMeasureWorkYears.FormatString        = "0";
     this.nebMeasureWorkYears.IsAllowEmpty        = false;
     this.nebMeasureWorkYears.IsAllowLessThanZero = false;
     this.nebMeasureWorkYears.IsAllowZero         = true;
     this.nebMeasureWorkYears.Location            = new System.Drawing.Point(108, 201);
     this.nebMeasureWorkYears.Name     = "nebMeasureWorkYears";
     this.nebMeasureWorkYears.Size     = new System.Drawing.Size(161, 23);
     this.nebMeasureWorkYears.TabIndex = 101;
     this.nebMeasureWorkYears.Text     = "0";
     this.nebMeasureWorkYears.Value    = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.nebMeasureWorkYears.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // txtMeasureWorkContent
     //
     this.txtMeasureWorkContent.IsAllowEmpty = true;
     this.txtMeasureWorkContent.Location     = new System.Drawing.Point(395, 201);
     this.txtMeasureWorkContent.Name         = "txtMeasureWorkContent";
     this.txtMeasureWorkContent.Size         = new System.Drawing.Size(404, 23);
     this.txtMeasureWorkContent.TabIndex     = 20;
     this.txtMeasureWorkContent.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // txtPost
     //
     this.txtPost.IsAllowEmpty = true;
     this.txtPost.Location     = new System.Drawing.Point(347, 234);
     this.txtPost.Name         = "txtPost";
     this.txtPost.Size         = new System.Drawing.Size(185, 23);
     this.txtPost.TabIndex     = 22;
     this.txtPost.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // txtRoleId
     //
     this.txtRoleId.IsAllowEmpty = true;
     this.txtRoleId.Location     = new System.Drawing.Point(84, 495);
     this.txtRoleId.Name         = "txtRoleId";
     this.txtRoleId.Size         = new System.Drawing.Size(185, 23);
     this.txtRoleId.TabIndex     = 23;
     this.txtRoleId.Visible      = false;
     this.txtRoleId.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // txtRemark
     //
     this.txtRemark.IsAllowEmpty = true;
     this.txtRemark.Location     = new System.Drawing.Point(84, 265);
     this.txtRemark.Name         = "txtRemark";
     this.txtRemark.Size         = new System.Drawing.Size(715, 23);
     this.txtRemark.TabIndex     = 25;
     this.txtRemark.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // txtUserSex
     //
     this.txtUserSex.ComboStyle        = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.txtUserSex.IsAllowEmpty      = true;
     uiComboBoxItem7.FormatStyle.Alpha = 0;
     uiComboBoxItem7.IsSeparator       = false;
     uiComboBoxItem7.Text              = "男";
     uiComboBoxItem7.Value             = "男";
     uiComboBoxItem8.FormatStyle.Alpha = 0;
     uiComboBoxItem8.IsSeparator       = false;
     uiComboBoxItem8.Text              = "女";
     uiComboBoxItem8.Value             = "女";
     this.txtUserSex.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem7,
         uiComboBoxItem8
     });
     this.txtUserSex.Location    = new System.Drawing.Point(347, 12);
     this.txtUserSex.Name        = "txtUserSex";
     this.txtUserSex.Size        = new System.Drawing.Size(185, 23);
     this.txtUserSex.TabIndex    = 102;
     this.txtUserSex.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
     //
     // txtUserId
     //
     this.txtUserId.ButtonStyle      = Janus.Windows.GridEX.EditControls.EditButtonStyle.Ellipsis;
     this.txtUserId.DisplayMember    = "";
     this.txtUserId.IsAllowEmpty     = true;
     this.txtUserId.Location         = new System.Drawing.Point(614, 234);
     this.txtUserId.Name             = "txtUserId";
     this.txtUserId.QueryCheckBox    = null;
     this.txtUserId.QueryFieldName   = null;
     this.txtUserId.QueryOperateType = MMIS.Component.XQueryOperateType.Equal;
     this.txtUserId.ReadOnly         = true;
     this.txtUserId.SelectedModel    = null;
     this.txtUserId.Size             = new System.Drawing.Size(185, 23);
     this.txtUserId.TabIndex         = 103;
     this.txtUserId.ValueMember      = "";
     this.txtUserId.VisualStyle      = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // xLabel1
     //
     this.xLabel1.AutoSize  = true;
     this.xLabel1.ForeColor = System.Drawing.Color.Black;
     this.xLabel1.Location  = new System.Drawing.Point(22, 327);
     this.xLabel1.Name      = "xLabel1";
     this.xLabel1.Size      = new System.Drawing.Size(80, 17);
     this.xLabel1.TabIndex  = 104;
     this.xLabel1.Text      = "默认检定项目";
     //
     // pnlItems
     //
     this.pnlItems.AutoScroll  = true;
     this.pnlItems.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlItems.Location    = new System.Drawing.Point(25, 361);
     this.pnlItems.Name        = "pnlItems";
     this.pnlItems.Size        = new System.Drawing.Size(774, 121);
     this.pnlItems.TabIndex    = 105;
     //
     // txtDeptId
     //
     this.txtDeptId.ButtonStyle      = Janus.Windows.GridEX.EditControls.EditButtonStyle.Ellipsis;
     this.txtDeptId.DisplayMember    = "";
     this.txtDeptId.IsAllowEmpty     = false;
     this.txtDeptId.Location         = new System.Drawing.Point(84, 235);
     this.txtDeptId.Name             = "txtDeptId";
     this.txtDeptId.QueryCheckBox    = null;
     this.txtDeptId.QueryFieldName   = null;
     this.txtDeptId.QueryOperateType = MMIS.Component.XQueryOperateType.Equal;
     this.txtDeptId.ReadOnly         = true;
     this.txtDeptId.SelectedModel    = null;
     this.txtDeptId.Size             = new System.Drawing.Size(185, 23);
     this.txtDeptId.TabIndex         = 21;
     this.txtDeptId.ValueMember      = "";
     this.txtDeptId.VisualStyle      = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // xLabel2
     //
     this.xLabel2.AutoSize  = true;
     this.xLabel2.ForeColor = System.Drawing.Color.Black;
     this.xLabel2.Location  = new System.Drawing.Point(22, 298);
     this.xLabel2.Name      = "xLabel2";
     this.xLabel2.Size      = new System.Drawing.Size(56, 17);
     this.xLabel2.TabIndex  = 106;
     this.xLabel2.Text      = "电子签章";
     //
     // txtFilePath
     //
     this.txtFilePath.ButtonStyle  = Janus.Windows.GridEX.EditControls.EditButtonStyle.Ellipsis;
     this.txtFilePath.IsAllowEmpty = true;
     this.txtFilePath.Location     = new System.Drawing.Point(84, 296);
     this.txtFilePath.Name         = "txtFilePath";
     this.txtFilePath.Size         = new System.Drawing.Size(715, 23);
     this.txtFilePath.TabIndex     = 107;
     this.txtFilePath.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     this.txtFilePath.ButtonClick += new System.EventHandler(this.txtFilePath_ButtonClick);
     this.txtFilePath.DoubleClick += new System.EventHandler(this.txtFilePath_DoubleClick);
     //
     // frmStaffInfoEdit
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
     this.ClientSize          = new System.Drawing.Size(811, 530);
     this.Controls.Add(this.txtFilePath);
     this.Controls.Add(this.xLabel2);
     this.Controls.Add(this.txtDeptId);
     this.Controls.Add(this.pnlItems);
     this.Controls.Add(this.xLabel1);
     this.Controls.Add(this.txtUserId);
     this.Controls.Add(this.txtUserSex);
     this.Controls.Add(this.txtUserName);
     this.Controls.Add(this.txtNationality);
     this.Controls.Add(this.nebUserAge);
     this.Controls.Add(this.dtBirthday);
     this.Controls.Add(this.txtNativePlace);
     this.Controls.Add(this.dtStartWorkDate);
     this.Controls.Add(this.dtToCompWorkDate);
     this.Controls.Add(this.txtPersonID);
     this.Controls.Add(this.txtSpecialty);
     this.Controls.Add(this.txtHouseHoldAddr);
     this.Controls.Add(this.txtHomeAddress);
     this.Controls.Add(this.txtHomeTel);
     this.Controls.Add(this.txtMobileNo);
     this.Controls.Add(this.txtWorkTel);
     this.Controls.Add(this.txtEducation);
     this.Controls.Add(this.txtMajor);
     this.Controls.Add(this.txtUniversity);
     this.Controls.Add(this.nebMeasureWorkYears);
     this.Controls.Add(this.txtMeasureWorkContent);
     this.Controls.Add(this.txtPost);
     this.Controls.Add(this.txtRoleId);
     this.Controls.Add(this.txtRemark);
     this.Controls.Add(this.lblUserName);
     this.Controls.Add(this.lblUserSex);
     this.Controls.Add(this.lblNationality);
     this.Controls.Add(this.lblUserAge);
     this.Controls.Add(this.lblBirthday);
     this.Controls.Add(this.lblNativePlace);
     this.Controls.Add(this.lblStartWorkDate);
     this.Controls.Add(this.lblToCompWorkDate);
     this.Controls.Add(this.lblPersonID);
     this.Controls.Add(this.lblSpecialty);
     this.Controls.Add(this.lblHouseHoldAddr);
     this.Controls.Add(this.lblHomeAddress);
     this.Controls.Add(this.lblHomeTel);
     this.Controls.Add(this.lblMobileNo);
     this.Controls.Add(this.lblWorkTel);
     this.Controls.Add(this.lblEducation);
     this.Controls.Add(this.lblMajor);
     this.Controls.Add(this.lblUniversity);
     this.Controls.Add(this.lblMeasureWorkYears);
     this.Controls.Add(this.lblMeasureWorkContent);
     this.Controls.Add(this.lblDeptId);
     this.Controls.Add(this.lblPost);
     this.Controls.Add(this.lblRoleId);
     this.Controls.Add(this.lblUserId);
     this.Controls.Add(this.lblRemark);
     this.Name = "frmStaffInfoEdit";
     this.Text = "人员信息";
     this.Controls.SetChildIndex(this.xGroupBox1, 0);
     this.Controls.SetChildIndex(this.lblRemark, 0);
     this.Controls.SetChildIndex(this.lblUserId, 0);
     this.Controls.SetChildIndex(this.lblRoleId, 0);
     this.Controls.SetChildIndex(this.lblPost, 0);
     this.Controls.SetChildIndex(this.lblDeptId, 0);
     this.Controls.SetChildIndex(this.lblMeasureWorkContent, 0);
     this.Controls.SetChildIndex(this.lblMeasureWorkYears, 0);
     this.Controls.SetChildIndex(this.lblUniversity, 0);
     this.Controls.SetChildIndex(this.lblMajor, 0);
     this.Controls.SetChildIndex(this.lblEducation, 0);
     this.Controls.SetChildIndex(this.lblWorkTel, 0);
     this.Controls.SetChildIndex(this.lblMobileNo, 0);
     this.Controls.SetChildIndex(this.lblHomeTel, 0);
     this.Controls.SetChildIndex(this.lblHomeAddress, 0);
     this.Controls.SetChildIndex(this.lblHouseHoldAddr, 0);
     this.Controls.SetChildIndex(this.lblSpecialty, 0);
     this.Controls.SetChildIndex(this.lblPersonID, 0);
     this.Controls.SetChildIndex(this.lblToCompWorkDate, 0);
     this.Controls.SetChildIndex(this.lblStartWorkDate, 0);
     this.Controls.SetChildIndex(this.lblNativePlace, 0);
     this.Controls.SetChildIndex(this.lblBirthday, 0);
     this.Controls.SetChildIndex(this.lblUserAge, 0);
     this.Controls.SetChildIndex(this.lblNationality, 0);
     this.Controls.SetChildIndex(this.lblUserSex, 0);
     this.Controls.SetChildIndex(this.lblUserName, 0);
     this.Controls.SetChildIndex(this.txtRemark, 0);
     this.Controls.SetChildIndex(this.txtRoleId, 0);
     this.Controls.SetChildIndex(this.txtPost, 0);
     this.Controls.SetChildIndex(this.txtMeasureWorkContent, 0);
     this.Controls.SetChildIndex(this.nebMeasureWorkYears, 0);
     this.Controls.SetChildIndex(this.txtUniversity, 0);
     this.Controls.SetChildIndex(this.txtMajor, 0);
     this.Controls.SetChildIndex(this.txtEducation, 0);
     this.Controls.SetChildIndex(this.txtWorkTel, 0);
     this.Controls.SetChildIndex(this.txtMobileNo, 0);
     this.Controls.SetChildIndex(this.txtHomeTel, 0);
     this.Controls.SetChildIndex(this.txtHomeAddress, 0);
     this.Controls.SetChildIndex(this.txtHouseHoldAddr, 0);
     this.Controls.SetChildIndex(this.txtSpecialty, 0);
     this.Controls.SetChildIndex(this.txtPersonID, 0);
     this.Controls.SetChildIndex(this.dtToCompWorkDate, 0);
     this.Controls.SetChildIndex(this.dtStartWorkDate, 0);
     this.Controls.SetChildIndex(this.txtNativePlace, 0);
     this.Controls.SetChildIndex(this.dtBirthday, 0);
     this.Controls.SetChildIndex(this.nebUserAge, 0);
     this.Controls.SetChildIndex(this.txtNationality, 0);
     this.Controls.SetChildIndex(this.txtUserName, 0);
     this.Controls.SetChildIndex(this.btnOk, 0);
     this.Controls.SetChildIndex(this.btnCancel, 0);
     this.Controls.SetChildIndex(this.txtUserSex, 0);
     this.Controls.SetChildIndex(this.txtUserId, 0);
     this.Controls.SetChildIndex(this.xLabel1, 0);
     this.Controls.SetChildIndex(this.pnlItems, 0);
     this.Controls.SetChildIndex(this.txtDeptId, 0);
     this.Controls.SetChildIndex(this.xLabel2, 0);
     this.Controls.SetChildIndex(this.txtFilePath, 0);
     ((System.ComponentModel.ISupportInitialize)(this.xGroupBox1)).EndInit();
     this.xGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdDetail)).EndInit();
     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();
            Janus.Windows.GridEX.GridEXLayout grdPresDetail_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_KCB_KeVacxin_Tiemchung));
            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.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel6 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
            Janus.Windows.GridEX.GridEXLayout grd_ICD_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();
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.mnuDelele = new System.Windows.Forms.ToolStripMenuItem();
            this.mnuThuoctutuc = new System.Windows.Forms.ToolStripMenuItem();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.grdPresDetail = new Janus.Windows.GridEX.GridEX();
            this.cmdDelete = new Janus.Windows.EditControls.UIButton();
            this.cmdPrintPres = new Janus.Windows.EditControls.UIButton();
            this.cmdSavePres = new Janus.Windows.EditControls.UIButton();
            this.cmdExit = new Janus.Windows.EditControls.UIButton();
            this.txtdrug = new VNS.HIS.UCs.AutoCompleteTextbox_Thuoc();
            this.cmdAddDetail = new Janus.Windows.EditControls.UIButton();
            this.chkHienthithuoctheonhom = new Janus.Windows.EditControls.UICheckBox();
            this.txtDrugID = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtDrug_Name = new Janus.Windows.GridEX.EditControls.EditBox();
            this.StatusBar = new Janus.Windows.UI.StatusBar.UIStatusBar();
            this.cmdCauHinh = new Janus.Windows.EditControls.UIButton();
            this.tabKeDonThuoc = new Janus.Windows.UI.Tab.UITab();
            this.uiTabPage1 = new Janus.Windows.UI.Tab.UITabPage();
            this.panel2 = new System.Windows.Forms.Panel();
            this.panel4 = new System.Windows.Forms.Panel();
            this.pnlKedon = new System.Windows.Forms.Panel();
            this.chkMuithu = new Janus.Windows.EditControls.UICheckBox();
            this.txtVitritiem = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtLydotiem = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.label8 = new System.Windows.Forms.Label();
            this.label42 = new System.Windows.Forms.Label();
            this.txtLoaivacxin = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label41 = new System.Windows.Forms.Label();
            this.label39 = new System.Windows.Forms.Label();
            this.txtMota = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label36 = new System.Windows.Forms.Label();
            this.txtLieuluong = new Janus.Windows.GridEX.EditControls.EditBox();
            this.dtpHennhaclai = new System.Windows.Forms.DateTimePicker();
            this.label37 = new System.Windows.Forms.Label();
            this.txtMuithu = new System.Windows.Forms.TextBox();
            this.txtDonViDung = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtSoluong = new MaskedTextBox.MaskedTextBox();
            this.lblMsg = new System.Windows.Forms.Label();
            this.chkTutuc = new Janus.Windows.EditControls.UICheckBox();
            this.label15 = new System.Windows.Forms.Label();
            this.label21 = new System.Windows.Forms.Label();
            this.label31 = new System.Windows.Forms.Label();
            this.txtTonKho = new Janus.Windows.GridEX.EditControls.EditBox();
            this.cboStock = new System.Windows.Forms.ComboBox();
            this.label17 = new System.Windows.Forms.Label();
            this.label11 = new System.Windows.Forms.Label();
            this.vbLine3 = new VNS.UCs.VBLine();
            this.chkHennhaclai = new Janus.Windows.EditControls.UICheckBox();
            this.panel1 = new System.Windows.Forms.Panel();
            this.panel3 = new System.Windows.Forms.Panel();
            this.txtDonvichiaBut = new Janus.Windows.GridEX.EditControls.EditBox();
            this.nmrQuantity = new Janus.Windows.GridEX.EditControls.IntegerUpDown();
            this.txtSobutconlai = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtMotathem = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label14 = new System.Windows.Forms.Label();
            this.txtTinhchat = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label34 = new System.Windows.Forms.Label();
            this.txtGioihanke = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label12 = new System.Windows.Forms.Label();
            this.txtSoLuongDung = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label16 = new System.Windows.Forms.Label();
            this.label18 = new System.Windows.Forms.Label();
            this.txtSolan = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtCachDung = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.txtChiDanThem = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label10 = new System.Windows.Forms.Label();
            this.txtChiDanDungThuoc = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtPrice = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label13 = new System.Windows.Forms.Label();
            this.label9 = new System.Windows.Forms.Label();
            this.txtSurcharge = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtBietduoc = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtdrugtypeCode = new Janus.Windows.GridEX.EditControls.EditBox();
            this.dtExpire_Date = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.txtBacsi = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.pnlChandoanNgoaitru = new System.Windows.Forms.Panel();
            this.vbLine4 = new VNS.UCs.VBLine();
            this.txtMaBenhphu = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label32 = new System.Windows.Forms.Label();
            this.label46 = new System.Windows.Forms.Label();
            this.label38 = new System.Windows.Forms.Label();
            this.txtTenBenhChinh = new Janus.Windows.GridEX.EditControls.EditBox();
            this.grd_ICD = new Janus.Windows.GridEX.GridEX();
            this.txtMaBenhChinh = new Janus.Windows.GridEX.EditControls.EditBox();
            this.cmdSearchBenhChinh = new Janus.Windows.EditControls.UIButton();
            this.txtTenBenhPhu = new Janus.Windows.GridEX.EditControls.EditBox();
            this.cmdSearchBenhPhu = new Janus.Windows.EditControls.UIButton();
            this.txtChanDoan = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.lblphantramdauthe = new System.Windows.Forms.Label();
            this.label33 = new System.Windows.Forms.Label();
            this.txtptramdauthe = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label24 = new System.Windows.Forms.Label();
            this.txtdiachiBhyt = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtPtramBHYT = new Janus.Windows.GridEX.EditControls.EditBox();
            this.vbLine1 = new VNS.UCs.VBLine();
            this.cmdDonThuocDaKe = new Janus.Windows.EditControls.UIButton();
            this.txtYearBirth = new Janus.Windows.GridEX.EditControls.EditBox();
            this.cmdMauDonThuoc = new Janus.Windows.EditControls.UIButton();
            this.label28 = new System.Windows.Forms.Label();
            this.chkNgayTaiKham = new Janus.Windows.EditControls.UICheckBox();
            this.chkAdditional = new Janus.Windows.EditControls.UICheckBox();
            this.barcode = new Mabry.Windows.Forms.Barcode.Barcode();
            this.dtNgayKhamLai = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label27 = new System.Windows.Forms.Label();
            this.txtKhamLai = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtSex = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label7 = new System.Windows.Forms.Label();
            this.label20 = new System.Windows.Forms.Label();
            this.txtLoiDanBS = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtPatientName = new Janus.Windows.GridEX.EditControls.EditBox();
            this.dtNgayIn = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label6 = new System.Windows.Forms.Label();
            this.label23 = new System.Windows.Forms.Label();
            this.txtObjectName = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label5 = new System.Windows.Forms.Label();
            this.txtSoDT = new System.Windows.Forms.TextBox();
            this.txtPres_ID = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtAddress = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label2 = new System.Windows.Forms.Label();
            this.label26 = new System.Windows.Forms.Label();
            this.label25 = new System.Windows.Forms.Label();
            this.dtpCreatedDate = new System.Windows.Forms.DateTimePicker();
            this.txtSoBHYT = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label1 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.txtPatientCode = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label4 = new System.Windows.Forms.Label();
            this.txtPatientID = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label30 = new System.Windows.Forms.Label();
            this.vbLine2 = new VNS.UCs.VBLine();
            this.label29 = new System.Windows.Forms.Label();
            this.uiTabPage2 = new Janus.Windows.UI.Tab.UITabPage();
            this.pnlPrint = new System.Windows.Forms.Panel();
            this.chkAskbeforeDeletedrug = new Janus.Windows.EditControls.UICheckBox();
            this.vbLine5 = new VNS.UCs.VBLine();
            this.cboLaserPrinters = new System.Windows.Forms.ComboBox();
            this.chkSaveAndPrint = new Janus.Windows.EditControls.UICheckBox();
            this.cboPrintPreview = new Janus.Windows.EditControls.UIComboBox();
            this.label22 = new System.Windows.Forms.Label();
            this.cboA4 = new Janus.Windows.EditControls.UIComboBox();
            this.label19 = new System.Windows.Forms.Label();
            this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
            this.txtNguoitiem = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.cmdKecongtiem = new Janus.Windows.EditControls.UIButton();
            this.contextMenuStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdPresDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tabKeDonThuoc)).BeginInit();
            this.tabKeDonThuoc.SuspendLayout();
            this.uiTabPage1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.panel4.SuspendLayout();
            this.pnlKedon.SuspendLayout();
            this.panel1.SuspendLayout();
            this.panel3.SuspendLayout();
            this.pnlChandoanNgoaitru.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grd_ICD)).BeginInit();
            this.uiTabPage2.SuspendLayout();
            this.pnlPrint.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
            this.SuspendLayout();
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuDelele,
            this.mnuThuoctutuc});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(218, 48);
            // 
            // mnuDelele
            // 
            this.mnuDelele.Name = "mnuDelele";
            this.mnuDelele.Size = new System.Drawing.Size(217, 22);
            this.mnuDelele.Text = "Xóa thuốc";
            // 
            // mnuThuoctutuc
            // 
            this.mnuThuoctutuc.Name = "mnuThuoctutuc";
            this.mnuThuoctutuc.Size = new System.Drawing.Size(217, 22);
            this.mnuThuoctutuc.Text = "Chuyển thành thuốc tự túc";
            // 
            // toolTip1
            // 
            this.toolTip1.IsBalloon = true;
            // 
            // grdPresDetail
            // 
            this.grdPresDetail.ContextMenuStrip = this.contextMenuStrip1;
            grdPresDetail_DesignTimeLayout.LayoutString = resources.GetString("grdPresDetail_DesignTimeLayout.LayoutString");
            this.grdPresDetail.DesignTimeLayout = grdPresDetail_DesignTimeLayout;
            this.grdPresDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdPresDetail.Font = new System.Drawing.Font("Arial", 9F);
            this.grdPresDetail.GroupByBoxVisible = false;
            this.grdPresDetail.GroupRowFormatStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
            this.grdPresDetail.GroupTotalRowFormatStyle.BackColor = System.Drawing.Color.White;
            this.grdPresDetail.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdPresDetail.Location = new System.Drawing.Point(0, 259);
            this.grdPresDetail.Name = "grdPresDetail";
            this.grdPresDetail.RowFormatStyle.Font = new System.Drawing.Font("Arial", 9F);
            this.grdPresDetail.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdPresDetail.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdPresDetail.Size = new System.Drawing.Size(630, 376);
            this.grdPresDetail.TabIndex = 548;
            this.toolTip1.SetToolTip(this.grdPresDetail, "Chi tiết đơn thuốc");
            this.grdPresDetail.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdPresDetail.TotalRowFormatStyle.BackColor = System.Drawing.Color.White;
            this.grdPresDetail.TotalRowFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
            this.grdPresDetail.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdPresDetail.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdPresDetail.UseGroupRowSelector = true;
            this.grdPresDetail.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // cmdDelete
            // 
            this.cmdDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdDelete.Image = ((System.Drawing.Image)(resources.GetObject("cmdDelete.Image")));
            this.cmdDelete.Location = new System.Drawing.Point(300, 6);
            this.cmdDelete.Name = "cmdDelete";
            this.cmdDelete.Size = new System.Drawing.Size(104, 29);
            this.cmdDelete.TabIndex = 8;
            this.cmdDelete.Text = "Xóa";
            this.toolTip1.SetToolTip(this.cmdDelete, "Chọn các thuốc cần xóa trước khi thực hiện xóa. Hãy chẵc chắn các thuốc trước khi" +
        " xóa !");
            // 
            // cmdPrintPres
            // 
            this.cmdPrintPres.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdPrintPres.Image = ((System.Drawing.Image)(resources.GetObject("cmdPrintPres.Image")));
            this.cmdPrintPres.Location = new System.Drawing.Point(191, 6);
            this.cmdPrintPres.Name = "cmdPrintPres";
            this.cmdPrintPres.Size = new System.Drawing.Size(104, 29);
            this.cmdPrintPres.TabIndex = 7;
            this.cmdPrintPres.Text = "In(Ctrl+P)";
            this.toolTip1.SetToolTip(this.cmdPrintPres, "Nhấn vào đây để in đơn thuốc");
            this.cmdPrintPres.ToolTipText = "In thông tin đơn thuốc";
            this.cmdPrintPres.Visible = false;
            // 
            // cmdSavePres
            // 
            this.cmdSavePres.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdSavePres.Image = ((System.Drawing.Image)(resources.GetObject("cmdSavePres.Image")));
            this.cmdSavePres.Location = new System.Drawing.Point(409, 6);
            this.cmdSavePres.Name = "cmdSavePres";
            this.cmdSavePres.Size = new System.Drawing.Size(104, 29);
            this.cmdSavePres.TabIndex = 6;
            this.cmdSavePres.Text = "Ghi(Ctrl+S)";
            this.toolTip1.SetToolTip(this.cmdSavePres, "Nhấn vào đây để lưu đơn thuốc");
            // 
            // cmdExit
            // 
            this.cmdExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            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(517, 6);
            this.cmdExit.Name = "cmdExit";
            this.cmdExit.Size = new System.Drawing.Size(104, 29);
            this.cmdExit.TabIndex = 8;
            this.cmdExit.Text = "Thoát(Esc)";
            this.toolTip1.SetToolTip(this.cmdExit, "Nhấn vào đây để thoát khỏi chức năng");
            // 
            // txtdrug
            // 
            this.txtdrug._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtdrug._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtdrug.AllowedSelectPrice = false;
            this.txtdrug.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtdrug.AutoCompleteList")));
            this.txtdrug.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtdrug.CaseSensitive = false;
            this.txtdrug.CompareNoID = true;
            this.txtdrug.DefaultCode = "-1";
            this.txtdrug.DefaultID = "-1";
            this.txtdrug.Drug_ID = null;
            this.txtdrug.ExtraWidth = 200;
            this.txtdrug.ExtraWidth_Pre = 200;
            this.txtdrug.FillValueAfterSelect = true;
            this.txtdrug.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtdrug.GridView = false;
            this.txtdrug.Location = new System.Drawing.Point(93, 56);
            this.txtdrug.MaxHeight = 300;
            this.txtdrug.MinTypedCharacters = 2;
            this.txtdrug.MyCode = "-1";
            this.txtdrug.MyID = "-1";
            this.txtdrug.Name = "txtdrug";
            this.txtdrug.RaiseEvent = false;
            this.txtdrug.RaiseEventEnter = true;
            this.txtdrug.RaiseEventEnterWhenEmpty = false;
            this.txtdrug.SelectedIndex = -1;
            this.txtdrug.Size = new System.Drawing.Size(282, 21);
            this.txtdrug.splitChar = '@';
            this.txtdrug.splitCharIDAndCode = '#';
            this.txtdrug.TabIndex = 1;
            this.toolTip1.SetToolTip(this.txtdrug, "Gõ bất kỳ thông tin gì liên quan đến thuốc để tìm thuốc cần kê đơn");
            this.txtdrug.txtMyCode = null;
            this.txtdrug.txtMyCode_Edit = null;
            this.txtdrug.txtMyID = null;
            this.txtdrug.txtMyID_Edit = null;
            this.txtdrug.txtMyName = null;
            this.txtdrug.txtMyName_Edit = null;
            this.txtdrug.txtNext = null;
            // 
            // cmdAddDetail
            // 
            this.cmdAddDetail.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdAddDetail.Image = ((System.Drawing.Image)(resources.GetObject("cmdAddDetail.Image")));
            this.cmdAddDetail.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdAddDetail.Location = new System.Drawing.Point(457, 200);
            this.cmdAddDetail.Name = "cmdAddDetail";
            this.cmdAddDetail.Size = new System.Drawing.Size(166, 32);
            this.cmdAddDetail.TabIndex = 13;
            this.cmdAddDetail.Text = "Chấp nhận";
            this.toolTip1.SetToolTip(this.cmdAddDetail, "Nhấn vào đây để thêm thuốc đang chọn vào chi tiết đơn thuốc");
            // 
            // chkHienthithuoctheonhom
            // 
            this.chkHienthithuoctheonhom.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.chkHienthithuoctheonhom.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkHienthithuoctheonhom.Location = new System.Drawing.Point(93, 203);
            this.chkHienthithuoctheonhom.Name = "chkHienthithuoctheonhom";
            this.chkHienthithuoctheonhom.Size = new System.Drawing.Size(176, 23);
            this.chkHienthithuoctheonhom.TabIndex = 546;
            this.chkHienthithuoctheonhom.TabStop = false;
            this.chkHienthithuoctheonhom.Text = "Hiển thị Vắcxin theo nhóm?";
            // 
            // txtDrugID
            // 
            this.txtDrugID.ButtonFont = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
            this.txtDrugID.Enabled = false;
            this.txtDrugID.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDrugID.Location = new System.Drawing.Point(79, 180);
            this.txtDrugID.Name = "txtDrugID";
            this.txtDrugID.Size = new System.Drawing.Size(85, 21);
            this.txtDrugID.TabIndex = 4;
            this.txtDrugID.TabStop = false;
            this.txtDrugID.Visible = false;
            // 
            // txtDrug_Name
            // 
            this.txtDrug_Name.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDrug_Name.Location = new System.Drawing.Point(195, 178);
            this.txtDrug_Name.Name = "txtDrug_Name";
            this.txtDrug_Name.ReadOnly = true;
            this.txtDrug_Name.Size = new System.Drawing.Size(10, 21);
            this.txtDrug_Name.TabIndex = 3;
            this.txtDrug_Name.TabStop = false;
            this.txtDrug_Name.Visible = false;
            // 
            // StatusBar
            // 
            this.StatusBar.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.StatusBar.Location = new System.Drawing.Point(0, 707);
            this.StatusBar.Name = "StatusBar";
            uiStatusBarPanel1.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel1.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel1.FormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            uiStatusBarPanel1.FormatStyle.ForeColor = System.Drawing.Color.Navy;
            uiStatusBarPanel1.Key = "Tongtien";
            uiStatusBarPanel1.ProgressBarValue = 0;
            uiStatusBarPanel1.Text = "Tổng tiền BN:";
            uiStatusBarPanel1.Width = 102;
            uiStatusBarPanel2.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel2.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel2.Key = "";
            uiStatusBarPanel2.ProgressBarValue = 0;
            uiStatusBarPanel2.Text = "Ctrl+A: Thêm vắc xin";
            uiStatusBarPanel2.Width = 137;
            uiStatusBarPanel3.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel3.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel3.Key = "";
            uiStatusBarPanel3.ProgressBarValue = 0;
            uiStatusBarPanel3.Text = "Ctrl+S: Lưu đơn";
            uiStatusBarPanel3.Width = 111;
            uiStatusBarPanel4.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel4.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel4.Key = "";
            uiStatusBarPanel4.ProgressBarValue = 0;
            uiStatusBarPanel4.Text = "F4: In đơn ";
            uiStatusBarPanel4.Width = 80;
            uiStatusBarPanel5.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel5.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel5.Key = "";
            uiStatusBarPanel5.ProgressBarValue = 0;
            uiStatusBarPanel5.Text = "F2: Quay lại ô tìm kiếm";
            uiStatusBarPanel5.Width = 152;
            uiStatusBarPanel6.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel6.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel6.Key = "";
            uiStatusBarPanel6.ProgressBarValue = 0;
            uiStatusBarPanel6.Text = "Esc: Thoát Form";
            uiStatusBarPanel6.Width = 113;
            this.StatusBar.Panels.AddRange(new Janus.Windows.UI.StatusBar.UIStatusBarPanel[] {
            uiStatusBarPanel1,
            uiStatusBarPanel2,
            uiStatusBarPanel3,
            uiStatusBarPanel4,
            uiStatusBarPanel5,
            uiStatusBarPanel6});
            this.StatusBar.Size = new System.Drawing.Size(1008, 23);
            this.StatusBar.TabIndex = 519;
            this.StatusBar.TabStop = false;
            this.StatusBar.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
            // 
            // cmdCauHinh
            // 
            this.cmdCauHinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdCauHinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdCauHinh.Image")));
            this.cmdCauHinh.Location = new System.Drawing.Point(967, 707);
            this.cmdCauHinh.Name = "cmdCauHinh";
            this.cmdCauHinh.Size = new System.Drawing.Size(41, 23);
            this.cmdCauHinh.TabIndex = 520;
            this.cmdCauHinh.TabStop = false;
            // 
            // tabKeDonThuoc
            // 
            this.tabKeDonThuoc.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabKeDonThuoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tabKeDonThuoc.Location = new System.Drawing.Point(0, 0);
            this.tabKeDonThuoc.Name = "tabKeDonThuoc";
            this.tabKeDonThuoc.Size = new System.Drawing.Size(1008, 707);
            this.tabKeDonThuoc.TabIndex = 521;
            this.tabKeDonThuoc.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
            this.uiTabPage1,
            this.uiTabPage2});
            this.tabKeDonThuoc.TabStop = false;
            // 
            // uiTabPage1
            // 
            this.uiTabPage1.Controls.Add(this.panel2);
            this.uiTabPage1.Controls.Add(this.panel1);
            this.uiTabPage1.Location = new System.Drawing.Point(1, 23);
            this.uiTabPage1.Name = "uiTabPage1";
            this.uiTabPage1.Size = new System.Drawing.Size(1004, 681);
            this.uiTabPage1.TabStop = true;
            this.uiTabPage1.Text = "Kê đơn thuốc cho bệnh nhân";
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.grdPresDetail);
            this.panel2.Controls.Add(this.panel4);
            this.panel2.Controls.Add(this.pnlKedon);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(374, 0);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(630, 681);
            this.panel2.TabIndex = 5;
            // 
            // panel4
            // 
            this.panel4.Controls.Add(this.cmdKecongtiem);
            this.panel4.Controls.Add(this.cmdDelete);
            this.panel4.Controls.Add(this.cmdPrintPres);
            this.panel4.Controls.Add(this.cmdSavePres);
            this.panel4.Controls.Add(this.cmdExit);
            this.panel4.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel4.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.panel4.Location = new System.Drawing.Point(0, 635);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(630, 46);
            this.panel4.TabIndex = 547;
            // 
            // pnlKedon
            // 
            this.pnlKedon.Controls.Add(this.txtNguoitiem);
            this.pnlKedon.Controls.Add(this.chkMuithu);
            this.pnlKedon.Controls.Add(this.chkHienthithuoctheonhom);
            this.pnlKedon.Controls.Add(this.cmdAddDetail);
            this.pnlKedon.Controls.Add(this.txtVitritiem);
            this.pnlKedon.Controls.Add(this.txtLydotiem);
            this.pnlKedon.Controls.Add(this.label8);
            this.pnlKedon.Controls.Add(this.label42);
            this.pnlKedon.Controls.Add(this.txtLoaivacxin);
            this.pnlKedon.Controls.Add(this.label41);
            this.pnlKedon.Controls.Add(this.label39);
            this.pnlKedon.Controls.Add(this.txtMota);
            this.pnlKedon.Controls.Add(this.label36);
            this.pnlKedon.Controls.Add(this.txtLieuluong);
            this.pnlKedon.Controls.Add(this.dtpHennhaclai);
            this.pnlKedon.Controls.Add(this.label37);
            this.pnlKedon.Controls.Add(this.txtMuithu);
            this.pnlKedon.Controls.Add(this.txtDonViDung);
            this.pnlKedon.Controls.Add(this.txtSoluong);
            this.pnlKedon.Controls.Add(this.lblMsg);
            this.pnlKedon.Controls.Add(this.chkTutuc);
            this.pnlKedon.Controls.Add(this.txtdrug);
            this.pnlKedon.Controls.Add(this.label15);
            this.pnlKedon.Controls.Add(this.label21);
            this.pnlKedon.Controls.Add(this.label31);
            this.pnlKedon.Controls.Add(this.txtTonKho);
            this.pnlKedon.Controls.Add(this.cboStock);
            this.pnlKedon.Controls.Add(this.label17);
            this.pnlKedon.Controls.Add(this.label11);
            this.pnlKedon.Controls.Add(this.vbLine3);
            this.pnlKedon.Controls.Add(this.chkHennhaclai);
            this.pnlKedon.Dock = System.Windows.Forms.DockStyle.Top;
            this.pnlKedon.Location = new System.Drawing.Point(0, 0);
            this.pnlKedon.Name = "pnlKedon";
            this.pnlKedon.Size = new System.Drawing.Size(630, 259);
            this.pnlKedon.TabIndex = 546;
            this.pnlKedon.TabStop = true;
            // 
            // chkMuithu
            // 
            this.chkMuithu.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkMuithu.ForeColor = System.Drawing.Color.Navy;
            this.chkMuithu.Location = new System.Drawing.Point(9, 107);
            this.chkMuithu.Name = "chkMuithu";
            this.chkMuithu.Size = new System.Drawing.Size(78, 23);
            this.chkMuithu.TabIndex = 500;
            this.chkMuithu.TabStop = false;
            this.chkMuithu.Text = "Mũi thứ:";
            // 
            // txtVitritiem
            // 
            this.txtVitritiem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtVitritiem.Location = new System.Drawing.Point(466, 106);
            this.txtVitritiem.Name = "txtVitritiem";
            this.txtVitritiem.ReadOnly = true;
            this.txtVitritiem.Size = new System.Drawing.Size(157, 21);
            this.txtVitritiem.TabIndex = 9;
            this.txtVitritiem.TabStop = false;
            // 
            // txtLydotiem
            // 
            this.txtLydotiem._backcolor = System.Drawing.SystemColors.Control;
            this.txtLydotiem._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtLydotiem.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtLydotiem.AutoCompleteList")));
            this.txtLydotiem.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtLydotiem.CaseSensitive = false;
            this.txtLydotiem.CompareNoID = true;
            this.txtLydotiem.DefaultCode = "-1";
            this.txtLydotiem.DefaultID = "-1";
            this.txtLydotiem.Drug_ID = null;
            this.txtLydotiem.ExtraWidth = 0;
            this.txtLydotiem.FillValueAfterSelect = false;
            this.txtLydotiem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtLydotiem.LOAI_DANHMUC = "LYDOTIEM";
            this.txtLydotiem.Location = new System.Drawing.Point(466, 80);
            this.txtLydotiem.MaxHeight = -1;
            this.txtLydotiem.MinTypedCharacters = 2;
            this.txtLydotiem.MyCode = "-1";
            this.txtLydotiem.MyID = "-1";
            this.txtLydotiem.Name = "txtLydotiem";
            this.txtLydotiem.RaiseEvent = false;
            this.txtLydotiem.RaiseEventEnter = false;
            this.txtLydotiem.RaiseEventEnterWhenEmpty = false;
            this.txtLydotiem.SelectedIndex = -1;
            this.txtLydotiem.Size = new System.Drawing.Size(157, 21);
            this.txtLydotiem.splitChar = '@';
            this.txtLydotiem.splitCharIDAndCode = '#';
            this.txtLydotiem.TabIndex = 5;
            this.txtLydotiem.TakeCode = false;
            this.txtLydotiem.txtMyCode = null;
            this.txtLydotiem.txtMyCode_Edit = null;
            this.txtLydotiem.txtMyID = null;
            this.txtLydotiem.txtMyID_Edit = null;
            this.txtLydotiem.txtMyName = null;
            this.txtLydotiem.txtMyName_Edit = null;
            this.txtLydotiem.txtNext = null;
            // 
            // label8
            // 
            this.label8.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label8.ForeColor = System.Drawing.Color.Black;
            this.label8.Location = new System.Drawing.Point(378, 79);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(70, 20);
            this.label8.TabIndex = 574;
            this.label8.Text = "Lý do tiêm:";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label42
            // 
            this.label42.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label42.ForeColor = System.Drawing.Color.Black;
            this.label42.Location = new System.Drawing.Point(6, 80);
            this.label42.Name = "label42";
            this.label42.Size = new System.Drawing.Size(81, 23);
            this.label42.TabIndex = 572;
            this.label42.Text = "Người tiêm:";
            this.label42.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtLoaivacxin
            // 
            this.txtLoaivacxin.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtLoaivacxin.Location = new System.Drawing.Point(93, 130);
            this.txtLoaivacxin.Name = "txtLoaivacxin";
            this.txtLoaivacxin.ReadOnly = true;
            this.txtLoaivacxin.Size = new System.Drawing.Size(530, 21);
            this.txtLoaivacxin.TabIndex = 10;
            this.txtLoaivacxin.TabStop = false;
            // 
            // label41
            // 
            this.label41.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label41.ForeColor = System.Drawing.Color.Black;
            this.label41.Location = new System.Drawing.Point(5, 153);
            this.label41.Name = "label41";
            this.label41.Size = new System.Drawing.Size(82, 23);
            this.label41.TabIndex = 570;
            this.label41.Text = "Liều lượng:";
            this.label41.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label39
            // 
            this.label39.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label39.Location = new System.Drawing.Point(6, 180);
            this.label39.Name = "label39";
            this.label39.Size = new System.Drawing.Size(81, 15);
            this.label39.TabIndex = 568;
            this.label39.Text = "Mô tả:";
            this.label39.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtMota
            // 
            this.txtMota.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMota.Location = new System.Drawing.Point(93, 177);
            this.txtMota.Name = "txtMota";
            this.txtMota.ReadOnly = true;
            this.txtMota.Size = new System.Drawing.Size(530, 21);
            this.txtMota.TabIndex = 12;
            this.txtMota.TabStop = false;
            // 
            // label36
            // 
            this.label36.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label36.Location = new System.Drawing.Point(6, 133);
            this.label36.Name = "label36";
            this.label36.Size = new System.Drawing.Size(81, 15);
            this.label36.TabIndex = 566;
            this.label36.Text = "Loại vắc xin";
            this.label36.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtLieuluong
            // 
            this.txtLieuluong.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtLieuluong.Location = new System.Drawing.Point(93, 154);
            this.txtLieuluong.Name = "txtLieuluong";
            this.txtLieuluong.ReadOnly = true;
            this.txtLieuluong.Size = new System.Drawing.Size(530, 21);
            this.txtLieuluong.TabIndex = 11;
            this.txtLieuluong.TabStop = false;
            // 
            // dtpHennhaclai
            // 
            this.dtpHennhaclai.CustomFormat = "dd/MM/yyyy";
            this.dtpHennhaclai.Enabled = false;
            this.dtpHennhaclai.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtpHennhaclai.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtpHennhaclai.Location = new System.Drawing.Point(270, 106);
            this.dtpHennhaclai.Name = "dtpHennhaclai";
            this.dtpHennhaclai.ShowUpDown = true;
            this.dtpHennhaclai.Size = new System.Drawing.Size(105, 21);
            this.dtpHennhaclai.TabIndex = 8;
            // 
            // label37
            // 
            this.label37.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label37.ForeColor = System.Drawing.Color.Black;
            this.label37.Location = new System.Drawing.Point(380, 105);
            this.label37.Name = "label37";
            this.label37.Size = new System.Drawing.Size(69, 23);
            this.label37.TabIndex = 560;
            this.label37.Text = "Vị trí tiêm:";
            this.label37.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtMuithu
            // 
            this.txtMuithu.BackColor = System.Drawing.Color.White;
            this.txtMuithu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtMuithu.Enabled = false;
            this.txtMuithu.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMuithu.ForeColor = System.Drawing.Color.Navy;
            this.txtMuithu.Location = new System.Drawing.Point(93, 105);
            this.txtMuithu.MaxLength = 8;
            this.txtMuithu.Name = "txtMuithu";
            this.txtMuithu.Size = new System.Drawing.Size(70, 21);
            this.txtMuithu.TabIndex = 6;
            this.txtMuithu.Text = "0";
            this.txtMuithu.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // txtDonViDung
            // 
            this.txtDonViDung.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDonViDung.Location = new System.Drawing.Point(555, 55);
            this.txtDonViDung.Name = "txtDonViDung";
            this.txtDonViDung.ReadOnly = true;
            this.txtDonViDung.Size = new System.Drawing.Size(68, 21);
            this.txtDonViDung.TabIndex = 3;
            this.txtDonViDung.TabStop = false;
            // 
            // 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(466, 55);
            this.txtSoluong.Masked = MaskedTextBox.Mask.Digit;
            this.txtSoluong.Name = "txtSoluong";
            this.txtSoluong.Size = new System.Drawing.Size(88, 21);
            this.txtSoluong.TabIndex = 2;
            this.txtSoluong.Text = "1";
            this.txtSoluong.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // lblMsg
            // 
            this.lblMsg.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.lblMsg.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblMsg.ForeColor = System.Drawing.Color.Red;
            this.lblMsg.Location = new System.Drawing.Point(0, 235);
            this.lblMsg.Name = "lblMsg";
            this.lblMsg.Size = new System.Drawing.Size(630, 24);
            this.lblMsg.TabIndex = 554;
            this.lblMsg.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // chkTutuc
            // 
            this.chkTutuc.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkTutuc.ForeColor = System.Drawing.Color.Navy;
            this.chkTutuc.Location = new System.Drawing.Point(558, 27);
            this.chkTutuc.Name = "chkTutuc";
            this.chkTutuc.Size = new System.Drawing.Size(63, 23);
            this.chkTutuc.TabIndex = 553;
            this.chkTutuc.Text = "Tự túc";
            // 
            // label15
            // 
            this.label15.BackColor = System.Drawing.Color.Transparent;
            this.label15.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label15.ForeColor = System.Drawing.Color.Red;
            this.label15.Location = new System.Drawing.Point(6, 27);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(81, 23);
            this.label15.TabIndex = 539;
            this.label15.Text = "Kho vắc xin";
            this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label21
            // 
            this.label21.AutoSize = true;
            this.label21.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label21.ForeColor = System.Drawing.Color.Black;
            this.label21.Location = new System.Drawing.Point(501, 238);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(36, 15);
            this.label21.TabIndex = 521;
            this.label21.Text = "(Vnđ)";
            this.label21.Visible = false;
            // 
            // label31
            // 
            this.label31.AutoSize = true;
            this.label31.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label31.ForeColor = System.Drawing.Color.Black;
            this.label31.Location = new System.Drawing.Point(378, 30);
            this.label31.Name = "label31";
            this.label31.Size = new System.Drawing.Size(76, 15);
            this.label31.TabIndex = 542;
            this.label31.Text = "Còn tồn kho:";
            // 
            // txtTonKho
            // 
            this.txtTonKho.BackColor = System.Drawing.Color.SteelBlue;
            this.txtTonKho.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTonKho.ForeColor = System.Drawing.Color.White;
            this.txtTonKho.Location = new System.Drawing.Point(466, 27);
            this.txtTonKho.Name = "txtTonKho";
            this.txtTonKho.Size = new System.Drawing.Size(88, 21);
            this.txtTonKho.TabIndex = 541;
            this.txtTonKho.TabStop = false;
            this.txtTonKho.Text = "0";
            this.txtTonKho.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // cboStock
            // 
            this.cboStock.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboStock.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboStock.FormattingEnabled = true;
            this.cboStock.Location = new System.Drawing.Point(93, 27);
            this.cboStock.Name = "cboStock";
            this.cboStock.Size = new System.Drawing.Size(282, 23);
            this.cboStock.TabIndex = 0;
            this.cboStock.TabStop = false;
            // 
            // label17
            // 
            this.label17.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label17.ForeColor = System.Drawing.Color.Red;
            this.label17.Location = new System.Drawing.Point(6, 55);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(81, 23);
            this.label17.TabIndex = 8;
            this.label17.Text = "Chọn Vắc xin";
            this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label11
            // 
            this.label11.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label11.ForeColor = System.Drawing.Color.Red;
            this.label11.Location = new System.Drawing.Point(378, 55);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(70, 23);
            this.label11.TabIndex = 70;
            this.label11.Text = "Số lượng";
            this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // vbLine3
            // 
            this.vbLine3._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine3.BackColor = System.Drawing.Color.Transparent;
            this.vbLine3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine3.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine3.Location = new System.Drawing.Point(8, 4);
            this.vbLine3.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine3.Name = "vbLine3";
            this.vbLine3.Size = new System.Drawing.Size(624, 22);
            this.vbLine3.TabIndex = 545;
            this.vbLine3.TabStop = false;
            this.vbLine3.YourText = "Kê đơn";
            // 
            // chkHennhaclai
            // 
            this.chkHennhaclai.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkHennhaclai.Location = new System.Drawing.Point(173, 105);
            this.chkHennhaclai.Name = "chkHennhaclai";
            this.chkHennhaclai.Size = new System.Drawing.Size(89, 23);
            this.chkHennhaclai.TabIndex = 7;
            this.chkHennhaclai.Text = "Hẹn nhắc lại:";
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.panel3);
            this.panel1.Controls.Add(this.txtBacsi);
            this.panel1.Controls.Add(this.pnlChandoanNgoaitru);
            this.panel1.Controls.Add(this.lblphantramdauthe);
            this.panel1.Controls.Add(this.label33);
            this.panel1.Controls.Add(this.txtptramdauthe);
            this.panel1.Controls.Add(this.label24);
            this.panel1.Controls.Add(this.txtdiachiBhyt);
            this.panel1.Controls.Add(this.txtPtramBHYT);
            this.panel1.Controls.Add(this.vbLine1);
            this.panel1.Controls.Add(this.cmdDonThuocDaKe);
            this.panel1.Controls.Add(this.txtYearBirth);
            this.panel1.Controls.Add(this.cmdMauDonThuoc);
            this.panel1.Controls.Add(this.label28);
            this.panel1.Controls.Add(this.chkNgayTaiKham);
            this.panel1.Controls.Add(this.chkAdditional);
            this.panel1.Controls.Add(this.barcode);
            this.panel1.Controls.Add(this.dtNgayKhamLai);
            this.panel1.Controls.Add(this.label27);
            this.panel1.Controls.Add(this.txtKhamLai);
            this.panel1.Controls.Add(this.txtSex);
            this.panel1.Controls.Add(this.label7);
            this.panel1.Controls.Add(this.label20);
            this.panel1.Controls.Add(this.txtLoiDanBS);
            this.panel1.Controls.Add(this.txtPatientName);
            this.panel1.Controls.Add(this.dtNgayIn);
            this.panel1.Controls.Add(this.label6);
            this.panel1.Controls.Add(this.label23);
            this.panel1.Controls.Add(this.txtObjectName);
            this.panel1.Controls.Add(this.label5);
            this.panel1.Controls.Add(this.txtSoDT);
            this.panel1.Controls.Add(this.txtPres_ID);
            this.panel1.Controls.Add(this.txtAddress);
            this.panel1.Controls.Add(this.label2);
            this.panel1.Controls.Add(this.label26);
            this.panel1.Controls.Add(this.label25);
            this.panel1.Controls.Add(this.dtpCreatedDate);
            this.panel1.Controls.Add(this.txtSoBHYT);
            this.panel1.Controls.Add(this.label1);
            this.panel1.Controls.Add(this.label3);
            this.panel1.Controls.Add(this.txtPatientCode);
            this.panel1.Controls.Add(this.label4);
            this.panel1.Controls.Add(this.txtPatientID);
            this.panel1.Controls.Add(this.label30);
            this.panel1.Controls.Add(this.vbLine2);
            this.panel1.Controls.Add(this.label29);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(374, 681);
            this.panel1.TabIndex = 3;
            // 
            // panel3
            // 
            this.panel3.Controls.Add(this.txtDonvichiaBut);
            this.panel3.Controls.Add(this.nmrQuantity);
            this.panel3.Controls.Add(this.txtSobutconlai);
            this.panel3.Controls.Add(this.txtMotathem);
            this.panel3.Controls.Add(this.label14);
            this.panel3.Controls.Add(this.txtTinhchat);
            this.panel3.Controls.Add(this.label34);
            this.panel3.Controls.Add(this.txtGioihanke);
            this.panel3.Controls.Add(this.label12);
            this.panel3.Controls.Add(this.txtSoLuongDung);
            this.panel3.Controls.Add(this.label16);
            this.panel3.Controls.Add(this.label18);
            this.panel3.Controls.Add(this.txtSolan);
            this.panel3.Controls.Add(this.txtCachDung);
            this.panel3.Controls.Add(this.txtChiDanThem);
            this.panel3.Controls.Add(this.label10);
            this.panel3.Controls.Add(this.txtChiDanDungThuoc);
            this.panel3.Controls.Add(this.txtPrice);
            this.panel3.Controls.Add(this.label13);
            this.panel3.Controls.Add(this.label9);
            this.panel3.Controls.Add(this.txtSurcharge);
            this.panel3.Controls.Add(this.txtBietduoc);
            this.panel3.Controls.Add(this.txtDrugID);
            this.panel3.Controls.Add(this.txtdrugtypeCode);
            this.panel3.Controls.Add(this.dtExpire_Date);
            this.panel3.Controls.Add(this.txtDrug_Name);
            this.panel3.Location = new System.Drawing.Point(13, 409);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(15, 10);
            this.panel3.TabIndex = 566;
            this.panel3.Visible = false;
            this.panel3.Paint += new System.Windows.Forms.PaintEventHandler(this.panel3_Paint);
            // 
            // txtDonvichiaBut
            // 
            this.txtDonvichiaBut.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDonvichiaBut.Location = new System.Drawing.Point(43, 170);
            this.txtDonvichiaBut.Name = "txtDonvichiaBut";
            this.txtDonvichiaBut.ReadOnly = true;
            this.txtDonvichiaBut.Size = new System.Drawing.Size(15, 21);
            this.txtDonvichiaBut.TabIndex = 561;
            this.txtDonvichiaBut.TabStop = false;
            this.txtDonvichiaBut.Visible = false;
            // 
            // nmrQuantity
            // 
            this.nmrQuantity.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.nmrQuantity.Location = new System.Drawing.Point(16, 3);
            this.nmrQuantity.Maximum = 10000;
            this.nmrQuantity.Minimum = 1;
            this.nmrQuantity.Name = "nmrQuantity";
            this.nmrQuantity.Size = new System.Drawing.Size(20, 21);
            this.nmrQuantity.TabIndex = 2;
            this.nmrQuantity.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            this.nmrQuantity.Value = 1;
            this.nmrQuantity.Visible = false;
            // 
            // txtSobutconlai
            // 
            this.txtSobutconlai.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSobutconlai.Location = new System.Drawing.Point(295, 52);
            this.txtSobutconlai.Name = "txtSobutconlai";
            this.txtSobutconlai.Size = new System.Drawing.Size(84, 21);
            this.txtSobutconlai.TabIndex = 559;
            this.txtSobutconlai.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // txtMotathem
            // 
            this.txtMotathem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMotathem.Location = new System.Drawing.Point(82, 144);
            this.txtMotathem.Name = "txtMotathem";
            this.txtMotathem.ReadOnly = true;
            this.txtMotathem.Size = new System.Drawing.Size(15, 21);
            this.txtMotathem.TabIndex = 558;
            this.txtMotathem.TabStop = false;
            this.txtMotathem.Visible = false;
            // 
            // label14
            // 
            this.label14.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label14.ForeColor = System.Drawing.Color.Black;
            this.label14.Location = new System.Drawing.Point(-28, 27);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(68, 23);
            this.label14.TabIndex = 83;
            this.label14.Text = "Mỗi ngày";
            this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtTinhchat
            // 
            this.txtTinhchat.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTinhchat.Location = new System.Drawing.Point(61, 145);
            this.txtTinhchat.Name = "txtTinhchat";
            this.txtTinhchat.ReadOnly = true;
            this.txtTinhchat.Size = new System.Drawing.Size(15, 21);
            this.txtTinhchat.TabIndex = 557;
            this.txtTinhchat.TabStop = false;
            this.txtTinhchat.Visible = false;
            // 
            // label34
            // 
            this.label34.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label34.ForeColor = System.Drawing.Color.Black;
            this.label34.Location = new System.Drawing.Point(236, 52);
            this.label34.Name = "label34";
            this.label34.Size = new System.Drawing.Size(57, 23);
            this.label34.TabIndex = 560;
            this.label34.Text = "Bút";
            // 
            // txtGioihanke
            // 
            this.txtGioihanke.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtGioihanke.Location = new System.Drawing.Point(43, 145);
            this.txtGioihanke.Name = "txtGioihanke";
            this.txtGioihanke.ReadOnly = true;
            this.txtGioihanke.Size = new System.Drawing.Size(15, 21);
            this.txtGioihanke.TabIndex = 556;
            this.txtGioihanke.TabStop = false;
            this.txtGioihanke.Visible = false;
            // 
            // label12
            // 
            this.label12.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label12.ForeColor = System.Drawing.Color.Black;
            this.label12.Location = new System.Drawing.Point(236, 28);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(57, 23);
            this.label12.TabIndex = 85;
            this.label12.Text = "Chia làm";
            // 
            // txtSoLuongDung
            // 
            this.txtSoLuongDung.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSoLuongDung.Location = new System.Drawing.Point(42, 29);
            this.txtSoLuongDung.Name = "txtSoLuongDung";
            this.txtSoLuongDung.Size = new System.Drawing.Size(87, 21);
            this.txtSoLuongDung.TabIndex = 3;
            this.txtSoLuongDung.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // 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(-44, 53);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(84, 23);
            this.label16.TabIndex = 515;
            this.label16.Text = "Cách dùng";
            this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label18
            // 
            this.label18.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label18.ForeColor = System.Drawing.Color.Black;
            this.label18.Location = new System.Drawing.Point(-44, 82);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(84, 23);
            this.label18.TabIndex = 516;
            this.label18.Text = "Chỉ dẫn:";
            this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtSolan
            // 
            this.txtSolan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSolan.Location = new System.Drawing.Point(295, 28);
            this.txtSolan.Name = "txtSolan";
            this.txtSolan.Size = new System.Drawing.Size(84, 21);
            this.txtSolan.TabIndex = 4;
            this.txtSolan.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // txtCachDung
            // 
            this.txtCachDung._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.txtCachDung._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtCachDung.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtCachDung.AutoCompleteList")));
            this.txtCachDung.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtCachDung.CaseSensitive = false;
            this.txtCachDung.CompareNoID = true;
            this.txtCachDung.DefaultCode = "-1";
            this.txtCachDung.DefaultID = "-1";
            this.txtCachDung.Drug_ID = null;
            this.txtCachDung.ExtraWidth = 0;
            this.txtCachDung.FillValueAfterSelect = false;
            this.txtCachDung.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtCachDung.LOAI_DANHMUC = "CDDT";
            this.txtCachDung.Location = new System.Drawing.Point(42, 54);
            this.txtCachDung.MaxHeight = -1;
            this.txtCachDung.MinTypedCharacters = 2;
            this.txtCachDung.MyCode = "-1";
            this.txtCachDung.MyID = "-1";
            this.txtCachDung.Name = "txtCachDung";
            this.txtCachDung.RaiseEvent = false;
            this.txtCachDung.RaiseEventEnter = false;
            this.txtCachDung.RaiseEventEnterWhenEmpty = false;
            this.txtCachDung.SelectedIndex = -1;
            this.txtCachDung.Size = new System.Drawing.Size(187, 21);
            this.txtCachDung.splitChar = '@';
            this.txtCachDung.splitCharIDAndCode = '#';
            this.txtCachDung.TabIndex = 5;
            this.txtCachDung.TakeCode = false;
            this.txtCachDung.txtMyCode = null;
            this.txtCachDung.txtMyCode_Edit = null;
            this.txtCachDung.txtMyID = null;
            this.txtCachDung.txtMyID_Edit = null;
            this.txtCachDung.txtMyName = null;
            this.txtCachDung.txtMyName_Edit = null;
            this.txtCachDung.txtNext = null;
            // 
            // txtChiDanThem
            // 
            this.txtChiDanThem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtChiDanThem.Location = new System.Drawing.Point(42, 126);
            this.txtChiDanThem.Name = "txtChiDanThem";
            this.txtChiDanThem.Size = new System.Drawing.Size(337, 21);
            this.txtChiDanThem.TabIndex = 548;
            this.txtChiDanThem.TabStop = false;
            this.txtChiDanThem.TextAlignment = Janus.Windows.GridEX.TextAlignment.Near;
            // 
            // label10
            // 
            this.label10.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label10.ForeColor = System.Drawing.Color.Black;
            this.label10.Location = new System.Drawing.Point(-44, 126);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(84, 23);
            this.label10.TabIndex = 549;
            this.label10.Text = "Chỉ dẫn thêm:";
            this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtChiDanDungThuoc
            // 
            this.txtChiDanDungThuoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtChiDanDungThuoc.Location = new System.Drawing.Point(42, 80);
            this.txtChiDanDungThuoc.Multiline = true;
            this.txtChiDanDungThuoc.Name = "txtChiDanDungThuoc";
            this.txtChiDanDungThuoc.Size = new System.Drawing.Size(337, 42);
            this.txtChiDanDungThuoc.TabIndex = 550;
            this.txtChiDanDungThuoc.TabStop = false;
            this.txtChiDanDungThuoc.TextAlignment = Janus.Windows.GridEX.TextAlignment.Near;
            // 
            // txtPrice
            // 
            this.txtPrice.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPrice.Location = new System.Drawing.Point(43, 3);
            this.txtPrice.Name = "txtPrice";
            this.txtPrice.Size = new System.Drawing.Size(99, 21);
            this.txtPrice.TabIndex = 6;
            this.txtPrice.TabStop = false;
            this.txtPrice.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            this.txtPrice.Visible = false;
            // 
            // label13
            // 
            this.label13.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label13.ForeColor = System.Drawing.Color.Black;
            this.label13.Location = new System.Drawing.Point(149, 6);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(49, 23);
            this.label13.TabIndex = 74;
            this.label13.Text = "Phụ thu";
            this.label13.Visible = false;
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label9.ForeColor = System.Drawing.Color.Black;
            this.label9.Location = new System.Drawing.Point(64, 157);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(82, 15);
            this.label9.TabIndex = 547;
            this.label9.Text = "Ngày hết hạn:";
            // 
            // txtSurcharge
            // 
            this.txtSurcharge.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSurcharge.Location = new System.Drawing.Point(208, 3);
            this.txtSurcharge.Name = "txtSurcharge";
            this.txtSurcharge.Size = new System.Drawing.Size(84, 21);
            this.txtSurcharge.TabIndex = 7;
            this.txtSurcharge.TabStop = false;
            this.txtSurcharge.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            this.txtSurcharge.Visible = false;
            // 
            // txtBietduoc
            // 
            this.txtBietduoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtBietduoc.Location = new System.Drawing.Point(227, 180);
            this.txtBietduoc.Name = "txtBietduoc";
            this.txtBietduoc.ReadOnly = true;
            this.txtBietduoc.Size = new System.Drawing.Size(10, 21);
            this.txtBietduoc.TabIndex = 552;
            this.txtBietduoc.TabStop = false;
            this.txtBietduoc.Visible = false;
            // 
            // txtdrugtypeCode
            // 
            this.txtdrugtypeCode.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtdrugtypeCode.Location = new System.Drawing.Point(211, 179);
            this.txtdrugtypeCode.Name = "txtdrugtypeCode";
            this.txtdrugtypeCode.ReadOnly = true;
            this.txtdrugtypeCode.Size = new System.Drawing.Size(10, 21);
            this.txtdrugtypeCode.TabIndex = 551;
            this.txtdrugtypeCode.TabStop = false;
            this.txtdrugtypeCode.Visible = false;
            // 
            // dtExpire_Date
            // 
            this.dtExpire_Date.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.dtExpire_Date.DropDownCalendar.Name = "";
            this.dtExpire_Date.Enabled = false;
            this.dtExpire_Date.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtExpire_Date.Location = new System.Drawing.Point(152, 153);
            this.dtExpire_Date.Name = "dtExpire_Date";
            this.dtExpire_Date.ShowDropDown = false;
            this.dtExpire_Date.Size = new System.Drawing.Size(89, 21);
            this.dtExpire_Date.TabIndex = 543;
            this.dtExpire_Date.TabStop = false;
            this.dtExpire_Date.Value = new System.DateTime(2013, 11, 18, 0, 0, 0, 0);
            // 
            // txtBacsi
            // 
            this.txtBacsi._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtBacsi._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtBacsi._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtBacsi.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtBacsi.AutoCompleteList")));
            this.txtBacsi.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtBacsi.CaseSensitive = false;
            this.txtBacsi.CompareNoID = true;
            this.txtBacsi.DefaultCode = "-1";
            this.txtBacsi.DefaultID = "-1";
            this.txtBacsi.Drug_ID = null;
            this.txtBacsi.ExtraWidth = 0;
            this.txtBacsi.FillValueAfterSelect = false;
            this.txtBacsi.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtBacsi.Location = new System.Drawing.Point(107, 301);
            this.txtBacsi.MaxHeight = 289;
            this.txtBacsi.MinTypedCharacters = 2;
            this.txtBacsi.MyCode = "-1";
            this.txtBacsi.MyID = "-1";
            this.txtBacsi.MyText = "";
            this.txtBacsi.Name = "txtBacsi";
            this.txtBacsi.RaiseEvent = true;
            this.txtBacsi.RaiseEventEnter = true;
            this.txtBacsi.RaiseEventEnterWhenEmpty = true;
            this.txtBacsi.SelectedIndex = -1;
            this.txtBacsi.Size = new System.Drawing.Size(258, 21);
            this.txtBacsi.splitChar = '@';
            this.txtBacsi.splitCharIDAndCode = '#';
            this.txtBacsi.TabIndex = 16;
            this.txtBacsi.TakeCode = false;
            this.txtBacsi.txtMyCode = null;
            this.txtBacsi.txtMyCode_Edit = null;
            this.txtBacsi.txtMyID = null;
            this.txtBacsi.txtMyID_Edit = null;
            this.txtBacsi.txtMyName = null;
            this.txtBacsi.txtMyName_Edit = null;
            this.txtBacsi.txtNext = null;
            // 
            // pnlChandoanNgoaitru
            // 
            this.pnlChandoanNgoaitru.Controls.Add(this.vbLine4);
            this.pnlChandoanNgoaitru.Controls.Add(this.txtMaBenhphu);
            this.pnlChandoanNgoaitru.Controls.Add(this.label32);
            this.pnlChandoanNgoaitru.Controls.Add(this.label46);
            this.pnlChandoanNgoaitru.Controls.Add(this.label38);
            this.pnlChandoanNgoaitru.Controls.Add(this.txtTenBenhChinh);
            this.pnlChandoanNgoaitru.Controls.Add(this.grd_ICD);
            this.pnlChandoanNgoaitru.Controls.Add(this.txtMaBenhChinh);
            this.pnlChandoanNgoaitru.Controls.Add(this.cmdSearchBenhChinh);
            this.pnlChandoanNgoaitru.Controls.Add(this.txtTenBenhPhu);
            this.pnlChandoanNgoaitru.Controls.Add(this.cmdSearchBenhPhu);
            this.pnlChandoanNgoaitru.Controls.Add(this.txtChanDoan);
            this.pnlChandoanNgoaitru.Location = new System.Drawing.Point(7, 438);
            this.pnlChandoanNgoaitru.Name = "pnlChandoanNgoaitru";
            this.pnlChandoanNgoaitru.Size = new System.Drawing.Size(19, 14);
            this.pnlChandoanNgoaitru.TabIndex = 565;
            this.pnlChandoanNgoaitru.Visible = false;
            // 
            // vbLine4
            // 
            this.vbLine4._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine4.BackColor = System.Drawing.Color.Transparent;
            this.vbLine4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine4.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine4.Location = new System.Drawing.Point(4, 33);
            this.vbLine4.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine4.Name = "vbLine4";
            this.vbLine4.Size = new System.Drawing.Size(338, 22);
            this.vbLine4.TabIndex = 559;
            this.vbLine4.TabStop = false;
            this.vbLine4.Visible = false;
            this.vbLine4.YourText = "Chẩn đoán và bệnh";
            // 
            // txtMaBenhphu
            // 
            this.txtMaBenhphu.BackColor = System.Drawing.Color.LightBlue;
            this.txtMaBenhphu.Font = new System.Drawing.Font("Arial", 9F);
            this.txtMaBenhphu.Location = new System.Drawing.Point(110, 74);
            this.txtMaBenhphu.Name = "txtMaBenhphu";
            this.txtMaBenhphu.Size = new System.Drawing.Size(69, 21);
            this.txtMaBenhphu.TabIndex = 23;
            // 
            // label32
            // 
            this.label32.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label32.Location = new System.Drawing.Point(3, 49);
            this.label32.Name = "label32";
            this.label32.Size = new System.Drawing.Size(103, 21);
            this.label32.TabIndex = 554;
            this.label32.Text = "Bệnh chính:";
            this.label32.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label46
            // 
            this.label46.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label46.Location = new System.Drawing.Point(3, 24);
            this.label46.Name = "label46";
            this.label46.Size = new System.Drawing.Size(103, 21);
            this.label46.TabIndex = 553;
            this.label46.Text = "Chẩn đoán:";
            this.label46.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label38
            // 
            this.label38.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label38.Location = new System.Drawing.Point(3, 74);
            this.label38.Name = "label38";
            this.label38.Size = new System.Drawing.Size(103, 21);
            this.label38.TabIndex = 555;
            this.label38.Text = "Bệnh phụ:";
            this.label38.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtTenBenhChinh
            // 
            this.txtTenBenhChinh.Font = new System.Drawing.Font("Arial", 9F);
            this.txtTenBenhChinh.Location = new System.Drawing.Point(180, 48);
            this.txtTenBenhChinh.Name = "txtTenBenhChinh";
            this.txtTenBenhChinh.Size = new System.Drawing.Size(162, 21);
            this.txtTenBenhChinh.TabIndex = 548;
            this.txtTenBenhChinh.TabStop = false;
            // 
            // grd_ICD
            // 
            this.grd_ICD.AllowDelete = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grd_ICD.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grd_ICD.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)));
            grd_ICD_DesignTimeLayout.LayoutString = resources.GetString("grd_ICD_DesignTimeLayout.LayoutString");
            this.grd_ICD.DesignTimeLayout = grd_ICD_DesignTimeLayout;
            this.grd_ICD.Font = new System.Drawing.Font("Arial", 9F);
            this.grd_ICD.GroupByBoxVisible = false;
            this.grd_ICD.Location = new System.Drawing.Point(109, 98);
            this.grd_ICD.Name = "grd_ICD";
            this.grd_ICD.Size = new System.Drawing.Size(0, 0);
            this.grd_ICD.TabIndex = 558;
            this.grd_ICD.TableViewHorizontalScrollIncrement = 21;
            this.grd_ICD.TabStop = false;
            this.grd_ICD.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // txtMaBenhChinh
            // 
            this.txtMaBenhChinh.BackColor = System.Drawing.Color.LightBlue;
            this.txtMaBenhChinh.Font = new System.Drawing.Font("Arial", 9F);
            this.txtMaBenhChinh.Location = new System.Drawing.Point(110, 48);
            this.txtMaBenhChinh.Name = "txtMaBenhChinh";
            this.txtMaBenhChinh.Size = new System.Drawing.Size(69, 21);
            this.txtMaBenhChinh.TabIndex = 22;
            // 
            // cmdSearchBenhChinh
            // 
            this.cmdSearchBenhChinh.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdSearchBenhChinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdSearchBenhChinh.Image")));
            this.cmdSearchBenhChinh.Location = new System.Drawing.Point(344, 47);
            this.cmdSearchBenhChinh.Name = "cmdSearchBenhChinh";
            this.cmdSearchBenhChinh.Size = new System.Drawing.Size(29, 21);
            this.cmdSearchBenhChinh.TabIndex = 556;
            this.cmdSearchBenhChinh.TabStop = false;
            // 
            // txtTenBenhPhu
            // 
            this.txtTenBenhPhu.Font = new System.Drawing.Font("Arial", 9F);
            this.txtTenBenhPhu.Location = new System.Drawing.Point(180, 74);
            this.txtTenBenhPhu.Name = "txtTenBenhPhu";
            this.txtTenBenhPhu.Size = new System.Drawing.Size(162, 21);
            this.txtTenBenhPhu.TabIndex = 549;
            this.txtTenBenhPhu.TabStop = false;
            // 
            // cmdSearchBenhPhu
            // 
            this.cmdSearchBenhPhu.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdSearchBenhPhu.Image = ((System.Drawing.Image)(resources.GetObject("cmdSearchBenhPhu.Image")));
            this.cmdSearchBenhPhu.Location = new System.Drawing.Point(344, 73);
            this.cmdSearchBenhPhu.Name = "cmdSearchBenhPhu";
            this.cmdSearchBenhPhu.Size = new System.Drawing.Size(29, 21);
            this.cmdSearchBenhPhu.TabIndex = 557;
            this.cmdSearchBenhPhu.TabStop = false;
            // 
            // txtChanDoan
            // 
            this.txtChanDoan._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtChanDoan._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtChanDoan.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtChanDoan.AutoCompleteList")));
            this.txtChanDoan.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtChanDoan.CaseSensitive = false;
            this.txtChanDoan.CompareNoID = true;
            this.txtChanDoan.DefaultCode = "-1";
            this.txtChanDoan.DefaultID = "-1";
            this.txtChanDoan.Drug_ID = null;
            this.txtChanDoan.ExtraWidth = 0;
            this.txtChanDoan.FillValueAfterSelect = false;
            this.txtChanDoan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtChanDoan.LOAI_DANHMUC = "CHANDOAN";
            this.txtChanDoan.Location = new System.Drawing.Point(110, 25);
            this.txtChanDoan.MaxHeight = -1;
            this.txtChanDoan.MinTypedCharacters = 2;
            this.txtChanDoan.MyCode = "-1";
            this.txtChanDoan.MyID = "-1";
            this.txtChanDoan.Name = "txtChanDoan";
            this.txtChanDoan.RaiseEvent = false;
            this.txtChanDoan.RaiseEventEnter = false;
            this.txtChanDoan.RaiseEventEnterWhenEmpty = false;
            this.txtChanDoan.SelectedIndex = -1;
            this.txtChanDoan.Size = new System.Drawing.Size(263, 21);
            this.txtChanDoan.splitChar = '@';
            this.txtChanDoan.splitCharIDAndCode = '#';
            this.txtChanDoan.TabIndex = 21;
            this.txtChanDoan.TakeCode = false;
            this.txtChanDoan.txtMyCode = null;
            this.txtChanDoan.txtMyCode_Edit = null;
            this.txtChanDoan.txtMyID = null;
            this.txtChanDoan.txtMyID_Edit = null;
            this.txtChanDoan.txtMyName = null;
            this.txtChanDoan.txtMyName_Edit = null;
            this.txtChanDoan.txtNext = null;
            // 
            // lblphantramdauthe
            // 
            this.lblphantramdauthe.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblphantramdauthe.Location = new System.Drawing.Point(178, 210);
            this.lblphantramdauthe.Name = "lblphantramdauthe";
            this.lblphantramdauthe.Size = new System.Drawing.Size(122, 15);
            this.lblphantramdauthe.TabIndex = 564;
            this.lblphantramdauthe.Text = "P.trăm  theo đầu thẻ";
            this.lblphantramdauthe.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label33
            // 
            this.label33.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label33.Location = new System.Drawing.Point(10, 211);
            this.label33.Name = "label33";
            this.label33.Size = new System.Drawing.Size(95, 15);
            this.label33.TabIndex = 563;
            this.label33.Text = "P.trăm BHYT";
            this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtptramdauthe
            // 
            this.txtptramdauthe.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtptramdauthe.Location = new System.Drawing.Point(302, 207);
            this.txtptramdauthe.Name = "txtptramdauthe";
            this.txtptramdauthe.ReadOnly = true;
            this.txtptramdauthe.Size = new System.Drawing.Size(62, 21);
            this.txtptramdauthe.TabIndex = 562;
            this.txtptramdauthe.TabStop = false;
            this.txtptramdauthe.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // label24
            // 
            this.label24.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label24.Location = new System.Drawing.Point(7, 187);
            this.label24.Name = "label24";
            this.label24.Size = new System.Drawing.Size(95, 15);
            this.label24.TabIndex = 547;
            this.label24.Text = "Địa chỉ BHYT";
            this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtdiachiBhyt
            // 
            this.txtdiachiBhyt.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtdiachiBhyt.Location = new System.Drawing.Point(107, 185);
            this.txtdiachiBhyt.Name = "txtdiachiBhyt";
            this.txtdiachiBhyt.ReadOnly = true;
            this.txtdiachiBhyt.Size = new System.Drawing.Size(256, 21);
            this.txtdiachiBhyt.TabIndex = 546;
            this.txtdiachiBhyt.TabStop = false;
            // 
            // txtPtramBHYT
            // 
            this.txtPtramBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPtramBHYT.Location = new System.Drawing.Point(107, 207);
            this.txtPtramBHYT.Name = "txtPtramBHYT";
            this.txtPtramBHYT.ReadOnly = true;
            this.txtPtramBHYT.Size = new System.Drawing.Size(70, 21);
            this.txtPtramBHYT.TabIndex = 538;
            this.txtPtramBHYT.TabStop = false;
            this.txtPtramBHYT.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // vbLine1
            // 
            this.vbLine1._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine1.BackColor = System.Drawing.Color.Transparent;
            this.vbLine1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine1.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine1.Location = new System.Drawing.Point(4, 4);
            this.vbLine1.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine1.Name = "vbLine1";
            this.vbLine1.Size = new System.Drawing.Size(424, 22);
            this.vbLine1.TabIndex = 535;
            this.vbLine1.TabStop = false;
            this.vbLine1.YourText = "Thông tin bệnh nhân";
            // 
            // cmdDonThuocDaKe
            // 
            this.cmdDonThuocDaKe.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdDonThuocDaKe.Image = ((System.Drawing.Image)(resources.GetObject("cmdDonThuocDaKe.Image")));
            this.cmdDonThuocDaKe.Location = new System.Drawing.Point(348, 646);
            this.cmdDonThuocDaKe.Name = "cmdDonThuocDaKe";
            this.cmdDonThuocDaKe.Size = new System.Drawing.Size(10, 29);
            this.cmdDonThuocDaKe.TabIndex = 505;
            this.cmdDonThuocDaKe.TabStop = false;
            this.cmdDonThuocDaKe.Text = "&Đơn đã kê";
            this.cmdDonThuocDaKe.Visible = false;
            // 
            // txtYearBirth
            // 
            this.txtYearBirth.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtYearBirth.Location = new System.Drawing.Point(272, 80);
            this.txtYearBirth.Name = "txtYearBirth";
            this.txtYearBirth.ReadOnly = true;
            this.txtYearBirth.Size = new System.Drawing.Size(91, 21);
            this.txtYearBirth.TabIndex = 5;
            this.txtYearBirth.TabStop = false;
            // 
            // cmdMauDonThuoc
            // 
            this.cmdMauDonThuoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdMauDonThuoc.Image = ((System.Drawing.Image)(resources.GetObject("cmdMauDonThuoc.Image")));
            this.cmdMauDonThuoc.Location = new System.Drawing.Point(348, 638);
            this.cmdMauDonThuoc.Name = "cmdMauDonThuoc";
            this.cmdMauDonThuoc.Size = new System.Drawing.Size(10, 29);
            this.cmdMauDonThuoc.TabIndex = 504;
            this.cmdMauDonThuoc.TabStop = false;
            this.cmdMauDonThuoc.Text = "&Mẫu đơn thuốc";
            this.cmdMauDonThuoc.Visible = false;
            // 
            // 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.Black;
            this.label28.Location = new System.Drawing.Point(7, 35);
            this.label28.Name = "label28";
            this.label28.Size = new System.Drawing.Size(95, 15);
            this.label28.TabIndex = 50;
            this.label28.Text = "Mã BN :";
            this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // chkNgayTaiKham
            // 
            this.chkNgayTaiKham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkNgayTaiKham.Location = new System.Drawing.Point(7, 380);
            this.chkNgayTaiKham.Name = "chkNgayTaiKham";
            this.chkNgayTaiKham.Size = new System.Drawing.Size(95, 23);
            this.chkNgayTaiKham.TabIndex = 19;
            this.chkNgayTaiKham.Text = "Tái khám";
            // 
            // chkAdditional
            // 
            this.chkAdditional.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkAdditional.ForeColor = System.Drawing.Color.Navy;
            this.chkAdditional.Location = new System.Drawing.Point(240, 239);
            this.chkAdditional.Name = "chkAdditional";
            this.chkAdditional.Size = new System.Drawing.Size(128, 23);
            this.chkAdditional.TabIndex = 555;
            this.chkAdditional.Text = "Đơn bổ sung?";
            // 
            // barcode
            // 
            this.barcode.BackColor = System.Drawing.Color.White;
            this.barcode.BarColor = System.Drawing.Color.Black;
            this.barcode.BarRatio = 2F;
            this.barcode.Data = "00000000000000000";
            this.barcode.DataExtension = null;
            this.barcode.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.barcode.Location = new System.Drawing.Point(381, 600);
            this.barcode.Name = "barcode";
            this.barcode.Size = new System.Drawing.Size(210, 69);
            this.barcode.Symbology = Mabry.Windows.Forms.Barcode.Barcode.BarcodeSymbologies.Code128;
            this.barcode.TabIndex = 80;
            this.barcode.TabStop = false;
            this.barcode.Text = "00000000";
            this.barcode.Visible = false;
            // 
            // dtNgayKhamLai
            // 
            this.dtNgayKhamLai.CustomFormat = "dd/MM/yyyy";
            this.dtNgayKhamLai.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtNgayKhamLai.DropDownCalendar.Name = "";
            this.dtNgayKhamLai.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtNgayKhamLai.Location = new System.Drawing.Point(106, 382);
            this.dtNgayKhamLai.Name = "dtNgayKhamLai";
            this.dtNgayKhamLai.Size = new System.Drawing.Size(139, 21);
            this.dtNgayKhamLai.TabIndex = 20;
            this.dtNgayKhamLai.Value = new System.DateTime(2013, 10, 7, 0, 0, 0, 0);
            // 
            // 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(7, 109);
            this.label27.Name = "label27";
            this.label27.Size = new System.Drawing.Size(95, 15);
            this.label27.TabIndex = 52;
            this.label27.Text = "Địa chỉ";
            this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtKhamLai
            // 
            this.txtKhamLai.BackColor = System.Drawing.Color.White;
            this.txtKhamLai.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtKhamLai.ForeColor = System.Drawing.Color.Black;
            this.txtKhamLai.Location = new System.Drawing.Point(106, 355);
            this.txtKhamLai.Name = "txtKhamLai";
            this.txtKhamLai.Size = new System.Drawing.Size(259, 21);
            this.txtKhamLai.TabIndex = 18;
            // 
            // txtSex
            // 
            this.txtSex.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSex.Location = new System.Drawing.Point(107, 81);
            this.txtSex.Name = "txtSex";
            this.txtSex.ReadOnly = true;
            this.txtSex.Size = new System.Drawing.Size(70, 21);
            this.txtSex.TabIndex = 4;
            this.txtSex.TabStop = false;
            // 
            // label7
            // 
            this.label7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label7.ForeColor = System.Drawing.Color.Black;
            this.label7.Location = new System.Drawing.Point(7, 355);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(95, 21);
            this.label7.TabIndex = 76;
            this.label7.Text = "Khám lại :";
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label20
            // 
            this.label20.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label20.Location = new System.Drawing.Point(7, 83);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(95, 15);
            this.label20.TabIndex = 56;
            this.label20.Text = "Giới tính";
            this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtLoiDanBS
            // 
            this.txtLoiDanBS.BackColor = System.Drawing.Color.White;
            this.txtLoiDanBS.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtLoiDanBS.ForeColor = System.Drawing.Color.Black;
            this.txtLoiDanBS.Location = new System.Drawing.Point(106, 326);
            this.txtLoiDanBS.Name = "txtLoiDanBS";
            this.txtLoiDanBS.Size = new System.Drawing.Size(259, 21);
            this.txtLoiDanBS.TabIndex = 17;
            // 
            // txtPatientName
            // 
            this.txtPatientName.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPatientName.Location = new System.Drawing.Point(107, 57);
            this.txtPatientName.Name = "txtPatientName";
            this.txtPatientName.ReadOnly = true;
            this.txtPatientName.Size = new System.Drawing.Size(257, 21);
            this.txtPatientName.TabIndex = 3;
            this.txtPatientName.TabStop = false;
            // 
            // dtNgayIn
            // 
            // 
            // 
            // 
            this.dtNgayIn.DropDownCalendar.Name = "";
            this.dtNgayIn.Location = new System.Drawing.Point(119, 641);
            this.dtNgayIn.Name = "dtNgayIn";
            this.dtNgayIn.ShowUpDown = true;
            this.dtNgayIn.Size = new System.Drawing.Size(123, 21);
            this.dtNgayIn.TabIndex = 16;
            this.dtNgayIn.TabStop = false;
            this.dtNgayIn.Value = new System.DateTime(2013, 10, 7, 0, 0, 0, 0);
            // 
            // 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(7, 302);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(95, 21);
            this.label6.TabIndex = 52;
            this.label6.Text = "Bs kê đơn :";
            this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label23
            // 
            this.label23.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label23.Location = new System.Drawing.Point(183, 83);
            this.label23.Name = "label23";
            this.label23.Size = new System.Drawing.Size(83, 15);
            this.label23.TabIndex = 58;
            this.label23.Text = "Năm sinh:";
            this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtObjectName
            // 
            this.txtObjectName.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtObjectName.Location = new System.Drawing.Point(107, 131);
            this.txtObjectName.Name = "txtObjectName";
            this.txtObjectName.ReadOnly = true;
            this.txtObjectName.Size = new System.Drawing.Size(256, 21);
            this.txtObjectName.TabIndex = 7;
            this.txtObjectName.TabStop = false;
            // 
            // 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.Black;
            this.label5.Location = new System.Drawing.Point(227, 275);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(39, 21);
            this.label5.TabIndex = 50;
            this.label5.Text = "ID";
            // 
            // txtSoDT
            // 
            this.txtSoDT.BackColor = System.Drawing.Color.White;
            this.txtSoDT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSoDT.Location = new System.Drawing.Point(321, 185);
            this.txtSoDT.MaxLength = 3;
            this.txtSoDT.Name = "txtSoDT";
            this.txtSoDT.ReadOnly = true;
            this.txtSoDT.Size = new System.Drawing.Size(37, 21);
            this.txtSoDT.TabIndex = 6;
            this.txtSoDT.TabStop = false;
            this.txtSoDT.Visible = false;
            // 
            // txtPres_ID
            // 
            this.txtPres_ID.Enabled = false;
            this.txtPres_ID.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPres_ID.Location = new System.Drawing.Point(272, 275);
            this.txtPres_ID.Name = "txtPres_ID";
            this.txtPres_ID.Size = new System.Drawing.Size(93, 21);
            this.txtPres_ID.TabIndex = 1;
            // 
            // txtAddress
            // 
            this.txtAddress.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtAddress.Location = new System.Drawing.Point(107, 107);
            this.txtAddress.Name = "txtAddress";
            this.txtAddress.ReadOnly = true;
            this.txtAddress.Size = new System.Drawing.Size(256, 21);
            this.txtAddress.TabIndex = 8;
            this.txtAddress.TabStop = false;
            // 
            // 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.Black;
            this.label2.Location = new System.Drawing.Point(7, 326);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(95, 21);
            this.label2.TabIndex = 48;
            this.label2.Text = "Lời dặn BS :";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label26
            // 
            this.label26.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label26.Location = new System.Drawing.Point(7, 160);
            this.label26.Name = "label26";
            this.label26.Size = new System.Drawing.Size(95, 15);
            this.label26.TabIndex = 60;
            this.label26.Text = "Số BHYT:";
            this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label25
            // 
            this.label25.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label25.ForeColor = System.Drawing.Color.Red;
            this.label25.Location = new System.Drawing.Point(7, 273);
            this.label25.Name = "label25";
            this.label25.Size = new System.Drawing.Size(95, 23);
            this.label25.TabIndex = 47;
            this.label25.Text = "Ngày kê đơn:";
            this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtpCreatedDate
            // 
            this.dtpCreatedDate.CustomFormat = "dd/MM/yyyy";
            this.dtpCreatedDate.Enabled = false;
            this.dtpCreatedDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtpCreatedDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtpCreatedDate.Location = new System.Drawing.Point(107, 274);
            this.dtpCreatedDate.Name = "dtpCreatedDate";
            this.dtpCreatedDate.ShowUpDown = true;
            this.dtpCreatedDate.Size = new System.Drawing.Size(114, 21);
            this.dtpCreatedDate.TabIndex = 15;
            // 
            // txtSoBHYT
            // 
            this.txtSoBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSoBHYT.Location = new System.Drawing.Point(107, 158);
            this.txtSoBHYT.Name = "txtSoBHYT";
            this.txtSoBHYT.ReadOnly = true;
            this.txtSoBHYT.Size = new System.Drawing.Size(256, 21);
            this.txtSoBHYT.TabIndex = 2;
            this.txtSoBHYT.TabStop = false;
            // 
            // 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.Black;
            this.label1.Location = new System.Drawing.Point(183, 35);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(83, 15);
            this.label1.TabIndex = 70;
            this.label1.Text = "Mã lần khám :";
            this.label1.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(7, 134);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(95, 15);
            this.label3.TabIndex = 64;
            this.label3.Text = "Đối tượng:";
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtPatientCode
            // 
            this.txtPatientCode.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPatientCode.Location = new System.Drawing.Point(272, 31);
            this.txtPatientCode.Name = "txtPatientCode";
            this.txtPatientCode.ReadOnly = true;
            this.txtPatientCode.Size = new System.Drawing.Size(93, 21);
            this.txtPatientCode.TabIndex = 1;
            this.txtPatientCode.TabStop = false;
            // 
            // label4
            // 
            this.label4.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label4.Location = new System.Drawing.Point(7, 61);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(95, 15);
            this.label4.TabIndex = 66;
            this.label4.Text = "Tên Bệnh nhân:";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtPatientID
            // 
            this.txtPatientID.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPatientID.Location = new System.Drawing.Point(107, 31);
            this.txtPatientID.Name = "txtPatientID";
            this.txtPatientID.ReadOnly = true;
            this.txtPatientID.Size = new System.Drawing.Size(70, 21);
            this.txtPatientID.TabIndex = 0;
            this.txtPatientID.TabStop = false;
            // 
            // label30
            // 
            this.label30.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label30.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label30.Location = new System.Drawing.Point(23, 642);
            this.label30.Name = "label30";
            this.label30.Size = new System.Drawing.Size(95, 21);
            this.label30.TabIndex = 534;
            this.label30.Text = "Ngày in";
            this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // vbLine2
            // 
            this.vbLine2._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine2.BackColor = System.Drawing.Color.Transparent;
            this.vbLine2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine2.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine2.Location = new System.Drawing.Point(4, 240);
            this.vbLine2.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine2.Name = "vbLine2";
            this.vbLine2.Size = new System.Drawing.Size(359, 22);
            this.vbLine2.TabIndex = 536;
            this.vbLine2.TabStop = false;
            this.vbLine2.YourText = "Thông tin đơn vắc xin";
            // 
            // label29
            // 
            this.label29.AutoSize = true;
            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(269, 239);
            this.label29.Name = "label29";
            this.label29.Size = new System.Drawing.Size(46, 15);
            this.label29.TabIndex = 62;
            this.label29.Text = "Số  ĐT:";
            this.label29.Visible = false;
            // 
            // uiTabPage2
            // 
            this.uiTabPage2.Controls.Add(this.pnlPrint);
            this.uiTabPage2.Location = new System.Drawing.Point(1, 23);
            this.uiTabPage2.Name = "uiTabPage2";
            this.uiTabPage2.Size = new System.Drawing.Size(1004, 681);
            this.uiTabPage2.TabStop = true;
            this.uiTabPage2.Text = "Cấu hình";
            // 
            // pnlPrint
            // 
            this.pnlPrint.Controls.Add(this.chkAskbeforeDeletedrug);
            this.pnlPrint.Controls.Add(this.vbLine5);
            this.pnlPrint.Controls.Add(this.cboLaserPrinters);
            this.pnlPrint.Controls.Add(this.chkSaveAndPrint);
            this.pnlPrint.Controls.Add(this.cboPrintPreview);
            this.pnlPrint.Controls.Add(this.label22);
            this.pnlPrint.Controls.Add(this.cboA4);
            this.pnlPrint.Controls.Add(this.label19);
            this.pnlPrint.Dock = System.Windows.Forms.DockStyle.Top;
            this.pnlPrint.Location = new System.Drawing.Point(0, 0);
            this.pnlPrint.Name = "pnlPrint";
            this.pnlPrint.Size = new System.Drawing.Size(1004, 239);
            this.pnlPrint.TabIndex = 546;
            // 
            // chkAskbeforeDeletedrug
            // 
            this.chkAskbeforeDeletedrug.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkAskbeforeDeletedrug.Location = new System.Drawing.Point(91, 86);
            this.chkAskbeforeDeletedrug.Name = "chkAskbeforeDeletedrug";
            this.chkAskbeforeDeletedrug.Size = new System.Drawing.Size(266, 23);
            this.chkAskbeforeDeletedrug.TabIndex = 545;
            this.chkAskbeforeDeletedrug.TabStop = false;
            this.chkAskbeforeDeletedrug.Text = "Luôn hỏi người dùng khi xóa thuốc?";
            this.chkAskbeforeDeletedrug.Visible = false;
            // 
            // vbLine5
            // 
            this.vbLine5._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine5.BackColor = System.Drawing.Color.Transparent;
            this.vbLine5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine5.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine5.Location = new System.Drawing.Point(6, 4);
            this.vbLine5.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine5.Name = "vbLine5";
            this.vbLine5.Size = new System.Drawing.Size(361, 22);
            this.vbLine5.TabIndex = 544;
            this.vbLine5.TabStop = false;
            this.vbLine5.YourText = "Cấu hình in đơn thuốc";
            // 
            // cboLaserPrinters
            // 
            this.cboLaserPrinters.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboLaserPrinters.FormattingEnabled = true;
            this.cboLaserPrinters.Location = new System.Drawing.Point(91, 30);
            this.cboLaserPrinters.Name = "cboLaserPrinters";
            this.cboLaserPrinters.Size = new System.Drawing.Size(266, 23);
            this.cboLaserPrinters.TabIndex = 542;
            // 
            // chkSaveAndPrint
            // 
            this.chkSaveAndPrint.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkSaveAndPrint.Location = new System.Drawing.Point(91, 126);
            this.chkSaveAndPrint.Name = "chkSaveAndPrint";
            this.chkSaveAndPrint.Size = new System.Drawing.Size(266, 18);
            this.chkSaveAndPrint.TabIndex = 451;
            this.chkSaveAndPrint.TabStop = false;
            this.chkSaveAndPrint.Text = "&In ngay sau khi thêm mới hoặc cập nhật";
            this.chkSaveAndPrint.Visible = 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);
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "Xem trước khi in";
            uiComboBoxItem1.Value = "0";
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "In ngay";
            uiComboBoxItem2.Value = "1";
            this.cboPrintPreview.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2});
            this.cboPrintPreview.Location = new System.Drawing.Point(148, 57);
            this.cboPrintPreview.Name = "cboPrintPreview";
            this.cboPrintPreview.Size = new System.Drawing.Size(210, 21);
            this.cboPrintPreview.TabIndex = 541;
            this.cboPrintPreview.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
            // 
            // label22
            // 
            this.label22.Font = new System.Drawing.Font("Arial", 9F);
            this.label22.Location = new System.Drawing.Point(11, 57);
            this.label22.Name = "label22";
            this.label22.Size = new System.Drawing.Size(74, 21);
            this.label22.TabIndex = 539;
            this.label22.Text = "Khổ giấy";
            this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // 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);
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "A4";
            uiComboBoxItem3.Value = "A4";
            uiComboBoxItem4.FormatStyle.Alpha = 0;
            uiComboBoxItem4.IsSeparator = false;
            uiComboBoxItem4.Text = "A5";
            uiComboBoxItem4.Value = "A5";
            this.cboA4.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem3,
            uiComboBoxItem4});
            this.cboA4.Location = new System.Drawing.Point(91, 57);
            this.cboA4.Name = "cboA4";
            this.cboA4.Size = new System.Drawing.Size(55, 21);
            this.cboA4.TabIndex = 540;
            this.cboA4.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
            // 
            // label19
            // 
            this.label19.AutoSize = true;
            this.label19.Location = new System.Drawing.Point(3, 34);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(76, 15);
            this.label19.TabIndex = 543;
            this.label19.Text = "Chọn máy in";
            // 
            // errorProvider1
            // 
            this.errorProvider1.ContainerControl = this;
            // 
            // txtNguoitiem
            // 
            this.txtNguoitiem._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtNguoitiem._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNguoitiem._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtNguoitiem.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtNguoitiem.AutoCompleteList")));
            this.txtNguoitiem.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNguoitiem.CaseSensitive = false;
            this.txtNguoitiem.CompareNoID = true;
            this.txtNguoitiem.DefaultCode = "-1";
            this.txtNguoitiem.DefaultID = "-1";
            this.txtNguoitiem.Drug_ID = null;
            this.txtNguoitiem.ExtraWidth = 0;
            this.txtNguoitiem.FillValueAfterSelect = false;
            this.txtNguoitiem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNguoitiem.Location = new System.Drawing.Point(93, 81);
            this.txtNguoitiem.MaxHeight = 289;
            this.txtNguoitiem.MinTypedCharacters = 2;
            this.txtNguoitiem.MyCode = "-1";
            this.txtNguoitiem.MyID = "-1";
            this.txtNguoitiem.MyText = "";
            this.txtNguoitiem.Name = "txtNguoitiem";
            this.txtNguoitiem.RaiseEvent = true;
            this.txtNguoitiem.RaiseEventEnter = true;
            this.txtNguoitiem.RaiseEventEnterWhenEmpty = true;
            this.txtNguoitiem.SelectedIndex = -1;
            this.txtNguoitiem.Size = new System.Drawing.Size(282, 21);
            this.txtNguoitiem.splitChar = '@';
            this.txtNguoitiem.splitCharIDAndCode = '#';
            this.txtNguoitiem.TabIndex = 4;
            this.txtNguoitiem.TakeCode = false;
            this.txtNguoitiem.txtMyCode = null;
            this.txtNguoitiem.txtMyCode_Edit = null;
            this.txtNguoitiem.txtMyID = null;
            this.txtNguoitiem.txtMyID_Edit = null;
            this.txtNguoitiem.txtMyName = null;
            this.txtNguoitiem.txtMyName_Edit = null;
            this.txtNguoitiem.txtNext = null;
            // 
            // cmdKecongtiem
            // 
            this.cmdKecongtiem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdKecongtiem.Image = ((System.Drawing.Image)(resources.GetObject("cmdKecongtiem.Image")));
            this.cmdKecongtiem.ImageSize = new System.Drawing.Size(30, 30);
            this.cmdKecongtiem.ImageVerticalAlignment = Janus.Windows.EditControls.ImageVerticalAlignment.Near;
            this.cmdKecongtiem.Location = new System.Drawing.Point(3, 6);
            this.cmdKecongtiem.Name = "cmdKecongtiem";
            this.cmdKecongtiem.Size = new System.Drawing.Size(129, 29);
            this.cmdKecongtiem.TabIndex = 590;
            this.cmdKecongtiem.Text = "&Kê công tiêm";
            // 
            // frm_KCB_KeVacxin_Tiemchung
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
            this.ClientSize = new System.Drawing.Size(1008, 730);
            this.Controls.Add(this.tabKeDonThuoc);
            this.Controls.Add(this.StatusBar);
            this.Controls.Add(this.cmdCauHinh);
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frm_KCB_KeVacxin_Tiemchung";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Kê đơn thuốc";
            this.contextMenuStrip1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdPresDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tabKeDonThuoc)).EndInit();
            this.tabKeDonThuoc.ResumeLayout(false);
            this.uiTabPage1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.panel4.ResumeLayout(false);
            this.pnlKedon.ResumeLayout(false);
            this.pnlKedon.PerformLayout();
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.panel3.ResumeLayout(false);
            this.panel3.PerformLayout();
            this.pnlChandoanNgoaitru.ResumeLayout(false);
            this.pnlChandoanNgoaitru.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grd_ICD)).EndInit();
            this.uiTabPage2.ResumeLayout(false);
            this.pnlPrint.ResumeLayout(false);
            this.pnlPrint.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
            this.ResumeLayout(false);

        }
Example #25
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem3 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem4 = new Janus.Windows.EditControls.UIComboBoxItem();
     this.ribbonStatusBar1 = new Janus.Windows.Ribbon.RibbonStatusBar();
     this.statusBarPanel1  = new Janus.Windows.Ribbon.StatusBarPanel();
     this.statusBarPanel2  = new Janus.Windows.Ribbon.StatusBarPanel();
     this.splitContainer1  = new System.Windows.Forms.SplitContainer();
     this.txtSoDT          = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.label9           = new System.Windows.Forms.Label();
     this.txtnoidkkcb      = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label8           = new System.Windows.Forms.Label();
     this.txtnoidongtruso  = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtmathe         = new Janus.Windows.GridEX.EditControls.EditBox();
     this.cboPatientSex    = new Janus.Windows.EditControls.UIComboBox();
     this.label11          = new System.Windows.Forms.Label();
     this.txtNgoaitru      = new Janus.Windows.GridEX.EditControls.EditBox();
     this.lblngayttoan     = new System.Windows.Forms.Label();
     this.lblngayravien    = new System.Windows.Forms.Label();
     this.lblngaynhapvien  = new System.Windows.Forms.Label();
     this.lblngaytiepdon   = new System.Windows.Forms.Label();
     this.label7           = new System.Windows.Forms.Label();
     this.txtDoiTuong      = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label1           = new System.Windows.Forms.Label();
     this.dtpNgayTToan     = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtpNgayRaVien    = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtpNgayNhapVien  = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtpNgayTiepDon   = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.txtDiaChi        = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtNamSinh       = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtHoTen         = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label6           = new System.Windows.Forms.Label();
     this.label5           = new System.Windows.Forms.Label();
     this.label4           = new System.Windows.Forms.Label();
     this.label3           = new System.Windows.Forms.Label();
     this.label2           = new System.Windows.Forms.Label();
     this.cmdExit          = new Janus.Windows.EditControls.UIButton();
     this.cmdUpdate        = new Janus.Windows.EditControls.UIButton();
     this.txtidbenhnhan    = new Janus.Windows.GridEX.EditControls.EditBox();
     this.statusBarPanel3  = new Janus.Windows.Ribbon.StatusBarPanel();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonStatusBar1
     //
     this.ribbonStatusBar1.Font      = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribbonStatusBar1.ImageSize = new System.Drawing.Size(16, 16);
     this.ribbonStatusBar1.LeftPanelCommands.AddRange(new Janus.Windows.Ribbon.CommandBase[] {
         this.statusBarPanel1,
         this.statusBarPanel2,
         this.statusBarPanel3
     });
     this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 343);
     this.ribbonStatusBar1.Name     = "ribbonStatusBar1";
     this.ribbonStatusBar1.Office2007CustomColor = System.Drawing.Color.Empty;
     this.ribbonStatusBar1.ShowToolTips          = false;
     this.ribbonStatusBar1.Size = new System.Drawing.Size(417, 23);
     //
     //
     //
     this.ribbonStatusBar1.SuperTipComponent.AutoPopDelay = 2000;
     this.ribbonStatusBar1.SuperTipComponent.ImageList    = null;
     this.ribbonStatusBar1.TabIndex = 0;
     this.ribbonStatusBar1.Text     = "ribbonStatusBar1";
     this.ribbonStatusBar1.UseCompatibleTextRendering = false;
     //
     // statusBarPanel1
     //
     this.statusBarPanel1.Key       = "statusBarPanel1";
     this.statusBarPanel1.Name      = "statusBarPanel1";
     this.statusBarPanel1.SizeStyle = Janus.Windows.Ribbon.CommandSizeStyle.Small;
     this.statusBarPanel1.Text      = "Ctrl+S: Cập nhật";
     this.statusBarPanel1.Width     = 85;
     //
     // statusBarPanel2
     //
     this.statusBarPanel2.Key       = "statusBarPanel2";
     this.statusBarPanel2.Name      = "statusBarPanel2";
     this.statusBarPanel2.SizeStyle = Janus.Windows.Ribbon.CommandSizeStyle.Small;
     this.statusBarPanel2.Text      = "Esc: Thoát";
     this.statusBarPanel2.Width     = 70;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location    = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name        = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.BackColor = System.Drawing.SystemColors.Control;
     this.splitContainer1.Panel1.Controls.Add(this.txtSoDT);
     this.splitContainer1.Panel1.Controls.Add(this.label9);
     this.splitContainer1.Panel1.Controls.Add(this.txtnoidkkcb);
     this.splitContainer1.Panel1.Controls.Add(this.label8);
     this.splitContainer1.Panel1.Controls.Add(this.txtnoidongtruso);
     this.splitContainer1.Panel1.Controls.Add(this.txtmathe);
     this.splitContainer1.Panel1.Controls.Add(this.cboPatientSex);
     this.splitContainer1.Panel1.Controls.Add(this.label11);
     this.splitContainer1.Panel1.Controls.Add(this.txtNgoaitru);
     this.splitContainer1.Panel1.Controls.Add(this.lblngayttoan);
     this.splitContainer1.Panel1.Controls.Add(this.lblngayravien);
     this.splitContainer1.Panel1.Controls.Add(this.lblngaynhapvien);
     this.splitContainer1.Panel1.Controls.Add(this.lblngaytiepdon);
     this.splitContainer1.Panel1.Controls.Add(this.label7);
     this.splitContainer1.Panel1.Controls.Add(this.txtDoiTuong);
     this.splitContainer1.Panel1.Controls.Add(this.label1);
     this.splitContainer1.Panel1.Controls.Add(this.dtpNgayTToan);
     this.splitContainer1.Panel1.Controls.Add(this.dtpNgayRaVien);
     this.splitContainer1.Panel1.Controls.Add(this.dtpNgayNhapVien);
     this.splitContainer1.Panel1.Controls.Add(this.dtpNgayTiepDon);
     this.splitContainer1.Panel1.Controls.Add(this.txtDiaChi);
     this.splitContainer1.Panel1.Controls.Add(this.txtNamSinh);
     this.splitContainer1.Panel1.Controls.Add(this.txtHoTen);
     this.splitContainer1.Panel1.Controls.Add(this.label6);
     this.splitContainer1.Panel1.Controls.Add(this.label5);
     this.splitContainer1.Panel1.Controls.Add(this.label4);
     this.splitContainer1.Panel1.Controls.Add(this.label3);
     this.splitContainer1.Panel1.Controls.Add(this.label2);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.BackColor = System.Drawing.SystemColors.Control;
     this.splitContainer1.Panel2.Controls.Add(this.txtidbenhnhan);
     this.splitContainer1.Panel2.Controls.Add(this.cmdExit);
     this.splitContainer1.Panel2.Controls.Add(this.cmdUpdate);
     this.splitContainer1.Size             = new System.Drawing.Size(417, 343);
     this.splitContainer1.SplitterDistance = 273;
     this.splitContainer1.SplitterWidth    = 5;
     this.splitContainer1.TabIndex         = 1;
     //
     // txtSoDT
     //
     this.txtSoDT.BackColor   = System.Drawing.Color.White;
     this.txtSoDT.Font        = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSoDT.Location    = new System.Drawing.Point(293, 38);
     this.txtSoDT.Name        = "txtSoDT";
     this.txtSoDT.Size        = new System.Drawing.Size(111, 23);
     this.txtSoDT.TabIndex    = 411;
     this.txtSoDT.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
     //
     // label9
     //
     this.label9.Font      = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location  = new System.Drawing.Point(189, 39);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(98, 21);
     this.label9.TabIndex  = 412;
     this.label9.Text      = "Điện thoại:";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtnoidkkcb
     //
     this.txtnoidkkcb.Location      = new System.Drawing.Point(346, 119);
     this.txtnoidkkcb.Name          = "txtnoidkkcb";
     this.txtnoidkkcb.Size          = new System.Drawing.Size(58, 23);
     this.txtnoidkkcb.TabIndex      = 410;
     this.txtnoidkkcb.TabStop       = false;
     this.txtnoidkkcb.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtnoidkkcb.VisualStyle   = Janus.Windows.GridEX.VisualStyle.Office2003;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(18, 122);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(55, 16);
     this.label8.TabIndex = 409;
     this.label8.Text     = "Mã thẻ:";
     //
     // txtnoidongtruso
     //
     this.txtnoidongtruso.Location      = new System.Drawing.Point(293, 119);
     this.txtnoidongtruso.Name          = "txtnoidongtruso";
     this.txtnoidongtruso.Size          = new System.Drawing.Size(47, 23);
     this.txtnoidongtruso.TabIndex      = 408;
     this.txtnoidongtruso.TabStop       = false;
     this.txtnoidongtruso.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtnoidongtruso.VisualStyle   = Janus.Windows.GridEX.VisualStyle.Office2003;
     //
     // txtmathe
     //
     this.txtmathe.Location    = new System.Drawing.Point(96, 119);
     this.txtmathe.Name        = "txtmathe";
     this.txtmathe.Size        = new System.Drawing.Size(191, 23);
     this.txtmathe.TabIndex    = 407;
     this.txtmathe.TabStop     = false;
     this.txtmathe.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
     //
     // cboPatientSex
     //
     this.cboPatientSex.ComboStyle     = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.cboPatientSex.Font           = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator       = false;
     uiComboBoxItem3.Text              = "Nam";
     uiComboBoxItem3.Value             = 0;
     uiComboBoxItem4.FormatStyle.Alpha = 0;
     uiComboBoxItem4.IsSeparator       = false;
     uiComboBoxItem4.Text              = "Nữ";
     uiComboBoxItem4.Value             = 1;
     this.cboPatientSex.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem3,
         uiComboBoxItem4
     });
     this.cboPatientSex.Location    = new System.Drawing.Point(96, 38);
     this.cboPatientSex.Name        = "cboPatientSex";
     this.cboPatientSex.Size        = new System.Drawing.Size(83, 23);
     this.cboPatientSex.TabIndex    = 405;
     this.cboPatientSex.Text        = "Giới tính";
     this.cboPatientSex.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
     //
     // label11
     //
     this.label11.Font      = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.SystemColors.WindowText;
     this.label11.Location  = new System.Drawing.Point(18, 39);
     this.label11.Name      = "label11";
     this.label11.Size      = new System.Drawing.Size(90, 21);
     this.label11.TabIndex  = 406;
     this.label11.Text      = "Giới tính:";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtNgoaitru
     //
     this.txtNgoaitru.Location      = new System.Drawing.Point(293, 90);
     this.txtNgoaitru.Name          = "txtNgoaitru";
     this.txtNgoaitru.Size          = new System.Drawing.Size(111, 23);
     this.txtNgoaitru.TabIndex      = 19;
     this.txtNgoaitru.TabStop       = false;
     this.txtNgoaitru.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtNgoaitru.VisualStyle   = Janus.Windows.GridEX.VisualStyle.Office2003;
     //
     // lblngayttoan
     //
     this.lblngayttoan.ForeColor = System.Drawing.Color.Red;
     this.lblngayttoan.Location  = new System.Drawing.Point(291, 236);
     this.lblngayttoan.Name      = "lblngayttoan";
     this.lblngayttoan.Size      = new System.Drawing.Size(124, 20);
     this.lblngayttoan.TabIndex  = 18;
     //
     // lblngayravien
     //
     this.lblngayravien.ForeColor = System.Drawing.Color.Red;
     this.lblngayravien.Location  = new System.Drawing.Point(290, 206);
     this.lblngayravien.Name      = "lblngayravien";
     this.lblngayravien.Size      = new System.Drawing.Size(124, 20);
     this.lblngayravien.TabIndex  = 17;
     //
     // lblngaynhapvien
     //
     this.lblngaynhapvien.ForeColor = System.Drawing.Color.Red;
     this.lblngaynhapvien.Location  = new System.Drawing.Point(290, 181);
     this.lblngaynhapvien.Name      = "lblngaynhapvien";
     this.lblngaynhapvien.Size      = new System.Drawing.Size(124, 20);
     this.lblngaynhapvien.TabIndex  = 16;
     //
     // lblngaytiepdon
     //
     this.lblngaytiepdon.ForeColor = System.Drawing.Color.Red;
     this.lblngaytiepdon.Location  = new System.Drawing.Point(291, 152);
     this.lblngaytiepdon.Name      = "lblngaytiepdon";
     this.lblngaytiepdon.Size      = new System.Drawing.Size(124, 20);
     this.lblngaytiepdon.TabIndex  = 15;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(18, 95);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(75, 16);
     this.label7.TabIndex = 14;
     this.label7.Text     = "Đối tượng:";
     //
     // txtDoiTuong
     //
     this.txtDoiTuong.Location    = new System.Drawing.Point(96, 90);
     this.txtDoiTuong.Name        = "txtDoiTuong";
     this.txtDoiTuong.Size        = new System.Drawing.Size(191, 23);
     this.txtDoiTuong.TabIndex    = 13;
     this.txtDoiTuong.TabStop     = false;
     this.txtDoiTuong.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(18, 17);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(72, 16);
     this.label1.TabIndex = 7;
     this.label1.Text     = "Họ và tên:";
     //
     // dtpNgayTToan
     //
     this.dtpNgayTToan.CustomFormat = "dd/MM/yyyy HH:mm";
     this.dtpNgayTToan.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtpNgayTToan.DropDownCalendar.Name        = "";
     this.dtpNgayTToan.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     this.dtpNgayTToan.Font        = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtpNgayTToan.IsNullDate  = true;
     this.dtpNgayTToan.Location    = new System.Drawing.Point(125, 234);
     this.dtpNgayTToan.Name        = "dtpNgayTToan";
     this.dtpNgayTToan.ShowUpDown  = true;
     this.dtpNgayTToan.Size        = new System.Drawing.Size(162, 23);
     this.dtpNgayTToan.TabIndex    = 6;
     this.dtpNgayTToan.TabStop     = false;
     this.dtpNgayTToan.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     //
     // dtpNgayRaVien
     //
     this.dtpNgayRaVien.CustomFormat = "dd/MM/yyyy HH:mm";
     this.dtpNgayRaVien.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtpNgayRaVien.DropDownCalendar.Name        = "";
     this.dtpNgayRaVien.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     this.dtpNgayRaVien.Font        = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtpNgayRaVien.IsNullDate  = true;
     this.dtpNgayRaVien.Location    = new System.Drawing.Point(125, 205);
     this.dtpNgayRaVien.Name        = "dtpNgayRaVien";
     this.dtpNgayRaVien.ShowUpDown  = true;
     this.dtpNgayRaVien.Size        = new System.Drawing.Size(162, 23);
     this.dtpNgayRaVien.TabIndex    = 5;
     this.dtpNgayRaVien.TabStop     = false;
     this.dtpNgayRaVien.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     //
     // dtpNgayNhapVien
     //
     this.dtpNgayNhapVien.CustomFormat = "dd/MM/yyyy HH:mm";
     this.dtpNgayNhapVien.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtpNgayNhapVien.DropDownCalendar.Name        = "";
     this.dtpNgayNhapVien.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     this.dtpNgayNhapVien.Font        = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtpNgayNhapVien.IsNullDate  = true;
     this.dtpNgayNhapVien.Location    = new System.Drawing.Point(125, 178);
     this.dtpNgayNhapVien.Name        = "dtpNgayNhapVien";
     this.dtpNgayNhapVien.ShowUpDown  = true;
     this.dtpNgayNhapVien.Size        = new System.Drawing.Size(162, 23);
     this.dtpNgayNhapVien.TabIndex    = 4;
     this.dtpNgayNhapVien.TabStop     = false;
     this.dtpNgayNhapVien.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     //
     // dtpNgayTiepDon
     //
     this.dtpNgayTiepDon.CustomFormat = "dd/MM/yyyy HH:mm";
     this.dtpNgayTiepDon.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtpNgayTiepDon.DropDownCalendar.Name        = "";
     this.dtpNgayTiepDon.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     this.dtpNgayTiepDon.Font        = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtpNgayTiepDon.IsNullDate  = true;
     this.dtpNgayTiepDon.Location    = new System.Drawing.Point(125, 149);
     this.dtpNgayTiepDon.Name        = "dtpNgayTiepDon";
     this.dtpNgayTiepDon.ShowUpDown  = true;
     this.dtpNgayTiepDon.Size        = new System.Drawing.Size(162, 23);
     this.dtpNgayTiepDon.TabIndex    = 3;
     this.dtpNgayTiepDon.TabStop     = false;
     this.dtpNgayTiepDon.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     //
     // txtDiaChi
     //
     this.txtDiaChi.Location    = new System.Drawing.Point(96, 63);
     this.txtDiaChi.Name        = "txtDiaChi";
     this.txtDiaChi.Size        = new System.Drawing.Size(308, 23);
     this.txtDiaChi.TabIndex    = 2;
     this.txtDiaChi.TabStop     = false;
     this.txtDiaChi.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
     //
     // txtNamSinh
     //
     this.txtNamSinh.Location      = new System.Drawing.Point(327, 12);
     this.txtNamSinh.Name          = "txtNamSinh";
     this.txtNamSinh.Size          = new System.Drawing.Size(77, 23);
     this.txtNamSinh.TabIndex      = 1;
     this.txtNamSinh.TabStop       = false;
     this.txtNamSinh.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtNamSinh.VisualStyle   = Janus.Windows.GridEX.VisualStyle.Office2003;
     //
     // txtHoTen
     //
     this.txtHoTen.Font        = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtHoTen.Location    = new System.Drawing.Point(96, 12);
     this.txtHoTen.Name        = "txtHoTen";
     this.txtHoTen.Size        = new System.Drawing.Size(226, 23);
     this.txtHoTen.TabIndex    = 0;
     this.txtHoTen.TabStop     = false;
     this.txtHoTen.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(18, 239);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(80, 16);
     this.label6.TabIndex = 12;
     this.label6.Text     = "Ngày ttoán:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(18, 210);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(91, 16);
     this.label5.TabIndex = 11;
     this.label5.Text     = "Ngày ra viện:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(18, 181);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(110, 16);
     this.label4.TabIndex = 10;
     this.label4.Text     = "Ngày nhập viện:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(18, 152);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(99, 16);
     this.label3.TabIndex = 9;
     this.label3.Text     = "Ngày tiếp đón:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(18, 68);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(55, 16);
     this.label2.TabIndex = 8;
     this.label2.Text     = "Địa chỉ:";
     //
     // cmdExit
     //
     this.cmdExit.Location    = new System.Drawing.Point(223, 8);
     this.cmdExit.Name        = "cmdExit";
     this.cmdExit.Size        = new System.Drawing.Size(99, 32);
     this.cmdExit.TabIndex    = 1;
     this.cmdExit.Text        = "Thoát";
     this.cmdExit.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
     this.cmdExit.Click      += new System.EventHandler(this.cmdExit_Click);
     //
     // cmdUpdate
     //
     this.cmdUpdate.Location    = new System.Drawing.Point(108, 8);
     this.cmdUpdate.Name        = "cmdUpdate";
     this.cmdUpdate.Size        = new System.Drawing.Size(99, 32);
     this.cmdUpdate.TabIndex    = 0;
     this.cmdUpdate.Text        = "Cập nhật";
     this.cmdUpdate.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
     this.cmdUpdate.Click      += new System.EventHandler(this.cmdUpdate_Click);
     //
     // txtidbenhnhan
     //
     this.txtidbenhnhan.Location      = new System.Drawing.Point(3, 8);
     this.txtidbenhnhan.Name          = "txtidbenhnhan";
     this.txtidbenhnhan.Size          = new System.Drawing.Size(58, 23);
     this.txtidbenhnhan.TabIndex      = 413;
     this.txtidbenhnhan.TabStop       = false;
     this.txtidbenhnhan.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtidbenhnhan.Visible       = false;
     this.txtidbenhnhan.VisualStyle   = Janus.Windows.GridEX.VisualStyle.Office2003;
     //
     // statusBarPanel3
     //
     this.statusBarPanel3.Key       = "statusBarPanel3";
     this.statusBarPanel3.Name      = "statusBarPanel3";
     this.statusBarPanel3.SizeStyle = Janus.Windows.Ribbon.CommandSizeStyle.Small;
     this.statusBarPanel3.Text      = "Sửa thông tin thẻ sẽ không sửa được % thẻ";
     this.statusBarPanel3.Width     = 220;
     //
     // FrmUpdateNgaykham
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.Control;
     this.ClientSize          = new System.Drawing.Size(417, 366);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.ribbonStatusBar1);
     this.Font          = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.KeyPreview    = true;
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FrmUpdateNgaykham";
     this.ShowIcon      = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Thông tin khám";
     this.Load         += new System.EventHandler(this.FrmUpdateNgaykham_Load);
     this.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.FrmUpdateNgaykham_KeyDown);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.Panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.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_BAOCAO_SL_BN_NHANGUI_MAU));
            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.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.EditControls.UIComboBoxItem uiComboBoxItem10 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem11 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem12 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem13 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem14 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem15 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
            this.sysColor = new System.Windows.Forms.Panel();
            this.label7 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
            this.chkGionhan = new System.Windows.Forms.CheckBox();
            this.label13 = new System.Windows.Forms.Label();
            this.cboStatusPrint = new Janus.Windows.EditControls.UIComboBox();
            this.cmdInLai = new Janus.Windows.EditControls.UIButton();
            this.cmdThongKe = new Janus.Windows.EditControls.UIButton();
            this.cboNguoiNhan = new Janus.Windows.EditControls.UIComboBox();
            this.cboNguoiGui = new Janus.Windows.EditControls.UIComboBox();
            this.label12 = new System.Windows.Forms.Label();
            this.label11 = new System.Windows.Forms.Label();
            this.cboTrangthai = new Janus.Windows.EditControls.UIComboBox();
            this.label10 = new System.Windows.Forms.Label();
            this.label9 = new System.Windows.Forms.Label();
            this.dtCreateDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label6 = new System.Windows.Forms.Label();
            this.cboLoaiXN = new Janus.Windows.EditControls.UIComboBox();
            this.cmdThoat = new Janus.Windows.EditControls.UIButton();
            this.cmdPrint = new Janus.Windows.EditControls.UIButton();
            this.cboTrangThaiBN = new Janus.Windows.EditControls.UIComboBox();
            this.cboDepartment = new Janus.Windows.EditControls.UIComboBox();
            this.cboObjectType = new Janus.Windows.EditControls.UIComboBox();
            this.dtpToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.dtpFromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label5 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.uiGroupBox3 = new Janus.Windows.EditControls.UIGroupBox();
            this.grdList = new Janus.Windows.GridEX.GridEX();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
            this.uiGroupBox1.SuspendLayout();
            this.sysColor.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
            this.uiGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).BeginInit();
            this.uiGroupBox3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
            this.SuspendLayout();
            // 
            // uiGroupBox1
            // 
            this.uiGroupBox1.Controls.Add(this.sysColor);
            this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
            this.uiGroupBox1.Location = new System.Drawing.Point(0, 0);
            this.uiGroupBox1.Name = "uiGroupBox1";
            this.uiGroupBox1.Size = new System.Drawing.Size(1156, 82);
            this.uiGroupBox1.TabIndex = 0;
            // 
            // sysColor
            // 
            this.sysColor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.sysColor.Controls.Add(this.label7);
            this.sysColor.Controls.Add(this.label8);
            this.sysColor.Controls.Add(this.pictureBox1);
            this.sysColor.Dock = System.Windows.Forms.DockStyle.Top;
            this.sysColor.Location = new System.Drawing.Point(3, 8);
            this.sysColor.Name = "sysColor";
            this.sysColor.Size = new System.Drawing.Size(1150, 71);
            this.sysColor.TabIndex = 61;
            // 
            // 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.Location = new System.Drawing.Point(429, 42);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(250, 17);
            this.label7.TabIndex = 2;
            this.label7.Text = "Bạn có thể dùng phím tắt để thao tác )";
            // 
            // label8
            // 
            this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label8.Location = new System.Drawing.Point(157, 4);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(858, 54);
            this.label8.TabIndex = 1;
            this.label8.Text = "BÁO CÁO SỐ LƯỢNG BỆNH NHÂN NHẬN GỬI MẪU";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // pictureBox1
            // 
            this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
            this.pictureBox1.Location = new System.Drawing.Point(0, 0);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(62, 61);
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            // 
            // uiGroupBox2
            // 
            this.uiGroupBox2.Controls.Add(this.chkGionhan);
            this.uiGroupBox2.Controls.Add(this.label13);
            this.uiGroupBox2.Controls.Add(this.cboStatusPrint);
            this.uiGroupBox2.Controls.Add(this.cmdInLai);
            this.uiGroupBox2.Controls.Add(this.cmdThongKe);
            this.uiGroupBox2.Controls.Add(this.cboNguoiNhan);
            this.uiGroupBox2.Controls.Add(this.cboNguoiGui);
            this.uiGroupBox2.Controls.Add(this.label12);
            this.uiGroupBox2.Controls.Add(this.label11);
            this.uiGroupBox2.Controls.Add(this.cboTrangthai);
            this.uiGroupBox2.Controls.Add(this.label10);
            this.uiGroupBox2.Controls.Add(this.label9);
            this.uiGroupBox2.Controls.Add(this.dtCreateDate);
            this.uiGroupBox2.Controls.Add(this.label6);
            this.uiGroupBox2.Controls.Add(this.cboLoaiXN);
            this.uiGroupBox2.Controls.Add(this.cmdThoat);
            this.uiGroupBox2.Controls.Add(this.cmdPrint);
            this.uiGroupBox2.Controls.Add(this.cboTrangThaiBN);
            this.uiGroupBox2.Controls.Add(this.cboDepartment);
            this.uiGroupBox2.Controls.Add(this.cboObjectType);
            this.uiGroupBox2.Controls.Add(this.dtpToDate);
            this.uiGroupBox2.Controls.Add(this.dtpFromDate);
            this.uiGroupBox2.Controls.Add(this.label5);
            this.uiGroupBox2.Controls.Add(this.label4);
            this.uiGroupBox2.Controls.Add(this.label3);
            this.uiGroupBox2.Controls.Add(this.label2);
            this.uiGroupBox2.Controls.Add(this.label1);
            this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Left;
            this.uiGroupBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiGroupBox2.Image = ((System.Drawing.Image)(resources.GetObject("uiGroupBox2.Image")));
            this.uiGroupBox2.Location = new System.Drawing.Point(0, 82);
            this.uiGroupBox2.Name = "uiGroupBox2";
            this.uiGroupBox2.Size = new System.Drawing.Size(274, 521);
            this.uiGroupBox2.TabIndex = 2;
            this.uiGroupBox2.Text = "Điều kiện tìm kiếm";
            // 
            // chkGionhan
            // 
            this.chkGionhan.AutoSize = true;
            this.chkGionhan.Location = new System.Drawing.Point(108, 328);
            this.chkGionhan.Name = "chkGionhan";
            this.chkGionhan.Size = new System.Drawing.Size(135, 19);
            this.chkGionhan.TabIndex = 78;
            this.chkGionhan.Text = "Có giờ nhận & giờ gửi";
            this.chkGionhan.UseVisualStyleBackColor = true;
            // 
            // label13
            // 
            this.label13.AutoSize = true;
            this.label13.Location = new System.Drawing.Point(7, 279);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(75, 15);
            this.label13.TabIndex = 77;
            this.label13.Text = "Trạng thái in";
            // 
            // cboStatusPrint
            // 
            this.cboStatusPrint.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "Tất cả";
            uiComboBoxItem1.Value = -1;
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "Chưa In";
            uiComboBoxItem2.Value = 0;
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "Đã In";
            uiComboBoxItem3.Value = 1;
            this.cboStatusPrint.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3});
            this.cboStatusPrint.Location = new System.Drawing.Point(111, 275);
            this.cboStatusPrint.Name = "cboStatusPrint";
            this.cboStatusPrint.Size = new System.Drawing.Size(149, 21);
            this.cboStatusPrint.TabIndex = 76;
            // 
            // cmdInLai
            // 
            this.cmdInLai.Image = ((System.Drawing.Image)(resources.GetObject("cmdInLai.Image")));
            this.cmdInLai.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdInLai.Location = new System.Drawing.Point(38, 437);
            this.cmdInLai.Name = "cmdInLai";
            this.cmdInLai.Size = new System.Drawing.Size(200, 38);
            this.cmdInLai.TabIndex = 75;
            this.cmdInLai.Text = "In Lại Báo cáo (F5)";
            this.cmdInLai.Click += new System.EventHandler(this.cmdInLai_Click);
            // 
            // cmdThongKe
            // 
            this.cmdThongKe.Image = ((System.Drawing.Image)(resources.GetObject("cmdThongKe.Image")));
            this.cmdThongKe.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdThongKe.Location = new System.Drawing.Point(38, 349);
            this.cmdThongKe.Name = "cmdThongKe";
            this.cmdThongKe.Size = new System.Drawing.Size(200, 38);
            this.cmdThongKe.TabIndex = 74;
            this.cmdThongKe.Text = "Thống kê (F3)";
            this.cmdThongKe.Click += new System.EventHandler(this.cboThongKe_Click);
            // 
            // cboNguoiNhan
            // 
            this.cboNguoiNhan.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            uiComboBoxItem4.FormatStyle.Alpha = 0;
            uiComboBoxItem4.IsSeparator = false;
            uiComboBoxItem4.Text = "Tất cả";
            uiComboBoxItem4.Value = -1;
            uiComboBoxItem5.FormatStyle.Alpha = 0;
            uiComboBoxItem5.IsSeparator = false;
            uiComboBoxItem5.Text = "Chưa thực hiện";
            uiComboBoxItem5.Value = 0;
            uiComboBoxItem6.FormatStyle.Alpha = 0;
            uiComboBoxItem6.IsSeparator = false;
            uiComboBoxItem6.Text = "Đã thực hiện";
            uiComboBoxItem6.Value = 1;
            this.cboNguoiNhan.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem4,
            uiComboBoxItem5,
            uiComboBoxItem6});
            this.cboNguoiNhan.Location = new System.Drawing.Point(111, 248);
            this.cboNguoiNhan.Name = "cboNguoiNhan";
            this.cboNguoiNhan.Size = new System.Drawing.Size(149, 21);
            this.cboNguoiNhan.TabIndex = 73;
            // 
            // cboNguoiGui
            // 
            this.cboNguoiGui.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            uiComboBoxItem7.FormatStyle.Alpha = 0;
            uiComboBoxItem7.IsSeparator = false;
            uiComboBoxItem7.Text = "Tất cả";
            uiComboBoxItem7.Value = -1;
            uiComboBoxItem8.FormatStyle.Alpha = 0;
            uiComboBoxItem8.IsSeparator = false;
            uiComboBoxItem8.Text = "Chưa thực hiện";
            uiComboBoxItem8.Value = 0;
            uiComboBoxItem9.FormatStyle.Alpha = 0;
            uiComboBoxItem9.IsSeparator = false;
            uiComboBoxItem9.Text = "Đã thực hiện";
            uiComboBoxItem9.Value = 1;
            this.cboNguoiGui.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem7,
            uiComboBoxItem8,
            uiComboBoxItem9});
            this.cboNguoiGui.Location = new System.Drawing.Point(111, 218);
            this.cboNguoiGui.Name = "cboNguoiGui";
            this.cboNguoiGui.Size = new System.Drawing.Size(149, 21);
            this.cboNguoiGui.TabIndex = 72;
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.Location = new System.Drawing.Point(8, 252);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(71, 15);
            this.label12.TabIndex = 71;
            this.label12.Text = "Người nhận";
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.Location = new System.Drawing.Point(8, 222);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(60, 15);
            this.label11.TabIndex = 70;
            this.label11.Text = "Người gửi";
            // 
            // cboTrangthai
            // 
            this.cboTrangthai.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            uiComboBoxItem10.FormatStyle.Alpha = 0;
            uiComboBoxItem10.IsSeparator = false;
            uiComboBoxItem10.Text = "Tất cả";
            uiComboBoxItem10.Value = -1;
            uiComboBoxItem11.FormatStyle.Alpha = 0;
            uiComboBoxItem11.IsSeparator = false;
            uiComboBoxItem11.Text = "Chưa thực hiện";
            uiComboBoxItem11.Value = 0;
            uiComboBoxItem12.FormatStyle.Alpha = 0;
            uiComboBoxItem12.IsSeparator = false;
            uiComboBoxItem12.Text = "Đã thực hiện";
            uiComboBoxItem12.Value = 1;
            this.cboTrangthai.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem10,
            uiComboBoxItem11,
            uiComboBoxItem12});
            this.cboTrangthai.Location = new System.Drawing.Point(111, 189);
            this.cboTrangthai.Name = "cboTrangthai";
            this.cboTrangthai.Size = new System.Drawing.Size(149, 21);
            this.cboTrangthai.TabIndex = 69;
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.Location = new System.Drawing.Point(8, 193);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(77, 15);
            this.label10.TabIndex = 68;
            this.label10.Text = "T.T thực hiện";
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.label9.Location = new System.Drawing.Point(6, 309);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(95, 15);
            this.label9.TabIndex = 67;
            this.label9.Text = "Ngày in báo cáo";
            // 
            // dtCreateDate
            // 
            this.dtCreateDate.CustomFormat = "dd/MM/yyyy";
            this.dtCreateDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtCreateDate.DropDownCalendar.Name = "";
            this.dtCreateDate.Location = new System.Drawing.Point(111, 305);
            this.dtCreateDate.Name = "dtCreateDate";
            this.dtCreateDate.ShowUpDown = true;
            this.dtCreateDate.Size = new System.Drawing.Size(149, 21);
            this.dtCreateDate.TabIndex = 66;
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(8, 78);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(95, 15);
            this.label6.TabIndex = 14;
            this.label6.Text = "Loại xét nghiệm";
            // 
            // cboLoaiXN
            // 
            this.cboLoaiXN.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboLoaiXN.Location = new System.Drawing.Point(111, 75);
            this.cboLoaiXN.Name = "cboLoaiXN";
            this.cboLoaiXN.Size = new System.Drawing.Size(149, 21);
            this.cboLoaiXN.TabIndex = 13;
            // 
            // cmdThoat
            // 
            this.cmdThoat.Image = ((System.Drawing.Image)(resources.GetObject("cmdThoat.Image")));
            this.cmdThoat.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdThoat.Location = new System.Drawing.Point(38, 480);
            this.cmdThoat.Name = "cmdThoat";
            this.cmdThoat.Size = new System.Drawing.Size(200, 38);
            this.cmdThoat.TabIndex = 12;
            this.cmdThoat.Text = "Thoát (Esc)";
            this.cmdThoat.Click += new System.EventHandler(this.cboThoat_Click);
            // 
            // cmdPrint
            // 
            this.cmdPrint.Image = ((System.Drawing.Image)(resources.GetObject("cmdPrint.Image")));
            this.cmdPrint.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdPrint.Location = new System.Drawing.Point(38, 393);
            this.cmdPrint.Name = "cmdPrint";
            this.cmdPrint.Size = new System.Drawing.Size(200, 38);
            this.cmdPrint.TabIndex = 11;
            this.cmdPrint.Text = "In Báo cáo (F4)";
            this.cmdPrint.Click += new System.EventHandler(this.cmdPrint_Click);
            // 
            // cboTrangThaiBN
            // 
            this.cboTrangThaiBN.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            uiComboBoxItem13.FormatStyle.Alpha = 0;
            uiComboBoxItem13.IsSeparator = false;
            uiComboBoxItem13.Text = "Tất cả";
            uiComboBoxItem13.Value = -1;
            uiComboBoxItem14.FormatStyle.Alpha = 0;
            uiComboBoxItem14.IsSeparator = false;
            uiComboBoxItem14.Text = "Ngoại trú";
            uiComboBoxItem14.Value = 0;
            uiComboBoxItem15.FormatStyle.Alpha = 0;
            uiComboBoxItem15.IsSeparator = false;
            uiComboBoxItem15.Text = "Nội trú";
            uiComboBoxItem15.Value = 1;
            this.cboTrangThaiBN.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem13,
            uiComboBoxItem14,
            uiComboBoxItem15});
            this.cboTrangThaiBN.Location = new System.Drawing.Point(111, 159);
            this.cboTrangThaiBN.Name = "cboTrangThaiBN";
            this.cboTrangThaiBN.Size = new System.Drawing.Size(149, 21);
            this.cboTrangThaiBN.TabIndex = 10;
            // 
            // cboDepartment
            // 
            this.cboDepartment.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboDepartment.Location = new System.Drawing.Point(111, 129);
            this.cboDepartment.Name = "cboDepartment";
            this.cboDepartment.Size = new System.Drawing.Size(149, 21);
            this.cboDepartment.TabIndex = 9;
            // 
            // cboObjectType
            // 
            this.cboObjectType.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboObjectType.Location = new System.Drawing.Point(111, 102);
            this.cboObjectType.Name = "cboObjectType";
            this.cboObjectType.Size = new System.Drawing.Size(149, 21);
            this.cboObjectType.TabIndex = 8;
            // 
            // dtpToDate
            // 
            this.dtpToDate.CustomFormat = "dd/MM/yyyy: HH:mm";
            this.dtpToDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtpToDate.DropDownCalendar.Name = "";
            this.dtpToDate.Location = new System.Drawing.Point(111, 48);
            this.dtpToDate.Name = "dtpToDate";
            this.dtpToDate.ShowUpDown = true;
            this.dtpToDate.Size = new System.Drawing.Size(149, 21);
            this.dtpToDate.TabIndex = 7;
            this.dtpToDate.ValueChanged += new System.EventHandler(this.dtpToDate_ValueChanged);
            // 
            // dtpFromDate
            // 
            this.dtpFromDate.CustomFormat = "dd/MM/yyyy: HH:mm";
            this.dtpFromDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtpFromDate.DropDownCalendar.Name = "";
            this.dtpFromDate.Location = new System.Drawing.Point(111, 21);
            this.dtpFromDate.Name = "dtpFromDate";
            this.dtpFromDate.ShowUpDown = true;
            this.dtpFromDate.Size = new System.Drawing.Size(149, 21);
            this.dtpFromDate.TabIndex = 6;
            this.dtpFromDate.ValueChanged += new System.EventHandler(this.dtpFromDate_ValueChanged);
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(8, 162);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(62, 15);
            this.label5.TabIndex = 4;
            this.label5.Text = "Trạng thái";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(8, 132);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(74, 15);
            this.label4.TabIndex = 3;
            this.label4.Text = "Khoa phòng";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(8, 105);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(60, 15);
            this.label3.TabIndex = 2;
            this.label3.Text = "Đối tượng";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(8, 51);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(59, 15);
            this.label2.TabIndex = 1;
            this.label2.Text = "Đến ngày";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(8, 24);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(50, 15);
            this.label1.TabIndex = 0;
            this.label1.Text = "Từ ngày";
            // 
            // uiGroupBox3
            // 
            this.uiGroupBox3.Controls.Add(this.grdList);
            this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.uiGroupBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiGroupBox3.Location = new System.Drawing.Point(274, 82);
            this.uiGroupBox3.Name = "uiGroupBox3";
            this.uiGroupBox3.Size = new System.Drawing.Size(882, 521);
            this.uiGroupBox3.TabIndex = 3;
            this.uiGroupBox3.Text = "Danh sách bệnh nhân";
            // 
            // grdList
            // 
            this.grdList.DefaultFilterRowComparison = Janus.Windows.GridEX.FilterConditionOperator.Contains;
            grdList_DesignTimeLayout.LayoutString = resources.GetString("grdList_DesignTimeLayout.LayoutString");
            this.grdList.DesignTimeLayout = grdList_DesignTimeLayout;
            this.grdList.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdList.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdList.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdList.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdList.GroupByBoxVisible = false;
            this.grdList.Location = new System.Drawing.Point(3, 17);
            this.grdList.Name = "grdList";
            this.grdList.RecordNavigator = true;
            this.grdList.Size = new System.Drawing.Size(876, 501);
            this.grdList.TabIndex = 0;
            this.grdList.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdList.TotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            this.grdList.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            // 
            // frm_BAOCAO_SL_BN_NHANGUI_MAU
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1156, 603);
            this.Controls.Add(this.uiGroupBox3);
            this.Controls.Add(this.uiGroupBox2);
            this.Controls.Add(this.uiGroupBox1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
            this.KeyPreview = true;
            this.Name = "frm_BAOCAO_SL_BN_NHANGUI_MAU";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "BÁO CÁO SỐ LƯỢNG BÊNH NHÂN NHÂN GỬI MẪU";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.frm_BAOCAO_SL_BN_NHANGUI_MAU_Load);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frm_BAOCAO_SL_BN_NHANGUI_MAU_KeyDown);
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
            this.uiGroupBox1.ResumeLayout(false);
            this.sysColor.ResumeLayout(false);
            this.sysColor.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
            this.uiGroupBox2.ResumeLayout(false);
            this.uiGroupBox2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).EndInit();
            this.uiGroupBox3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Janus.Windows.GridEX.GridEXLayout grdResult_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmHIV_HBsAg_HCV));
            Janus.Windows.GridEX.GridEXLayout grdStatistics_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();
            this.uiStatusBar1 = new Janus.Windows.UI.StatusBar.UIStatusBar();
            this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
            this.grdResult = new Janus.Windows.GridEX.GridEX();
            this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
            this.dtpToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.dtpFromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.btnStatisticsToExcel = new Janus.Windows.EditControls.UIButton();
            this.grdStatistics = new Janus.Windows.GridEX.GridEX();
            this.btnExit = new Janus.Windows.EditControls.UIButton();
            this.btnResultToExcel = new Janus.Windows.EditControls.UIButton();
            this.btnSearch = new Janus.Windows.EditControls.UIButton();
            this.label3 = new System.Windows.Forms.Label();
            this.cboSex = new Janus.Windows.EditControls.UIComboBox();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
            this.uiGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdResult)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
            this.uiGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdStatistics)).BeginInit();
            this.SuspendLayout();
            // 
            // uiStatusBar1
            // 
            this.uiStatusBar1.Location = new System.Drawing.Point(0, 603);
            this.uiStatusBar1.Name = "uiStatusBar1";
            this.uiStatusBar1.Size = new System.Drawing.Size(1364, 23);
            this.uiStatusBar1.TabIndex = 3;
            this.uiStatusBar1.VisualStyle = Janus.Windows.UI.VisualStyle.VS2005;
            // 
            // uiGroupBox2
            // 
            this.uiGroupBox2.Controls.Add(this.grdResult);
            this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.uiGroupBox2.Location = new System.Drawing.Point(242, 0);
            this.uiGroupBox2.Name = "uiGroupBox2";
            this.uiGroupBox2.Size = new System.Drawing.Size(1122, 603);
            this.uiGroupBox2.TabIndex = 6;
            this.uiGroupBox2.Text = "Kết quả";
            // 
            // grdResult
            // 
            this.grdResult.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            grdResult_DesignTimeLayout.LayoutString = resources.GetString("grdResult_DesignTimeLayout.LayoutString");
            this.grdResult.DesignTimeLayout = grdResult_DesignTimeLayout;
            this.grdResult.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdResult.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Bold);
            this.grdResult.GroupByBoxVisible = false;
            this.grdResult.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdResult.Location = new System.Drawing.Point(3, 19);
            this.grdResult.Name = "grdResult";
            this.grdResult.RecordNavigator = true;
            this.grdResult.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdResult.Size = new System.Drawing.Size(1116, 581);
            this.grdResult.TabIndex = 1;
            // 
            // uiGroupBox1
            // 
            this.uiGroupBox1.Controls.Add(this.dtpToDate);
            this.uiGroupBox1.Controls.Add(this.dtpFromDate);
            this.uiGroupBox1.Controls.Add(this.btnStatisticsToExcel);
            this.uiGroupBox1.Controls.Add(this.grdStatistics);
            this.uiGroupBox1.Controls.Add(this.btnExit);
            this.uiGroupBox1.Controls.Add(this.btnResultToExcel);
            this.uiGroupBox1.Controls.Add(this.btnSearch);
            this.uiGroupBox1.Controls.Add(this.label3);
            this.uiGroupBox1.Controls.Add(this.cboSex);
            this.uiGroupBox1.Controls.Add(this.label2);
            this.uiGroupBox1.Controls.Add(this.label1);
            this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Left;
            this.uiGroupBox1.Location = new System.Drawing.Point(0, 0);
            this.uiGroupBox1.Name = "uiGroupBox1";
            this.uiGroupBox1.Size = new System.Drawing.Size(242, 603);
            this.uiGroupBox1.TabIndex = 5;
            this.uiGroupBox1.Text = "Thông tin tìm kiếm";
            // 
            // dtpToDate
            // 
            this.dtpToDate.CustomFormat = "dd/MM/yyyy";
            // 
            // 
            // 
            this.dtpToDate.DropDownCalendar.Name = "";
            this.dtpToDate.Location = new System.Drawing.Point(102, 66);
            this.dtpToDate.Name = "dtpToDate";
            this.dtpToDate.Size = new System.Drawing.Size(121, 23);
            this.dtpToDate.TabIndex = 10;
            this.dtpToDate.ValueChanged += new System.EventHandler(this.dtpToDate_ValueChanged);
            // 
            // dtpFromDate
            // 
            this.dtpFromDate.CustomFormat = "dd/MM/yyyy";
            // 
            // 
            // 
            this.dtpFromDate.DropDownCalendar.Name = "";
            this.dtpFromDate.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
            this.dtpFromDate.Location = new System.Drawing.Point(102, 30);
            this.dtpFromDate.Name = "dtpFromDate";
            this.dtpFromDate.Size = new System.Drawing.Size(121, 23);
            this.dtpFromDate.TabIndex = 2;
            this.dtpFromDate.ValueChanged += new System.EventHandler(this.dtpFromDate_ValueChanged);
            // 
            // btnStatisticsToExcel
            // 
            this.btnStatisticsToExcel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnStatisticsToExcel.Location = new System.Drawing.Point(16, 499);
            this.btnStatisticsToExcel.Name = "btnStatisticsToExcel";
            this.btnStatisticsToExcel.Size = new System.Drawing.Size(207, 43);
            this.btnStatisticsToExcel.TabIndex = 9;
            this.btnStatisticsToExcel.Text = "Xuất thống kê ra excel (F5)";
            this.btnStatisticsToExcel.Click += new System.EventHandler(this.btnStatisticsToExcel_Click);
            // 
            // grdStatistics
            // 
            grdStatistics_DesignTimeLayout.LayoutString = resources.GetString("grdStatistics_DesignTimeLayout.LayoutString");
            this.grdStatistics.DesignTimeLayout = grdStatistics_DesignTimeLayout;
            this.grdStatistics.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdStatistics.GroupByBoxVisible = false;
            this.grdStatistics.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdStatistics.Location = new System.Drawing.Point(6, 134);
            this.grdStatistics.Name = "grdStatistics";
            this.grdStatistics.Size = new System.Drawing.Size(230, 106);
            this.grdStatistics.TabIndex = 0;
            // 
            // btnExit
            // 
            this.btnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnExit.Location = new System.Drawing.Point(16, 548);
            this.btnExit.Name = "btnExit";
            this.btnExit.Size = new System.Drawing.Size(207, 43);
            this.btnExit.TabIndex = 8;
            this.btnExit.Text = "Thoát (Esc)";
            this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
            // 
            // btnResultToExcel
            // 
            this.btnResultToExcel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnResultToExcel.Location = new System.Drawing.Point(16, 450);
            this.btnResultToExcel.Name = "btnResultToExcel";
            this.btnResultToExcel.Size = new System.Drawing.Size(207, 43);
            this.btnResultToExcel.TabIndex = 7;
            this.btnResultToExcel.Text = "Xuất kết quả ra excel (F4)";
            this.btnResultToExcel.Click += new System.EventHandler(this.btnResultToExcel_Click);
            // 
            // btnSearch
            // 
            this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnSearch.Location = new System.Drawing.Point(16, 401);
            this.btnSearch.Name = "btnSearch";
            this.btnSearch.Size = new System.Drawing.Size(207, 43);
            this.btnSearch.TabIndex = 6;
            this.btnSearch.Text = "Tìm kiếm (F3)";
            this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(12, 106);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(69, 17);
            this.label3.TabIndex = 5;
            this.label3.Text = "Giới tính";
            // 
            // cboSex
            // 
            this.cboSex.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "Tất cả";
            uiComboBoxItem1.Value = ((short)(-1));
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "Nam";
            uiComboBoxItem2.Value = ((short)(1));
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "Nữ";
            uiComboBoxItem3.Value = ((short)(0));
            this.cboSex.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3});
            this.cboSex.Location = new System.Drawing.Point(102, 102);
            this.cboSex.Name = "cboSex";
            this.cboSex.Size = new System.Drawing.Size(121, 23);
            this.cboSex.TabIndex = 4;
            this.cboSex.Text = "uiComboBox1";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(12, 70);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(77, 17);
            this.label2.TabIndex = 1;
            this.label2.Text = "Đến ngày";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(12, 34);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(67, 17);
            this.label1.TabIndex = 0;
            this.label1.Text = "Từ ngày";
            // 
            // frmHIV_HBsAg_HCV
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 17F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1364, 626);
            this.Controls.Add(this.uiGroupBox2);
            this.Controls.Add(this.uiGroupBox1);
            this.Controls.Add(this.uiStatusBar1);
            this.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.KeyPreview = true;
            this.Margin = new System.Windows.Forms.Padding(4);
            this.Name = "frmHIV_HBsAg_HCV";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "BÁO CÁO HIV HBsAg HCV";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.frmHIV_HBsAg_HCV_Load);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmHIV_HBsAg_HCV_KeyDown);
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
            this.uiGroupBox2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdResult)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
            this.uiGroupBox1.ResumeLayout(false);
            this.uiGroupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdStatistics)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_GTVT_BAOCAO_SOLUONG_LOAIXETNGHIEM));
            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();
            this.sysColor = new System.Windows.Forms.Panel();
            this.label3 = new System.Windows.Forms.Label();
            this.lblMessage = new System.Windows.Forms.Label();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.cmdINPHIEU = new Janus.Windows.EditControls.UIButton();
            this.cmdExit = new Janus.Windows.EditControls.UIButton();
            this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
            this.chkTongLoaiXN = new Janus.Windows.EditControls.UICheckBox();
            this.chkTongKhoa = new Janus.Windows.EditControls.UICheckBox();
            this.label2 = new System.Windows.Forms.Label();
            this.cboLoaiXetnghiem = new System.Windows.Forms.ComboBox();
            this.cboHos_Status = new Janus.Windows.EditControls.UIComboBox();
            this.label6 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.cboObjectType = new System.Windows.Forms.ComboBox();
            this.cboDepartment = new System.Windows.Forms.ComboBox();
            this.dtToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.dtFromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.chkFormDate = new Janus.Windows.EditControls.UICheckBox();
            this.label7 = new System.Windows.Forms.Label();
            this.dtCreatePrint = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.sysColor.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
            this.uiGroupBox1.SuspendLayout();
            this.SuspendLayout();
            // 
            // sysColor
            // 
            this.sysColor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.sysColor.Controls.Add(this.label3);
            this.sysColor.Controls.Add(this.lblMessage);
            this.sysColor.Controls.Add(this.pictureBox1);
            this.sysColor.Dock = System.Windows.Forms.DockStyle.Top;
            this.sysColor.Location = new System.Drawing.Point(0, 0);
            this.sysColor.Name = "sysColor";
            this.sysColor.Size = new System.Drawing.Size(466, 71);
            this.sysColor.TabIndex = 10;
            // 
            // 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.Location = new System.Drawing.Point(130, 44);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(250, 17);
            this.label3.TabIndex = 2;
            this.label3.Text = "Bạn có thể dùng phím tắt để thao tác )";
            // 
            // lblMessage
            // 
            this.lblMessage.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblMessage.Location = new System.Drawing.Point(73, 0);
            this.lblMessage.Name = "lblMessage";
            this.lblMessage.Size = new System.Drawing.Size(393, 52);
            this.lblMessage.TabIndex = 1;
            this.lblMessage.Text = "BÁO CÁO TỔNG HỢP  SỐ LƯỢNG LOẠI XÉT NGHIỆM";
            this.lblMessage.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // pictureBox1
            // 
            this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
            this.pictureBox1.Location = new System.Drawing.Point(3, 0);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(64, 52);
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            // 
            // cmdINPHIEU
            // 
            this.cmdINPHIEU.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdINPHIEU.Image = ((System.Drawing.Image)(resources.GetObject("cmdINPHIEU.Image")));
            this.cmdINPHIEU.Location = new System.Drawing.Point(144, 294);
            this.cmdINPHIEU.Name = "cmdINPHIEU";
            this.cmdINPHIEU.Size = new System.Drawing.Size(129, 30);
            this.cmdINPHIEU.TabIndex = 12;
            this.cmdINPHIEU.Text = "&In báo cáo(F4)";
            this.cmdINPHIEU.ToolTipText = "In báo (Bạn có thể nhấn F4 thực hiện in báo cáo)";
            this.cmdINPHIEU.Click += new System.EventHandler(this.cmdINPHIEU_Click);
            // 
            // cmdExit
            // 
            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.Location = new System.Drawing.Point(279, 294);
            this.cmdExit.Name = "cmdExit";
            this.cmdExit.Size = new System.Drawing.Size(119, 30);
            this.cmdExit.TabIndex = 13;
            this.cmdExit.Text = "&Thoát(Esc)";
            this.cmdExit.ToolTipText = "Thoát khỏi Form hiện tại";
            this.cmdExit.Click += new System.EventHandler(this.cmdExit_Click);
            // 
            // uiGroupBox1
            // 
            this.uiGroupBox1.Controls.Add(this.label7);
            this.uiGroupBox1.Controls.Add(this.dtCreatePrint);
            this.uiGroupBox1.Controls.Add(this.dtToDate);
            this.uiGroupBox1.Controls.Add(this.dtFromDate);
            this.uiGroupBox1.Controls.Add(this.chkFormDate);
            this.uiGroupBox1.Controls.Add(this.cboDepartment);
            this.uiGroupBox1.Controls.Add(this.chkTongLoaiXN);
            this.uiGroupBox1.Controls.Add(this.chkTongKhoa);
            this.uiGroupBox1.Controls.Add(this.label2);
            this.uiGroupBox1.Controls.Add(this.cboLoaiXetnghiem);
            this.uiGroupBox1.Controls.Add(this.cboHos_Status);
            this.uiGroupBox1.Controls.Add(this.label6);
            this.uiGroupBox1.Controls.Add(this.label1);
            this.uiGroupBox1.Controls.Add(this.label5);
            this.uiGroupBox1.Controls.Add(this.cboObjectType);
            this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
            this.uiGroupBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiGroupBox1.Image = ((System.Drawing.Image)(resources.GetObject("uiGroupBox1.Image")));
            this.uiGroupBox1.Location = new System.Drawing.Point(0, 71);
            this.uiGroupBox1.Name = "uiGroupBox1";
            this.uiGroupBox1.Size = new System.Drawing.Size(466, 215);
            this.uiGroupBox1.TabIndex = 16;
            this.uiGroupBox1.Text = "&Thông tin điều kiện tìm kiếm";
            // 
            // chkTongLoaiXN
            // 
            this.chkTongLoaiXN.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkTongLoaiXN.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.chkTongLoaiXN.Location = new System.Drawing.Point(144, 160);
            this.chkTongLoaiXN.Name = "chkTongLoaiXN";
            this.chkTongLoaiXN.Size = new System.Drawing.Size(310, 23);
            this.chkTongLoaiXN.TabIndex = 19;
            this.chkTongLoaiXN.Text = "&Báo cáo theo tổng loại xét nghiệm";
            // 
            // chkTongKhoa
            // 
            this.chkTongKhoa.ForeColor = System.Drawing.Color.Red;
            this.chkTongKhoa.Location = new System.Drawing.Point(306, 185);
            this.chkTongKhoa.Name = "chkTongKhoa";
            this.chkTongKhoa.Size = new System.Drawing.Size(152, 23);
            this.chkTongKhoa.TabIndex = 17;
            this.chkTongKhoa.Text = "&Báo cáo theo tổng";
            this.chkTongKhoa.Visible = false;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.Location = new System.Drawing.Point(30, 108);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(110, 15);
            this.label2.TabIndex = 18;
            this.label2.Text = "&Loại xét nghiệm";
            // 
            // cboLoaiXetnghiem
            // 
            this.cboLoaiXetnghiem.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboLoaiXetnghiem.FormattingEnabled = true;
            this.cboLoaiXetnghiem.Location = new System.Drawing.Point(144, 105);
            this.cboLoaiXetnghiem.Name = "cboLoaiXetnghiem";
            this.cboLoaiXetnghiem.Size = new System.Drawing.Size(315, 23);
            this.cboLoaiXetnghiem.TabIndex = 17;
            // 
            // cboHos_Status
            // 
            this.cboHos_Status.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            uiComboBoxItem4.FormatStyle.Alpha = 0;
            uiComboBoxItem4.IsSeparator = false;
            uiComboBoxItem4.Text = "Ngoại trú";
            uiComboBoxItem4.Value = 0;
            uiComboBoxItem5.FormatStyle.Alpha = 0;
            uiComboBoxItem5.IsSeparator = false;
            uiComboBoxItem5.Text = "Nội trú";
            uiComboBoxItem5.Value = 1;
            uiComboBoxItem6.FormatStyle.Alpha = 0;
            uiComboBoxItem6.IsSeparator = false;
            uiComboBoxItem6.Text = "Tất cả";
            uiComboBoxItem6.Value = -1;
            this.cboHos_Status.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem4,
            uiComboBoxItem5,
            uiComboBoxItem6});
            this.cboHos_Status.Location = new System.Drawing.Point(144, 134);
            this.cboHos_Status.Name = "cboHos_Status";
            this.cboHos_Status.Size = new System.Drawing.Size(315, 21);
            this.cboHos_Status.TabIndex = 16;
            this.cboHos_Status.Text = "Tình trạng";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label6.Location = new System.Drawing.Point(68, 136);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(72, 15);
            this.label6.TabIndex = 15;
            this.label6.Text = "&Tình trạng";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.Location = new System.Drawing.Point(100, 51);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(40, 15);
            this.label1.TabIndex = 11;
            this.label1.Text = "&Khoa";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label5.Location = new System.Drawing.Point(71, 79);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(69, 15);
            this.label5.TabIndex = 6;
            this.label5.Text = "&Đối tượng";
            // 
            // cboObjectType
            // 
            this.cboObjectType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboObjectType.FormattingEnabled = true;
            this.cboObjectType.Location = new System.Drawing.Point(144, 76);
            this.cboObjectType.Name = "cboObjectType";
            this.cboObjectType.Size = new System.Drawing.Size(315, 23);
            this.cboObjectType.TabIndex = 5;
            // 
            // cboDepartment
            // 
            this.cboDepartment.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboDepartment.FormattingEnabled = true;
            this.cboDepartment.Location = new System.Drawing.Point(144, 49);
            this.cboDepartment.Name = "cboDepartment";
            this.cboDepartment.Size = new System.Drawing.Size(315, 23);
            this.cboDepartment.TabIndex = 20;
            // 
            // dtToDate
            // 
            this.dtToDate.CustomFormat = "dd/MM/yyyy";
            this.dtToDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtToDate.DropDownCalendar.Name = "";
            this.dtToDate.Location = new System.Drawing.Point(302, 22);
            this.dtToDate.Name = "dtToDate";
            this.dtToDate.ShowUpDown = true;
            this.dtToDate.Size = new System.Drawing.Size(157, 21);
            this.dtToDate.TabIndex = 23;
            // 
            // dtFromDate
            // 
            this.dtFromDate.CustomFormat = "dd/MM/yyyy";
            this.dtFromDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtFromDate.DropDownCalendar.Name = "";
            this.dtFromDate.Location = new System.Drawing.Point(144, 22);
            this.dtFromDate.Name = "dtFromDate";
            this.dtFromDate.ShowUpDown = true;
            this.dtFromDate.Size = new System.Drawing.Size(152, 21);
            this.dtFromDate.TabIndex = 22;
            // 
            // chkFormDate
            // 
            this.chkFormDate.Checked = true;
            this.chkFormDate.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkFormDate.Image = ((System.Drawing.Image)(resources.GetObject("chkFormDate.Image")));
            this.chkFormDate.Location = new System.Drawing.Point(48, 22);
            this.chkFormDate.Name = "chkFormDate";
            this.chkFormDate.Size = new System.Drawing.Size(92, 23);
            this.chkFormDate.TabIndex = 21;
            this.chkFormDate.Text = "&Từ ngày";
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(60, 185);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(81, 15);
            this.label7.TabIndex = 25;
            this.label7.Text = "&Chọn ngày in ";
            // 
            // dtCreatePrint
            // 
            this.dtCreatePrint.CustomFormat = "dd/MM/yyyy";
            this.dtCreatePrint.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtCreatePrint.DropDownCalendar.Name = "";
            this.dtCreatePrint.Location = new System.Drawing.Point(147, 185);
            this.dtCreatePrint.Name = "dtCreatePrint";
            this.dtCreatePrint.ShowUpDown = true;
            this.dtCreatePrint.Size = new System.Drawing.Size(152, 21);
            this.dtCreatePrint.TabIndex = 24;
            // 
            // frm_GTVT_BAOCAO_SOLUONG_LOAIXETNGHIEM
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(466, 330);
            this.Controls.Add(this.uiGroupBox1);
            this.Controls.Add(this.cmdINPHIEU);
            this.Controls.Add(this.cmdExit);
            this.Controls.Add(this.sysColor);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frm_GTVT_BAOCAO_SOLUONG_LOAIXETNGHIEM";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "BÁO CÁO THEO SỐ LƯỢNG LOẠI XÉT NGHIỆM";
            this.Load += new System.EventHandler(this.frm_GTVT_BAOCAO_SOLUONG_LOAIXETNGHIEM_Load);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frm_GTVT_BAOCAO_SOLUONG_LOAIXETNGHIEM_KeyDown);
            this.sysColor.ResumeLayout(false);
            this.sysColor.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
            this.uiGroupBox1.ResumeLayout(false);
            this.uiGroupBox1.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();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_qhe_doituong_thuoc_coban));
            Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdQhe_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdObjectType_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();
            this.sysColor = new System.Windows.Forms.ToolStrip();
            this.cmdThemMoi = new System.Windows.Forms.ToolStripButton();
            this.cmdCapNhap = new System.Windows.Forms.ToolStripButton();
            this.cmdXoathuoc = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.cmdCauhinh = new System.Windows.Forms.ToolStripButton();
            this.cmdCauhinhgia = new System.Windows.Forms.ToolStripButton();
            this.cmdIndanhsachthuoc = new System.Windows.Forms.ToolStripButton();
            this.cmdInGiathuoc = new System.Windows.Forms.ToolStripButton();
            this.cmdExportExcel = new System.Windows.Forms.ToolStripButton();
            this.cmdClose = new System.Windows.Forms.ToolStripButton();
            this.tabControlRelation = new Janus.Windows.UI.Tab.UITab();
            this.uiTabPage1 = new Janus.Windows.UI.Tab.UITabPage();
            this.grdList = new Janus.Windows.GridEX.GridEX();
            this.ctxThuoc = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.mnuUpdate = new System.Windows.Forms.ToolStripMenuItem();
            this.mnuDelete = new System.Windows.Forms.ToolStripMenuItem();
            this.mnuHethieuluc = new System.Windows.Forms.ToolStripMenuItem();
            this.tabObjectType = new Janus.Windows.UI.Tab.UITab();
            this.uiTabPage2 = new Janus.Windows.UI.Tab.UITabPage();
            this.groupBox5 = new System.Windows.Forms.GroupBox();
            this.grdQhe = new Janus.Windows.GridEX.GridEX();
            this.panel1 = new System.Windows.Forms.Panel();
            this.cmdDetailDeleteAll = new Janus.Windows.EditControls.UIButton();
            this.cmdSaveObjectAll = new Janus.Windows.EditControls.UIButton();
            this.cmdDelete = new Janus.Windows.EditControls.UIButton();
            this.cmdAdd = new Janus.Windows.EditControls.UIButton();
            this.grdObjectType = new Janus.Windows.GridEX.GridEX();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.panel3 = new System.Windows.Forms.Panel();
            this.optQhe_tatca = new Janus.Windows.EditControls.UIRadioButton();
            this.optCoQhe = new Janus.Windows.EditControls.UIRadioButton();
            this.optKhongQhe = new Janus.Windows.EditControls.UIRadioButton();
            this.label3 = new System.Windows.Forms.Label();
            this.panel2 = new System.Windows.Forms.Panel();
            this.optTatca = new Janus.Windows.EditControls.UIRadioButton();
            this.optHieuluc = new Janus.Windows.EditControls.UIRadioButton();
            this.optHethieuluc = new Janus.Windows.EditControls.UIRadioButton();
            this.label2 = new System.Windows.Forms.Label();
            this.lblMsg = new System.Windows.Forms.Label();
            this.cboloaithuoc = new Janus.Windows.EditControls.UIComboBox();
            this.label1 = new System.Windows.Forms.Label();
            this.lblKhoaThien = new System.Windows.Forms.Label();
            this.cboKhoaTH = new Janus.Windows.EditControls.UIComboBox();
            this.chkExpand = new Janus.Windows.EditControls.UICheckBox();
            this.gridEXPrintDocument1 = new Janus.Windows.GridEX.GridEXPrintDocument();
            this.printPreviewDialog1 = new System.Windows.Forms.PrintPreviewDialog();
            this.gridEXExporter = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.sysColor.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tabControlRelation)).BeginInit();
            this.tabControlRelation.SuspendLayout();
            this.uiTabPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
            this.ctxThuoc.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tabObjectType)).BeginInit();
            this.tabObjectType.SuspendLayout();
            this.uiTabPage2.SuspendLayout();
            this.groupBox5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdQhe)).BeginInit();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdObjectType)).BeginInit();
            this.groupBox1.SuspendLayout();
            this.panel3.SuspendLayout();
            this.panel2.SuspendLayout();
            this.SuspendLayout();
            // 
            // sysColor
            // 
            this.sysColor.BackColor = System.Drawing.SystemColors.Control;
            this.sysColor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.sysColor.ImageScalingSize = new System.Drawing.Size(32, 32);
            this.sysColor.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.cmdThemMoi,
            this.cmdCapNhap,
            this.cmdXoathuoc,
            this.toolStripSeparator1,
            this.cmdCauhinh,
            this.cmdCauhinhgia,
            this.cmdIndanhsachthuoc,
            this.cmdInGiathuoc,
            this.cmdExportExcel,
            this.cmdClose});
            this.sysColor.Location = new System.Drawing.Point(0, 0);
            this.sysColor.Name = "sysColor";
            this.sysColor.Size = new System.Drawing.Size(1008, 39);
            this.sysColor.TabIndex = 3;
            this.sysColor.Text = "toolStrip1";
            // 
            // cmdThemMoi
            // 
            this.cmdThemMoi.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemMoi.Image")));
            this.cmdThemMoi.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.cmdThemMoi.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdThemMoi.Name = "cmdThemMoi";
            this.cmdThemMoi.Size = new System.Drawing.Size(125, 36);
            this.cmdThemMoi.Text = "Thêm mới thuốc";
            this.cmdThemMoi.ToolTipText = "Nhấn vào đây để thêm nhanh thuốc mới(Ctrl+N)";
            // 
            // cmdCapNhap
            // 
            this.cmdCapNhap.Image = ((System.Drawing.Image)(resources.GetObject("cmdCapNhap.Image")));
            this.cmdCapNhap.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.cmdCapNhap.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdCapNhap.Name = "cmdCapNhap";
            this.cmdCapNhap.Size = new System.Drawing.Size(118, 36);
            this.cmdCapNhap.Text = "Cập nhật thuốc";
            this.cmdCapNhap.ToolTipText = "Nhấn vào đây để cập nhật thông tin thuốc đang chọn(Ctrl+E)";
            // 
            // cmdXoathuoc
            // 
            this.cmdXoathuoc.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoathuoc.Image")));
            this.cmdXoathuoc.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdXoathuoc.Name = "cmdXoathuoc";
            this.cmdXoathuoc.Size = new System.Drawing.Size(97, 36);
            this.cmdXoathuoc.Text = "Xóa thuốc";
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 39);
            // 
            // cmdCauhinh
            // 
            this.cmdCauhinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdCauhinh.Image")));
            this.cmdCauhinh.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdCauhinh.Name = "cmdCauhinh";
            this.cmdCauhinh.Size = new System.Drawing.Size(93, 36);
            this.cmdCauhinh.Text = "Cấu hình";
            // 
            // cmdCauhinhgia
            // 
            this.cmdCauhinhgia.Image = ((System.Drawing.Image)(resources.GetObject("cmdCauhinhgia.Image")));
            this.cmdCauhinhgia.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdCauhinhgia.Name = "cmdCauhinhgia";
            this.cmdCauhinhgia.Size = new System.Drawing.Size(113, 36);
            this.cmdCauhinhgia.Text = "Cấu hình giá";
            // 
            // cmdIndanhsachthuoc
            // 
            this.cmdIndanhsachthuoc.Image = ((System.Drawing.Image)(resources.GetObject("cmdIndanhsachthuoc.Image")));
            this.cmdIndanhsachthuoc.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdIndanhsachthuoc.Name = "cmdIndanhsachthuoc";
            this.cmdIndanhsachthuoc.Size = new System.Drawing.Size(114, 36);
            this.cmdIndanhsachthuoc.Text = "In danh sách";
            this.cmdIndanhsachthuoc.ToolTipText = "In danh sách thuốc(Ctrl+P)";
            // 
            // cmdInGiathuoc
            // 
            this.cmdInGiathuoc.Image = ((System.Drawing.Image)(resources.GetObject("cmdInGiathuoc.Image")));
            this.cmdInGiathuoc.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdInGiathuoc.Name = "cmdInGiathuoc";
            this.cmdInGiathuoc.Size = new System.Drawing.Size(106, 36);
            this.cmdInGiathuoc.Text = "In giá thuốc";
            this.cmdInGiathuoc.ToolTipText = "In danh sách giá thuốc (Alt+P)";
            // 
            // cmdExportExcel
            // 
            this.cmdExportExcel.Image = ((System.Drawing.Image)(resources.GetObject("cmdExportExcel.Image")));
            this.cmdExportExcel.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.cmdExportExcel.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdExportExcel.Name = "cmdExportExcel";
            this.cmdExportExcel.Size = new System.Drawing.Size(109, 36);
            this.cmdExportExcel.Text = "Export Excel";
            // 
            // cmdClose
            // 
            this.cmdClose.Image = ((System.Drawing.Image)(resources.GetObject("cmdClose.Image")));
            this.cmdClose.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cmdClose.Name = "cmdClose";
            this.cmdClose.Size = new System.Drawing.Size(103, 36);
            this.cmdClose.Text = "Thoát(Esc)";
            this.cmdClose.ToolTipText = "Thoát";
            // 
            // tabControlRelation
            // 
            this.tabControlRelation.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControlRelation.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tabControlRelation.Location = new System.Drawing.Point(0, 39);
            this.tabControlRelation.Name = "tabControlRelation";
            this.tabControlRelation.Size = new System.Drawing.Size(1008, 691);
            this.tabControlRelation.TabIndex = 6;
            this.tabControlRelation.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
            this.uiTabPage1});
            this.tabControlRelation.VisualStyle = Janus.Windows.UI.Tab.TabVisualStyle.VS2005;
            // 
            // uiTabPage1
            // 
            this.uiTabPage1.Controls.Add(this.grdList);
            this.uiTabPage1.Controls.Add(this.tabObjectType);
            this.uiTabPage1.Controls.Add(this.groupBox1);
            this.uiTabPage1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiTabPage1.Image = ((System.Drawing.Image)(resources.GetObject("uiTabPage1.Image")));
            this.uiTabPage1.Location = new System.Drawing.Point(1, 23);
            this.uiTabPage1.Name = "uiTabPage1";
            this.uiTabPage1.Size = new System.Drawing.Size(1006, 667);
            this.uiTabPage1.TabStop = true;
            this.uiTabPage1.Text = "Quản lý quan hệ giá đối tượng - thuốc";
            // 
            // grdList
            // 
            this.grdList.AlternatingColors = true;
            this.grdList.ContextMenuStrip = this.ctxThuoc;
            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.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdList.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdList.Font = new System.Drawing.Font("Arial", 9F);
            this.grdList.GroupByBoxVisible = false;
            this.grdList.GroupRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdList.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdList.Location = new System.Drawing.Point(0, 118);
            this.grdList.Name = "grdList";
            this.grdList.RecordNavigator = true;
            this.grdList.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdList.Size = new System.Drawing.Size(561, 549);
            this.grdList.TabIndex = 15;
            this.toolTip1.SetToolTip(this.grdList, "Nhấn phím F5 để nạp lại dữ liệu");
            this.grdList.UseGroupRowSelector = true;
            this.grdList.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // ctxThuoc
            // 
            this.ctxThuoc.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuUpdate,
            this.mnuDelete,
            this.mnuHethieuluc});
            this.ctxThuoc.Name = "contextMenuStrip1";
            this.ctxThuoc.Size = new System.Drawing.Size(197, 70);
            // 
            // mnuUpdate
            // 
            this.mnuUpdate.Name = "mnuUpdate";
            this.mnuUpdate.Size = new System.Drawing.Size(196, 22);
            this.mnuUpdate.Text = "Cập nhập thuốc";
            // 
            // mnuDelete
            // 
            this.mnuDelete.Name = "mnuDelete";
            this.mnuDelete.Size = new System.Drawing.Size(196, 22);
            this.mnuDelete.Text = "Xóa thuốc";
            this.mnuDelete.Visible = false;
            // 
            // mnuHethieuluc
            // 
            this.mnuHethieuluc.Name = "mnuHethieuluc";
            this.mnuHethieuluc.Size = new System.Drawing.Size(196, 22);
            this.mnuHethieuluc.Text = "Làm hết hiệu lực thuốc";
            // 
            // tabObjectType
            // 
            this.tabObjectType.Dock = System.Windows.Forms.DockStyle.Right;
            this.tabObjectType.Location = new System.Drawing.Point(561, 118);
            this.tabObjectType.Name = "tabObjectType";
            this.tabObjectType.Size = new System.Drawing.Size(445, 549);
            this.tabObjectType.TabIndex = 14;
            this.tabObjectType.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
            this.uiTabPage2});
            // 
            // uiTabPage2
            // 
            this.uiTabPage2.Controls.Add(this.groupBox5);
            this.uiTabPage2.Image = ((System.Drawing.Image)(resources.GetObject("uiTabPage2.Image")));
            this.uiTabPage2.Location = new System.Drawing.Point(1, 25);
            this.uiTabPage2.Name = "uiTabPage2";
            this.uiTabPage2.Size = new System.Drawing.Size(441, 521);
            this.uiTabPage2.TabStop = true;
            this.uiTabPage2.Text = "Chi tiết Giá thuốc theo đối tượng KCB";
            // 
            // groupBox5
            // 
            this.groupBox5.Controls.Add(this.grdQhe);
            this.groupBox5.Controls.Add(this.panel1);
            this.groupBox5.Controls.Add(this.grdObjectType);
            this.groupBox5.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox5.Location = new System.Drawing.Point(0, 0);
            this.groupBox5.Name = "groupBox5";
            this.groupBox5.Size = new System.Drawing.Size(441, 521);
            this.groupBox5.TabIndex = 1;
            this.groupBox5.TabStop = false;
            // 
            // grdQhe
            // 
            this.grdQhe.BackColor = System.Drawing.Color.White;
            grdQhe_DesignTimeLayout.LayoutString = resources.GetString("grdQhe_DesignTimeLayout.LayoutString");
            this.grdQhe.DesignTimeLayout = grdQhe_DesignTimeLayout;
            this.grdQhe.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdQhe.Font = new System.Drawing.Font("Arial", 9F);
            this.grdQhe.GroupByBoxVisible = false;
            this.grdQhe.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdQhe.Location = new System.Drawing.Point(3, 19);
            this.grdQhe.Name = "grdQhe";
            this.grdQhe.Size = new System.Drawing.Size(435, 423);
            this.grdQhe.TabIndex = 30;
            this.grdQhe.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.cmdDetailDeleteAll);
            this.panel1.Controls.Add(this.cmdSaveObjectAll);
            this.panel1.Controls.Add(this.cmdDelete);
            this.panel1.Controls.Add(this.cmdAdd);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel1.Location = new System.Drawing.Point(3, 442);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(435, 76);
            this.panel1.TabIndex = 28;
            // 
            // cmdDetailDeleteAll
            // 
            this.cmdDetailDeleteAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdDetailDeleteAll.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdDetailDeleteAll.Image = ((System.Drawing.Image)(resources.GetObject("cmdDetailDeleteAll.Image")));
            this.cmdDetailDeleteAll.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdDetailDeleteAll.Location = new System.Drawing.Point(208, 37);
            this.cmdDetailDeleteAll.Name = "cmdDetailDeleteAll";
            this.cmdDetailDeleteAll.Size = new System.Drawing.Size(128, 30);
            this.cmdDetailDeleteAll.TabIndex = 29;
            this.cmdDetailDeleteAll.Text = "Xóa mục chọn";
            this.toolTip1.SetToolTip(this.cmdDetailDeleteAll, "Nhấn vào đây để xóa tất cả các quan hệ đang được check chọn(Phím tắt Ctrl+Delete)" +
        "");
            // 
            // cmdSaveObjectAll
            // 
            this.cmdSaveObjectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdSaveObjectAll.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdSaveObjectAll.Image = ((System.Drawing.Image)(resources.GetObject("cmdSaveObjectAll.Image")));
            this.cmdSaveObjectAll.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdSaveObjectAll.Location = new System.Drawing.Point(342, 37);
            this.cmdSaveObjectAll.Name = "cmdSaveObjectAll";
            this.cmdSaveObjectAll.Size = new System.Drawing.Size(90, 30);
            this.cmdSaveObjectAll.TabIndex = 28;
            this.cmdSaveObjectAll.Text = "Ghi";
            this.toolTip1.SetToolTip(this.cmdSaveObjectAll, "Nhấn vào đây để lưu giá sau khi sửa trên lưới( phím tắt Ctrl+S)");
            this.cmdSaveObjectAll.Click += new System.EventHandler(this.cmdSaveObjectAll_Click_1);
            // 
            // cmdDelete
            // 
            this.cmdDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdDelete.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdDelete.Image = ((System.Drawing.Image)(resources.GetObject("cmdDelete.Image")));
            this.cmdDelete.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdDelete.Location = new System.Drawing.Point(113, 37);
            this.cmdDelete.Name = "cmdDelete";
            this.cmdDelete.Size = new System.Drawing.Size(89, 30);
            this.cmdDelete.TabIndex = 27;
            this.cmdDelete.Text = "Xóa";
            this.toolTip1.SetToolTip(this.cmdDelete, "Nhấn vào đây để xóa quan hệ giá thuốc đang chọn( Phím tắt nút Delete)");
            // 
            // cmdAdd
            // 
            this.cmdAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdAdd.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdAdd.Image = ((System.Drawing.Image)(resources.GetObject("cmdAdd.Image")));
            this.cmdAdd.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdAdd.Location = new System.Drawing.Point(17, 37);
            this.cmdAdd.Name = "cmdAdd";
            this.cmdAdd.Size = new System.Drawing.Size(90, 30);
            this.cmdAdd.TabIndex = 26;
            this.cmdAdd.Text = "Thêm";
            this.toolTip1.SetToolTip(this.cmdAdd, "Nhấn vào đây để chọn thêm đối tượng áp giá(Ctrl+N)");
            // 
            // grdObjectType
            // 
            this.grdObjectType.BackColor = System.Drawing.Color.Silver;
            grdObjectType_DesignTimeLayout.LayoutString = resources.GetString("grdObjectType_DesignTimeLayout.LayoutString");
            this.grdObjectType.DesignTimeLayout = grdObjectType_DesignTimeLayout;
            this.grdObjectType.Dock = System.Windows.Forms.DockStyle.Top;
            this.grdObjectType.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdObjectType.GroupByBoxVisible = false;
            this.grdObjectType.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdObjectType.Location = new System.Drawing.Point(3, 19);
            this.grdObjectType.Name = "grdObjectType";
            this.grdObjectType.Size = new System.Drawing.Size(435, 0);
            this.grdObjectType.TabIndex = 26;
            this.grdObjectType.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.panel3);
            this.groupBox1.Controls.Add(this.label3);
            this.groupBox1.Controls.Add(this.panel2);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.lblMsg);
            this.groupBox1.Controls.Add(this.cboloaithuoc);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Controls.Add(this.lblKhoaThien);
            this.groupBox1.Controls.Add(this.cboKhoaTH);
            this.groupBox1.Controls.Add(this.chkExpand);
            this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupBox1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupBox1.Location = new System.Drawing.Point(0, 0);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(1006, 118);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Thông tin tìm kiếm";
            // 
            // panel3
            // 
            this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel3.Controls.Add(this.optQhe_tatca);
            this.panel3.Controls.Add(this.optCoQhe);
            this.panel3.Controls.Add(this.optKhongQhe);
            this.panel3.Location = new System.Drawing.Point(503, 57);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(398, 25);
            this.panel3.TabIndex = 466;
            // 
            // optQhe_tatca
            // 
            this.optQhe_tatca.Checked = true;
            this.optQhe_tatca.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.optQhe_tatca.Location = new System.Drawing.Point(12, 2);
            this.optQhe_tatca.Name = "optQhe_tatca";
            this.optQhe_tatca.Size = new System.Drawing.Size(82, 19);
            this.optQhe_tatca.TabIndex = 15;
            this.optQhe_tatca.TabStop = true;
            this.optQhe_tatca.Text = "Tất cả";
            // 
            // optCoQhe
            // 
            this.optCoQhe.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.optCoQhe.Location = new System.Drawing.Point(117, 2);
            this.optCoQhe.Name = "optCoQhe";
            this.optCoQhe.Size = new System.Drawing.Size(111, 19);
            this.optCoQhe.TabIndex = 13;
            this.optCoQhe.Text = "Có quan hệ";
            // 
            // optKhongQhe
            // 
            this.optKhongQhe.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.optKhongQhe.Location = new System.Drawing.Point(251, 0);
            this.optKhongQhe.Name = "optKhongQhe";
            this.optKhongQhe.Size = new System.Drawing.Size(142, 19);
            this.optKhongQhe.TabIndex = 14;
            this.optKhongQhe.Text = "Không có quan hệ";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(420, 61);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(77, 15);
            this.label3.TabIndex = 465;
            this.label3.Text = "Quan hệ giá:";
            // 
            // panel2
            // 
            this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel2.Controls.Add(this.optTatca);
            this.panel2.Controls.Add(this.optHieuluc);
            this.panel2.Controls.Add(this.optHethieuluc);
            this.panel2.Location = new System.Drawing.Point(503, 27);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(398, 25);
            this.panel2.TabIndex = 464;
            // 
            // optTatca
            // 
            this.optTatca.Checked = true;
            this.optTatca.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.optTatca.Location = new System.Drawing.Point(12, 2);
            this.optTatca.Name = "optTatca";
            this.optTatca.Size = new System.Drawing.Size(82, 19);
            this.optTatca.TabIndex = 15;
            this.optTatca.TabStop = true;
            this.optTatca.Text = "Tất cả";
            // 
            // optHieuluc
            // 
            this.optHieuluc.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.optHieuluc.Location = new System.Drawing.Point(117, 2);
            this.optHieuluc.Name = "optHieuluc";
            this.optHieuluc.Size = new System.Drawing.Size(111, 19);
            this.optHieuluc.TabIndex = 13;
            this.optHieuluc.Text = "Đang dùng";
            // 
            // optHethieuluc
            // 
            this.optHethieuluc.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.optHethieuluc.Location = new System.Drawing.Point(251, 1);
            this.optHethieuluc.Name = "optHethieuluc";
            this.optHethieuluc.Size = new System.Drawing.Size(105, 19);
            this.optHethieuluc.TabIndex = 14;
            this.optHethieuluc.Text = "Không dùng";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(420, 31);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(62, 15);
            this.label2.TabIndex = 463;
            this.label2.Text = "Trạng thái";
            // 
            // lblMsg
            // 
            this.lblMsg.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.lblMsg.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblMsg.Location = new System.Drawing.Point(3, 90);
            this.lblMsg.Name = "lblMsg";
            this.lblMsg.Size = new System.Drawing.Size(1000, 25);
            this.lblMsg.TabIndex = 26;
            this.lblMsg.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cboloaithuoc
            // 
            this.cboloaithuoc.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboloaithuoc.Location = new System.Drawing.Point(108, 27);
            this.cboloaithuoc.MaxDropDownItems = 30;
            this.cboloaithuoc.Name = "cboloaithuoc";
            this.cboloaithuoc.SelectedItemFormatStyle.BackColor = System.Drawing.Color.Teal;
            this.cboloaithuoc.SelectedItemFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cboloaithuoc.SelectInDataSource = true;
            this.cboloaithuoc.Size = new System.Drawing.Size(296, 22);
            this.cboloaithuoc.TabIndex = 25;
            this.cboloaithuoc.Text = "dịch vụ";
            // 
            // label1
            // 
            this.label1.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.Location = new System.Drawing.Point(6, 28);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(94, 24);
            this.label1.TabIndex = 24;
            this.label1.Text = "Loại thuốc";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblKhoaThien
            // 
            this.lblKhoaThien.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblKhoaThien.Location = new System.Drawing.Point(6, 52);
            this.lblKhoaThien.Name = "lblKhoaThien";
            this.lblKhoaThien.Size = new System.Drawing.Size(94, 24);
            this.lblKhoaThien.TabIndex = 22;
            this.lblKhoaThien.Text = "Khoa áp giá:";
            this.lblKhoaThien.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cboKhoaTH
            // 
            this.cboKhoaTH.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboKhoaTH.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "--- Chọn ---";
            uiComboBoxItem1.Value = -1;
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "Hiệu lực";
            uiComboBoxItem2.Value = 1;
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "Không hiệu lực";
            uiComboBoxItem3.Value = 0;
            this.cboKhoaTH.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3});
            this.cboKhoaTH.Location = new System.Drawing.Point(108, 53);
            this.cboKhoaTH.Name = "cboKhoaTH";
            this.cboKhoaTH.Size = new System.Drawing.Size(296, 22);
            this.cboKhoaTH.TabIndex = 21;
            this.cboKhoaTH.Text = "Khoa Thực Hiện";
            // 
            // chkExpand
            // 
            this.chkExpand.AutoSize = true;
            this.chkExpand.Location = new System.Drawing.Point(1122, 104);
            this.chkExpand.Name = "chkExpand";
            this.chkExpand.Size = new System.Drawing.Size(56, 17);
            this.chkExpand.TabIndex = 14;
            this.chkExpand.Text = "&Thu lại";
            this.chkExpand.Visible = false;
            // 
            // gridEXPrintDocument1
            // 
            this.gridEXPrintDocument1.FitColumns = Janus.Windows.GridEX.FitColumnsMode.SizingColumns;
            // 
            // printPreviewDialog1
            // 
            this.printPreviewDialog1.AutoScrollMargin = new System.Drawing.Size(0, 0);
            this.printPreviewDialog1.AutoScrollMinSize = new System.Drawing.Size(0, 0);
            this.printPreviewDialog1.ClientSize = new System.Drawing.Size(400, 300);
            this.printPreviewDialog1.Document = this.gridEXPrintDocument1;
            this.printPreviewDialog1.Enabled = true;
            this.printPreviewDialog1.Icon = ((System.Drawing.Icon)(resources.GetObject("printPreviewDialog1.Icon")));
            this.printPreviewDialog1.Name = "printPreviewDialog1";
            this.printPreviewDialog1.Visible = false;
            // 
            // toolTip1
            // 
            this.toolTip1.IsBalloon = true;
            this.toolTip1.ToolTipTitle = "Trợ giúp";
            // 
            // frm_qhe_doituong_thuoc_coban
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
            this.ClientSize = new System.Drawing.Size(1008, 730);
            this.Controls.Add(this.tabControlRelation);
            this.Controls.Add(this.sysColor);
            this.Name = "frm_qhe_doituong_thuoc_coban";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Quan hệ đối tượng - thuốc";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.sysColor.ResumeLayout(false);
            this.sysColor.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tabControlRelation)).EndInit();
            this.tabControlRelation.ResumeLayout(false);
            this.uiTabPage1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
            this.ctxThuoc.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.tabObjectType)).EndInit();
            this.tabObjectType.ResumeLayout(false);
            this.uiTabPage2.ResumeLayout(false);
            this.groupBox5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdQhe)).EndInit();
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdObjectType)).EndInit();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.panel3.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Example #30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     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(frmNhapBangGiaGoc_DHC));
     this.cboKieuTuyen        = new System.Windows.Forms.ComboBox();
     this.label1              = new System.Windows.Forms.Label();
     this.groupBox1           = new System.Windows.Forms.GroupBox();
     this.label2              = new System.Windows.Forms.Label();
     this.lstTuyenDuong       = new System.Windows.Forms.ListBox();
     this.groupBox2           = new System.Windows.Forms.GroupBox();
     this.label10             = new System.Windows.Forms.Label();
     this.grdLoaiXeTuyenDuong = new System.Windows.Forms.DataGridView();
     this.ID                  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TenTuyenDuong       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TenLoaiXe           = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column5             = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column6             = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.VeTram              = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column1             = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2             = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3             = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column4             = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaLoaiXe            = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.groupBox5           = new System.Windows.Forms.GroupBox();
     this.btnHuybo            = new System.Windows.Forms.Button();
     this.btnXoa              = new System.Windows.Forms.Button();
     this.txtGiaTien1Chieu    = new System.Windows.Forms.TextBox();
     this.label6              = new System.Windows.Forms.Label();
     this.btnLuu              = new System.Windows.Forms.Button();
     this.label13             = new System.Windows.Forms.Label();
     this.btnThemMoi          = new System.Windows.Forms.Button();
     this.groupBox4           = new System.Windows.Forms.GroupBox();
     this.label14             = new System.Windows.Forms.Label();
     this.label15             = new System.Windows.Forms.Label();
     this.label8              = new System.Windows.Forms.Label();
     this.label7              = new System.Windows.Forms.Label();
     this.txtKmQD2Chieu       = new System.Windows.Forms.TextBox();
     this.txtThoiGianQD2Chieu = new System.Windows.Forms.TextBox();
     this.cboLoaiXe           = new System.Windows.Forms.ComboBox();
     this.groupBox3           = new System.Windows.Forms.GroupBox();
     this.txtVeTram           = new System.Windows.Forms.TextBox();
     this.label18             = new System.Windows.Forms.Label();
     this.label12             = new System.Windows.Forms.Label();
     this.label11             = new System.Windows.Forms.Label();
     this.txtThoiGianQD1Chieu = new System.Windows.Forms.TextBox();
     this.label5              = new System.Windows.Forms.Label();
     this.txtKmQD1Chieu       = new System.Windows.Forms.TextBox();
     this.label4              = new System.Windows.Forms.Label();
     this.txtGiaTien2Chieu    = new System.Windows.Forms.TextBox();
     this.label3              = new System.Windows.Forms.Label();
     this.label9              = new System.Windows.Forms.Label();
     this.label16             = new System.Windows.Forms.Label();
     this.label17             = new System.Windows.Forms.Label();
     this.cboViTri            = new Janus.Windows.EditControls.UIComboBox();
     this.lnkXoaTuyen         = new System.Windows.Forms.LinkLabel();
     this.lnkThemTuyen        = new System.Windows.Forms.LinkLabel();
     this.lnkSuaTuyen         = new System.Windows.Forms.LinkLabel();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdLoaiXeTuyenDuong)).BeginInit();
     this.groupBox5.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // cboKieuTuyen
     //
     this.cboKieuTuyen.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboKieuTuyen.FormattingEnabled = true;
     this.cboKieuTuyen.Items.AddRange(new object[] {
         "Tất cả",
         "Tuyến ngoại thành",
         "Tuyến ngoại tỉnh"
     });
     this.cboKieuTuyen.Location              = new System.Drawing.Point(78, 20);
     this.cboKieuTuyen.Name                  = "cboKieuTuyen";
     this.cboKieuTuyen.Size                  = new System.Drawing.Size(151, 21);
     this.cboKieuTuyen.TabIndex              = 0;
     this.cboKieuTuyen.SelectedIndexChanged += new System.EventHandler(this.cboKieuTuyen_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(15, 26);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(57, 13);
     this.label1.TabIndex = 1;
     this.label1.Text     = "Kiểu tuyến";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.lstTuyenDuong);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.cboKieuTuyen);
     this.groupBox1.Location = new System.Drawing.Point(12, 38);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(237, 547);
     this.groupBox1.TabIndex = 2;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Tuyến đường";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(13, 53);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(143, 13);
     this.label2.TabIndex = 3;
     this.label2.Text     = "Danh sách các tuyến đường";
     //
     // lstTuyenDuong
     //
     this.lstTuyenDuong.FormattingEnabled = true;
     this.lstTuyenDuong.Location          = new System.Drawing.Point(12, 70);
     this.lstTuyenDuong.Name                  = "lstTuyenDuong";
     this.lstTuyenDuong.Size                  = new System.Drawing.Size(217, 472);
     this.lstTuyenDuong.TabIndex              = 2;
     this.lstTuyenDuong.SelectedValueChanged += new System.EventHandler(this.lstTuyenDuong_SelectedValueChanged);
     this.lstTuyenDuong.Leave                += new System.EventHandler(this.lstTuyenDuong_Leave);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.label10);
     this.groupBox2.Controls.Add(this.grdLoaiXeTuyenDuong);
     this.groupBox2.Controls.Add(this.groupBox5);
     this.groupBox2.Location = new System.Drawing.Point(255, 38);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(705, 551);
     this.groupBox2.TabIndex = 0;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Nhập giá cho tuyến đường - loại xe";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(3, 236);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(156, 13);
     this.label10.TabIndex = 9;
     this.label10.Text     = "Bảng giá của loại xe theo tuyến";
     //
     // grdLoaiXeTuyenDuong
     //
     this.grdLoaiXeTuyenDuong.AllowUserToDeleteRows       = false;
     this.grdLoaiXeTuyenDuong.AllowUserToResizeColumns    = false;
     this.grdLoaiXeTuyenDuong.AllowUserToResizeRows       = false;
     this.grdLoaiXeTuyenDuong.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdLoaiXeTuyenDuong.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.ID,
         this.TenTuyenDuong,
         this.TenLoaiXe,
         this.Column5,
         this.Column6,
         this.VeTram,
         this.Column1,
         this.Column2,
         this.Column3,
         this.Column4,
         this.MaLoaiXe
     });
     this.grdLoaiXeTuyenDuong.Location = new System.Drawing.Point(6, 263);
     this.grdLoaiXeTuyenDuong.Name     = "grdLoaiXeTuyenDuong";
     this.grdLoaiXeTuyenDuong.ReadOnly = true;
     this.grdLoaiXeTuyenDuong.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.grdLoaiXeTuyenDuong.Size             = new System.Drawing.Size(693, 282);
     this.grdLoaiXeTuyenDuong.TabIndex         = 8;
     this.grdLoaiXeTuyenDuong.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdLoaiXeTuyenDuong_CellDoubleClick);
     //
     // ID
     //
     this.ID.DataPropertyName = "TuyenDuongID";
     this.ID.HeaderText       = "Tuyến đường ID";
     this.ID.Name             = "ID";
     this.ID.ReadOnly         = true;
     this.ID.Visible          = false;
     //
     // TenTuyenDuong
     //
     this.TenTuyenDuong.DataPropertyName = "TenTuyenDuong";
     this.TenTuyenDuong.HeaderText       = "Tên tuyến đường";
     this.TenTuyenDuong.Name             = "TenTuyenDuong";
     this.TenTuyenDuong.ReadOnly         = true;
     this.TenTuyenDuong.Width            = 150;
     //
     // TenLoaiXe
     //
     this.TenLoaiXe.DataPropertyName = "TenLoaiXe";
     this.TenLoaiXe.HeaderText       = "Loại xe";
     this.TenLoaiXe.Name             = "TenLoaiXe";
     this.TenLoaiXe.ReadOnly         = true;
     //
     // Column5
     //
     this.Column5.DataPropertyName    = "GiaTien1Chieu";
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.Column5.DefaultCellStyle    = dataGridViewCellStyle1;
     this.Column5.HeaderText          = "Giá tiền 1 chiều";
     this.Column5.Name     = "Column5";
     this.Column5.ReadOnly = true;
     this.Column5.Width    = 65;
     //
     // Column6
     //
     this.Column6.DataPropertyName    = "GiaTien2Chieu";
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.Column6.DefaultCellStyle    = dataGridViewCellStyle2;
     this.Column6.HeaderText          = "Giá tiền 2 chiều";
     this.Column6.Name     = "Column6";
     this.Column6.ReadOnly = true;
     this.Column6.Width    = 65;
     //
     // VeTram
     //
     this.VeTram.DataPropertyName     = "VeTram";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.VeTram.DefaultCellStyle     = dataGridViewCellStyle3;
     this.VeTram.HeaderText           = "Vé trạm";
     this.VeTram.Name     = "VeTram";
     this.VeTram.ReadOnly = true;
     this.VeTram.Width    = 50;
     //
     // Column1
     //
     this.Column1.DataPropertyName    = "KmQuyDinh1Chieu";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.Column1.DefaultCellStyle    = dataGridViewCellStyle4;
     this.Column1.HeaderText          = "QĐ Km 1 chiều";
     this.Column1.Name     = "Column1";
     this.Column1.ReadOnly = true;
     this.Column1.Width    = 65;
     //
     // Column2
     //
     this.Column2.DataPropertyName    = "ConvertHToNgay1";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.Column2.DefaultCellStyle    = dataGridViewCellStyle5;
     this.Column2.HeaderText          = "QĐ số giờ 1 chiều";
     this.Column2.Name     = "Column2";
     this.Column2.ReadOnly = true;
     this.Column2.Width    = 65;
     //
     // Column3
     //
     this.Column3.DataPropertyName    = "KmQuyDinh2Chieu";
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.Column3.DefaultCellStyle    = dataGridViewCellStyle6;
     this.Column3.HeaderText          = "QĐ Km 2 chiều";
     this.Column3.Name     = "Column3";
     this.Column3.ReadOnly = true;
     this.Column3.Width    = 65;
     //
     // Column4
     //
     this.Column4.DataPropertyName    = "ConvertHToNgay2";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.Column4.DefaultCellStyle    = dataGridViewCellStyle7;
     this.Column4.HeaderText          = "QĐ số giờ 2 chiều";
     this.Column4.Name     = "Column4";
     this.Column4.ReadOnly = true;
     this.Column4.Width    = 65;
     //
     // MaLoaiXe
     //
     this.MaLoaiXe.DataPropertyName = "LoaiXeID";
     this.MaLoaiXe.HeaderText       = "Mã Loại xe";
     this.MaLoaiXe.Name             = "MaLoaiXe";
     this.MaLoaiXe.ReadOnly         = true;
     this.MaLoaiXe.Visible          = false;
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.btnHuybo);
     this.groupBox5.Controls.Add(this.btnXoa);
     this.groupBox5.Controls.Add(this.txtGiaTien1Chieu);
     this.groupBox5.Controls.Add(this.label6);
     this.groupBox5.Controls.Add(this.btnLuu);
     this.groupBox5.Controls.Add(this.label13);
     this.groupBox5.Controls.Add(this.btnThemMoi);
     this.groupBox5.Controls.Add(this.groupBox4);
     this.groupBox5.Controls.Add(this.cboLoaiXe);
     this.groupBox5.Controls.Add(this.groupBox3);
     this.groupBox5.Controls.Add(this.txtGiaTien2Chieu);
     this.groupBox5.Controls.Add(this.label3);
     this.groupBox5.Controls.Add(this.label9);
     this.groupBox5.Controls.Add(this.label16);
     this.groupBox5.Location = new System.Drawing.Point(6, 19);
     this.groupBox5.Name     = "groupBox5";
     this.groupBox5.Size     = new System.Drawing.Size(603, 214);
     this.groupBox5.TabIndex = 0;
     this.groupBox5.TabStop  = false;
     //
     // btnHuybo
     //
     this.btnHuybo.Location = new System.Drawing.Point(339, 179);
     this.btnHuybo.Name     = "btnHuybo";
     this.btnHuybo.Size     = new System.Drawing.Size(75, 23);
     this.btnHuybo.TabIndex = 3;
     this.btnHuybo.Text     = "&Hủy bỏ";
     this.btnHuybo.UseVisualStyleBackColor = true;
     this.btnHuybo.Click += new System.EventHandler(this.btnHuybo_Click);
     //
     // btnXoa
     //
     this.btnXoa.Location = new System.Drawing.Point(420, 179);
     this.btnXoa.Name     = "btnXoa";
     this.btnXoa.Size     = new System.Drawing.Size(75, 23);
     this.btnXoa.TabIndex = 2;
     this.btnXoa.Text     = "&Xóa";
     this.btnXoa.UseVisualStyleBackColor = true;
     this.btnXoa.Click += new System.EventHandler(this.btnXoa_Click);
     //
     // txtGiaTien1Chieu
     //
     this.txtGiaTien1Chieu.Location  = new System.Drawing.Point(142, 151);
     this.txtGiaTien1Chieu.Name      = "txtGiaTien1Chieu";
     this.txtGiaTien1Chieu.Size      = new System.Drawing.Size(102, 20);
     this.txtGiaTien1Chieu.TabIndex  = 1;
     this.txtGiaTien1Chieu.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtGiaTien1Chieu.Leave    += new System.EventHandler(this.txtGiaTien1Chieu_Leave);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(46, 157);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(81, 13);
     this.label6.TabIndex = 11;
     this.label6.Text     = "Giá tiền 1 chiều";
     //
     // btnLuu
     //
     this.btnLuu.Location = new System.Drawing.Point(258, 179);
     this.btnLuu.Name     = "btnLuu";
     this.btnLuu.Size     = new System.Drawing.Size(75, 23);
     this.btnLuu.TabIndex = 3;
     this.btnLuu.Text     = "&Lưu";
     this.btnLuu.UseVisualStyleBackColor = true;
     this.btnLuu.Click += new System.EventHandler(this.btnLuu_Click);
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(248, 153);
     this.label13.Name     = "label13";
     this.label13.Size     = new System.Drawing.Size(39, 13);
     this.label13.TabIndex = 15;
     this.label13.Text     = "(nghìn)";
     //
     // btnThemMoi
     //
     this.btnThemMoi.Location = new System.Drawing.Point(177, 179);
     this.btnThemMoi.Name     = "btnThemMoi";
     this.btnThemMoi.Size     = new System.Drawing.Size(75, 23);
     this.btnThemMoi.TabIndex = 0;
     this.btnThemMoi.Text     = "&Thêm mới";
     this.btnThemMoi.UseVisualStyleBackColor = true;
     this.btnThemMoi.Click += new System.EventHandler(this.btnThemMoi_Click);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.label14);
     this.groupBox4.Controls.Add(this.label15);
     this.groupBox4.Controls.Add(this.label8);
     this.groupBox4.Controls.Add(this.label7);
     this.groupBox4.Controls.Add(this.txtKmQD2Chieu);
     this.groupBox4.Controls.Add(this.txtThoiGianQD2Chieu);
     this.groupBox4.Location = new System.Drawing.Point(300, 2);
     this.groupBox4.Name     = "groupBox4";
     this.groupBox4.Size     = new System.Drawing.Size(288, 100);
     this.groupBox4.TabIndex = 6;
     this.groupBox4.TabStop  = false;
     this.groupBox4.Text     = "Giá quy đinh chạy 2 chiều";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(251, 45);
     this.label14.Name     = "label14";
     this.label14.Size     = new System.Drawing.Size(27, 13);
     this.label14.TabIndex = 20;
     this.label14.Text     = "(giờ)";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(250, 18);
     this.label15.Name     = "label15";
     this.label15.Size     = new System.Drawing.Size(28, 13);
     this.label15.TabIndex = 19;
     this.label15.Text     = "(Km)";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(6, 45);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(133, 13);
     this.label8.TabIndex = 13;
     this.label8.Text     = "Thời gian qui định 2 chiều ";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(8, 19);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(101, 13);
     this.label7.TabIndex = 13;
     this.label7.Text     = "Km qui định 2 chiều";
     //
     // txtKmQD2Chieu
     //
     this.txtKmQD2Chieu.Location  = new System.Drawing.Point(140, 16);
     this.txtKmQD2Chieu.Name      = "txtKmQD2Chieu";
     this.txtKmQD2Chieu.Size      = new System.Drawing.Size(100, 20);
     this.txtKmQD2Chieu.TabIndex  = 0;
     this.txtKmQD2Chieu.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtThoiGianQD2Chieu
     //
     this.txtThoiGianQD2Chieu.Location  = new System.Drawing.Point(140, 42);
     this.txtThoiGianQD2Chieu.Name      = "txtThoiGianQD2Chieu";
     this.txtThoiGianQD2Chieu.Size      = new System.Drawing.Size(100, 20);
     this.txtThoiGianQD2Chieu.TabIndex  = 1;
     this.txtThoiGianQD2Chieu.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtThoiGianQD2Chieu.Leave    += new System.EventHandler(this.txtThoiGianQD2Chieu_Leave);
     //
     // cboLoaiXe
     //
     this.cboLoaiXe.DisplayMember     = "TuyenDuongID";
     this.cboLoaiXe.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboLoaiXe.FormattingEnabled = true;
     this.cboLoaiXe.Items.AddRange(new object[] {
         "Tất cả",
         "Tuyến ngoại thành",
         "Tuyến ngoại tỉnh"
     });
     this.cboLoaiXe.Location              = new System.Drawing.Point(59, 115);
     this.cboLoaiXe.Name                  = "cboLoaiXe";
     this.cboLoaiXe.Size                  = new System.Drawing.Size(218, 21);
     this.cboLoaiXe.TabIndex              = 0;
     this.cboLoaiXe.ValueMember           = "TuyenDuongID";
     this.cboLoaiXe.SelectedIndexChanged += new System.EventHandler(this.cboLoaiXe_SelectedIndexChanged);
     this.cboLoaiXe.Leave                += new System.EventHandler(this.cboLoaiXe_Leave);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.txtVeTram);
     this.groupBox3.Controls.Add(this.label18);
     this.groupBox3.Controls.Add(this.label12);
     this.groupBox3.Controls.Add(this.label11);
     this.groupBox3.Controls.Add(this.txtThoiGianQD1Chieu);
     this.groupBox3.Controls.Add(this.label5);
     this.groupBox3.Controls.Add(this.txtKmQD1Chieu);
     this.groupBox3.Controls.Add(this.label4);
     this.groupBox3.Location = new System.Drawing.Point(6, 0);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(288, 102);
     this.groupBox3.TabIndex = 5;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Giá quy đinh chạy 1 chiều";
     //
     // txtVeTram
     //
     this.txtVeTram.Location  = new System.Drawing.Point(136, 71);
     this.txtVeTram.Name      = "txtVeTram";
     this.txtVeTram.Size      = new System.Drawing.Size(102, 20);
     this.txtVeTram.TabIndex  = 15;
     this.txtVeTram.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(78, 74);
     this.label18.Name     = "label18";
     this.label18.Size     = new System.Drawing.Size(43, 13);
     this.label18.TabIndex = 16;
     this.label18.Text     = "Vé trạm";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(250, 51);
     this.label12.Name     = "label12";
     this.label12.Size     = new System.Drawing.Size(27, 13);
     this.label12.TabIndex = 14;
     this.label12.Text     = "(giờ)";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(249, 27);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(28, 13);
     this.label11.TabIndex = 13;
     this.label11.Text     = "(Km)";
     //
     // txtThoiGianQD1Chieu
     //
     this.txtThoiGianQD1Chieu.Location  = new System.Drawing.Point(136, 48);
     this.txtThoiGianQD1Chieu.Name      = "txtThoiGianQD1Chieu";
     this.txtThoiGianQD1Chieu.Size      = new System.Drawing.Size(102, 20);
     this.txtThoiGianQD1Chieu.TabIndex  = 1;
     this.txtThoiGianQD1Chieu.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(6, 51);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(133, 13);
     this.label5.TabIndex = 9;
     this.label5.Text     = "Thời gian qui định 1 chiều ";
     //
     // txtKmQD1Chieu
     //
     this.txtKmQD1Chieu.Location  = new System.Drawing.Point(136, 23);
     this.txtKmQD1Chieu.Name      = "txtKmQD1Chieu";
     this.txtKmQD1Chieu.Size      = new System.Drawing.Size(102, 20);
     this.txtKmQD1Chieu.TabIndex  = 0;
     this.txtKmQD1Chieu.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(6, 26);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(101, 13);
     this.label4.TabIndex = 7;
     this.label4.Text     = "Km qui định 1 chiều";
     //
     // txtGiaTien2Chieu
     //
     this.txtGiaTien2Chieu.Location  = new System.Drawing.Point(440, 150);
     this.txtGiaTien2Chieu.Name      = "txtGiaTien2Chieu";
     this.txtGiaTien2Chieu.Size      = new System.Drawing.Size(100, 20);
     this.txtGiaTien2Chieu.TabIndex  = 2;
     this.txtGiaTien2Chieu.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtGiaTien2Chieu.Leave    += new System.EventHandler(this.txtGiaTien2Chieu_Leave);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(12, 118);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(41, 13);
     this.label3.TabIndex = 0;
     this.label3.Text     = "Loại xe";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(353, 154);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(81, 13);
     this.label9.TabIndex = 17;
     this.label9.Text     = "Giá tiền 2 chiều";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(544, 152);
     this.label16.Name     = "label16";
     this.label16.Size     = new System.Drawing.Size(39, 13);
     this.label16.TabIndex = 21;
     this.label16.Text     = "(nghìn)";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.Location = new System.Drawing.Point(14, 8);
     this.label17.Name     = "label17";
     this.label17.Size     = new System.Drawing.Size(75, 15);
     this.label17.TabIndex = 4;
     this.label17.Text     = "Áp dụng cho";
     //
     // cboViTri
     //
     this.cboViTri.ComboStyle          = Janus.Windows.EditControls.ComboStyle.DropDownList;
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.Text              = "Hải Dương";
     uiComboBoxItem1.Value             = false;
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.Text              = "Hải Phòng";
     uiComboBoxItem2.Value             = true;
     this.cboViTri.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2
     });
     this.cboViTri.Location              = new System.Drawing.Point(90, 7);
     this.cboViTri.Name                  = "cboViTri";
     this.cboViTri.Size                  = new System.Drawing.Size(151, 20);
     this.cboViTri.TabIndex              = 5;
     this.cboViTri.SelectedValueChanged += new System.EventHandler(this.cboViTri_SelectedValueChanged);
     //
     // lnkXoaTuyen
     //
     this.lnkXoaTuyen.AutoSize     = true;
     this.lnkXoaTuyen.Location     = new System.Drawing.Point(194, 588);
     this.lnkXoaTuyen.Name         = "lnkXoaTuyen";
     this.lnkXoaTuyen.Size         = new System.Drawing.Size(55, 13);
     this.lnkXoaTuyen.TabIndex     = 6;
     this.lnkXoaTuyen.TabStop      = true;
     this.lnkXoaTuyen.Text         = "Xóa tuyến";
     this.lnkXoaTuyen.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkXoaTuyen_LinkClicked);
     //
     // lnkThemTuyen
     //
     this.lnkThemTuyen.AutoSize     = true;
     this.lnkThemTuyen.Location     = new System.Drawing.Point(71, 588);
     this.lnkThemTuyen.Name         = "lnkThemTuyen";
     this.lnkThemTuyen.Size         = new System.Drawing.Size(63, 13);
     this.lnkThemTuyen.TabIndex     = 7;
     this.lnkThemTuyen.TabStop      = true;
     this.lnkThemTuyen.Text         = "Thêm tuyến";
     this.lnkThemTuyen.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkThemTuyen_LinkClicked);
     //
     // lnkSuaTuyen
     //
     this.lnkSuaTuyen.AutoSize     = true;
     this.lnkSuaTuyen.Location     = new System.Drawing.Point(135, 588);
     this.lnkSuaTuyen.Name         = "lnkSuaTuyen";
     this.lnkSuaTuyen.Size         = new System.Drawing.Size(55, 13);
     this.lnkSuaTuyen.TabIndex     = 8;
     this.lnkSuaTuyen.TabStop      = true;
     this.lnkSuaTuyen.Text         = "Sửa tuyến";
     this.lnkSuaTuyen.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkSuaTuyen_LinkClicked);
     //
     // frmNhapBangGiaGoc
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(972, 606);
     this.Controls.Add(this.lnkSuaTuyen);
     this.Controls.Add(this.lnkThemTuyen);
     this.Controls.Add(this.lnkXoaTuyen);
     this.Controls.Add(this.cboViTri);
     this.Controls.Add(this.label17);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "frmNhapBangGiaGoc";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Nhập bảng giá gốc";
     this.Load         += new System.EventHandler(this.frmNhapBangGiaGoc_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdLoaiXeTuyenDuong)).EndInit();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(frm_baocaosoluongbenhnhantheobacsy));
     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.GridEX.GridEXLayout grdChitiet_DesignTimeLayout  = new Janus.Windows.GridEX.GridEXLayout();
     this.cmdExportToExcel = new Janus.Windows.EditControls.UIButton();
     this.dtNgayInPhieu    = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.label3           = new System.Windows.Forms.Label();
     this.cmdInPhieuXN     = new Janus.Windows.EditControls.UIButton();
     this.cmdExit          = new Janus.Windows.EditControls.UIButton();
     this.saveFileDialog1  = new System.Windows.Forms.SaveFileDialog();
     this.gridEXExporter1  = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
     this.printDialog1     = new System.Windows.Forms.PrintDialog();
     this.baocaO_TIEUDE1   = new VNS.HIS.UI.FORMs.BAOCAO.BHYT.UserControls.BAOCAO_TIEUDE();
     this.uiGroupBox2      = new Janus.Windows.EditControls.UIGroupBox();
     this.txtNhanvien      = new VNS.HIS.UCs.AutoCompleteTextbox_Nhanvien();
     this.cboKhoaPhong     = new Janus.Windows.EditControls.UIComboBox();
     this.label2           = new System.Windows.Forms.Label();
     this.panel1           = new System.Windows.Forms.Panel();
     this.grdChitiet       = new Janus.Windows.GridEX.GridEX();
     this.cboKhoa          = new Janus.Windows.EditControls.UIComboBox();
     this.label4           = new System.Windows.Forms.Label();
     this.label8           = new System.Windows.Forms.Label();
     this.cboDoituongKCB   = new Janus.Windows.EditControls.UIComboBox();
     this.label1           = new System.Windows.Forms.Label();
     this.dtToDate         = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtFromDate       = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.chkByDate        = new Janus.Windows.EditControls.UICheckBox();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
     this.uiGroupBox2.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).BeginInit();
     this.SuspendLayout();
     //
     // cmdExportToExcel
     //
     this.cmdExportToExcel.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdExportToExcel.Font        = new System.Drawing.Font("Arial", 9F);
     this.cmdExportToExcel.Image       = ((System.Drawing.Image)(resources.GetObject("cmdExportToExcel.Image")));
     this.cmdExportToExcel.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdExportToExcel.Location    = new System.Drawing.Point(364, 530);
     this.cmdExportToExcel.Name        = "cmdExportToExcel";
     this.cmdExportToExcel.Size        = new System.Drawing.Size(133, 30);
     this.cmdExportToExcel.TabIndex    = 9;
     this.cmdExportToExcel.Text        = "Xuất Excel";
     this.cmdExportToExcel.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
     this.cmdExportToExcel.Click      += new System.EventHandler(this.cmdExportToExcel_Click);
     //
     // dtNgayInPhieu
     //
     this.dtNgayInPhieu.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.dtNgayInPhieu.CustomFormat = "dd/MM/yyyy";
     this.dtNgayInPhieu.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtNgayInPhieu.DropDownCalendar.Name = "";
     this.dtNgayInPhieu.Font       = new System.Drawing.Font("Arial", 9F);
     this.dtNgayInPhieu.Location   = new System.Drawing.Point(81, 530);
     this.dtNgayInPhieu.Name       = "dtNgayInPhieu";
     this.dtNgayInPhieu.ShowUpDown = true;
     this.dtNgayInPhieu.Size       = new System.Drawing.Size(200, 21);
     this.dtNgayInPhieu.TabIndex   = 11;
     this.dtNgayInPhieu.TabStop    = false;
     this.dtNgayInPhieu.Value      = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
     //
     // label3
     //
     this.label3.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.AutoSize = true;
     this.label3.Font     = new System.Drawing.Font("Arial", 9F);
     this.label3.Location = new System.Drawing.Point(3, 534);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(48, 15);
     this.label3.TabIndex = 88;
     this.label3.Text     = "Ngày in";
     //
     // cmdInPhieuXN
     //
     this.cmdInPhieuXN.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdInPhieuXN.Font        = new System.Drawing.Font("Arial", 9F);
     this.cmdInPhieuXN.Image       = ((System.Drawing.Image)(resources.GetObject("cmdInPhieuXN.Image")));
     this.cmdInPhieuXN.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdInPhieuXN.Location    = new System.Drawing.Point(503, 530);
     this.cmdInPhieuXN.Name        = "cmdInPhieuXN";
     this.cmdInPhieuXN.Size        = new System.Drawing.Size(133, 30);
     this.cmdInPhieuXN.TabIndex    = 8;
     this.cmdInPhieuXN.Text        = "In báo cáo";
     this.cmdInPhieuXN.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
     this.cmdInPhieuXN.Click      += new System.EventHandler(this.cmdInPhieuXN_Click);
     //
     // cmdExit
     //
     this.cmdExit.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdExit.Font      = new System.Drawing.Font("Arial", 9F);
     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(642, 530);
     this.cmdExit.Name      = "cmdExit";
     this.cmdExit.Size      = new System.Drawing.Size(133, 30);
     this.cmdExit.TabIndex  = 10;
     this.cmdExit.Text      = "Thoát (Esc)";
     //
     // printDialog1
     //
     this.printDialog1.UseEXDialog = true;
     //
     // baocaO_TIEUDE1
     //
     this.baocaO_TIEUDE1.BackColor         = System.Drawing.SystemColors.Control;
     this.baocaO_TIEUDE1.Dock              = System.Windows.Forms.DockStyle.Top;
     this.baocaO_TIEUDE1.Location          = new System.Drawing.Point(0, 0);
     this.baocaO_TIEUDE1.MA_BAOCAO         = "THUOC_BCDSACH_BNHANLINHTHUOC";
     this.baocaO_TIEUDE1.Name              = "baocaO_TIEUDE1";
     this.baocaO_TIEUDE1.Phimtat           = "Bạn có thể sử dụng phím tắt";
     this.baocaO_TIEUDE1.PicImg            = ((System.Drawing.Image)(resources.GetObject("baocaO_TIEUDE1.PicImg")));
     this.baocaO_TIEUDE1.ShortcutAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.baocaO_TIEUDE1.ShortcutFont      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.baocaO_TIEUDE1.showHelp          = false;
     this.baocaO_TIEUDE1.Size              = new System.Drawing.Size(784, 53);
     this.baocaO_TIEUDE1.TabIndex          = 115;
     this.baocaO_TIEUDE1.TIEUDE            = "BÁO CÁO DOANH THU PHÒNG KHÁM";
     this.baocaO_TIEUDE1.TitleFont         = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     //
     // uiGroupBox2
     //
     this.uiGroupBox2.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.uiGroupBox2.Controls.Add(this.txtNhanvien);
     this.uiGroupBox2.Controls.Add(this.cboKhoaPhong);
     this.uiGroupBox2.Controls.Add(this.label2);
     this.uiGroupBox2.Controls.Add(this.panel1);
     this.uiGroupBox2.Controls.Add(this.cboKhoa);
     this.uiGroupBox2.Controls.Add(this.label4);
     this.uiGroupBox2.Controls.Add(this.label8);
     this.uiGroupBox2.Controls.Add(this.cboDoituongKCB);
     this.uiGroupBox2.Controls.Add(this.label1);
     this.uiGroupBox2.Controls.Add(this.dtToDate);
     this.uiGroupBox2.Controls.Add(this.dtFromDate);
     this.uiGroupBox2.Controls.Add(this.chkByDate);
     this.uiGroupBox2.Font     = new System.Drawing.Font("Arial", 9F);
     this.uiGroupBox2.Image    = ((System.Drawing.Image)(resources.GetObject("uiGroupBox2.Image")));
     this.uiGroupBox2.Location = new System.Drawing.Point(0, 59);
     this.uiGroupBox2.Name     = "uiGroupBox2";
     this.uiGroupBox2.Size     = new System.Drawing.Size(784, 465);
     this.uiGroupBox2.TabIndex = 116;
     this.uiGroupBox2.Text     = "Thông tin tìm kiếm";
     //
     // txtNhanvien
     //
     this.txtNhanvien._backcolor           = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.txtNhanvien._Font                = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNhanvien.AutoCompleteList     = ((System.Collections.Generic.List <string>)(resources.GetObject("txtNhanvien.AutoCompleteList")));
     this.txtNhanvien.BorderStyle          = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtNhanvien.CaseSensitive        = false;
     this.txtNhanvien.CompareNoID          = true;
     this.txtNhanvien.DefaultCode          = "-1";
     this.txtNhanvien.DefaultID            = "-1";
     this.txtNhanvien.Drug_ID              = null;
     this.txtNhanvien.ExtraWidth           = 0;
     this.txtNhanvien.FillValueAfterSelect = false;
     this.txtNhanvien.LOAI_NHANVIEN        = null;
     this.txtNhanvien.Location             = new System.Drawing.Point(123, 82);
     this.txtNhanvien.MaxHeight            = -1;
     this.txtNhanvien.MinTypedCharacters   = 2;
     this.txtNhanvien.MyCode               = "-1";
     this.txtNhanvien.MyID                     = "-1";
     this.txtNhanvien.Name                     = "txtNhanvien";
     this.txtNhanvien.RaiseEvent               = false;
     this.txtNhanvien.RaiseEventEnter          = false;
     this.txtNhanvien.RaiseEventEnterWhenEmpty = false;
     this.txtNhanvien.SelectedIndex            = -1;
     this.txtNhanvien.Size                     = new System.Drawing.Size(632, 21);
     this.txtNhanvien.splitChar                = '@';
     this.txtNhanvien.splitCharIDAndCode       = '#';
     this.txtNhanvien.TabIndex                 = 60;
     this.txtNhanvien.TakeCode                 = false;
     this.txtNhanvien.txtMyCode                = null;
     this.txtNhanvien.txtMyCode_Edit           = null;
     this.txtNhanvien.txtMyID                  = null;
     this.txtNhanvien.txtMyID_Edit             = null;
     this.txtNhanvien.txtMyName                = null;
     this.txtNhanvien.txtMyName_Edit           = null;
     this.txtNhanvien.txtNext                  = null;
     //
     // cboKhoaPhong
     //
     this.cboKhoaPhong.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              = "Tất cả";
     uiComboBoxItem1.Value             = ((short)(-1));
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator       = false;
     uiComboBoxItem2.Text              = "Ngoại trú";
     uiComboBoxItem2.Value             = ((short)(0));
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator       = false;
     uiComboBoxItem3.Text              = "Nội trú";
     uiComboBoxItem3.Value             = ((short)(1));
     this.cboKhoaPhong.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2,
         uiComboBoxItem3
     });
     this.cboKhoaPhong.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboKhoaPhong.Location           = new System.Drawing.Point(456, 54);
     this.cboKhoaPhong.Name               = "cboKhoaPhong";
     this.cboKhoaPhong.SelectInDataSource = true;
     this.cboKhoaPhong.Size               = new System.Drawing.Size(299, 21);
     this.cboKhoaPhong.TabIndex           = 2;
     this.cboKhoaPhong.Text               = "Chọn khoa thực hiện";
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(345, 56);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(107, 15);
     this.label2.TabIndex  = 59;
     this.label2.Text      = "Phòng thực hiện:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // panel1
     //
     this.panel1.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.panel1.Controls.Add(this.grdChitiet);
     this.panel1.Location = new System.Drawing.Point(6, 150);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(772, 309);
     this.panel1.TabIndex = 46;
     //
     // grdChitiet
     //
     this.grdChitiet.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     grdChitiet_DesignTimeLayout.LayoutString = resources.GetString("grdChitiet_DesignTimeLayout.LayoutString");
     this.grdChitiet.DesignTimeLayout         = grdChitiet_DesignTimeLayout;
     this.grdChitiet.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdChitiet.GroupByBoxVisible = false;
     this.grdChitiet.HideSelection     = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdChitiet.Location          = new System.Drawing.Point(0, 0);
     this.grdChitiet.Name             = "grdChitiet";
     this.grdChitiet.RowHeaders       = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdChitiet.Size             = new System.Drawing.Size(772, 309);
     this.grdChitiet.TabIndex         = 21;
     this.grdChitiet.TabStop          = false;
     this.grdChitiet.TotalRow         = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdChitiet.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdChitiet.VisualStyle      = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // cboKhoa
     //
     this.cboKhoa.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboKhoa.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboKhoa.Location           = new System.Drawing.Point(123, 27);
     this.cboKhoa.Name               = "cboKhoa";
     this.cboKhoa.SelectInDataSource = true;
     this.cboKhoa.Size               = new System.Drawing.Size(632, 21);
     this.cboKhoa.TabIndex           = 0;
     this.cboKhoa.Text               = "Khoa thực hiện";
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(13, 29);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(104, 15);
     this.label4.TabIndex  = 44;
     this.label4.Text      = "Khoa KCB";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label8
     //
     this.label8.Location  = new System.Drawing.Point(13, 83);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(104, 15);
     this.label8.TabIndex  = 30;
     this.label8.Text      = "Bác sỹ khám:";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboDoituongKCB
     //
     this.cboDoituongKCB.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboDoituongKCB.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboDoituongKCB.Location           = new System.Drawing.Point(123, 54);
     this.cboDoituongKCB.Name               = "cboDoituongKCB";
     this.cboDoituongKCB.SelectInDataSource = true;
     this.cboDoituongKCB.Size               = new System.Drawing.Size(200, 21);
     this.cboDoituongKCB.TabIndex           = 1;
     this.cboDoituongKCB.Text               = "Đối tượng";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(13, 56);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(104, 15);
     this.label1.TabIndex  = 16;
     this.label1.Text      = "Đối tượng KCB:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // dtToDate
     //
     this.dtToDate.CustomFormat = "dd/MM/yyyy";
     this.dtToDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtToDate.DropDownCalendar.Name = "";
     this.dtToDate.Font       = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtToDate.Location   = new System.Drawing.Point(331, 108);
     this.dtToDate.Name       = "dtToDate";
     this.dtToDate.ShowUpDown = true;
     this.dtToDate.Size       = new System.Drawing.Size(200, 21);
     this.dtToDate.TabIndex   = 6;
     this.dtToDate.Value      = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
     //
     // dtFromDate
     //
     this.dtFromDate.CustomFormat = "dd/MM/yyyy";
     this.dtFromDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtFromDate.DropDownCalendar.Name = "";
     this.dtFromDate.Font       = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtFromDate.Location   = new System.Drawing.Point(123, 108);
     this.dtFromDate.Name       = "dtFromDate";
     this.dtFromDate.ShowUpDown = true;
     this.dtFromDate.Size       = new System.Drawing.Size(200, 21);
     this.dtFromDate.TabIndex   = 5;
     this.dtFromDate.Value      = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
     //
     // chkByDate
     //
     this.chkByDate.Checked    = true;
     this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkByDate.Location   = new System.Drawing.Point(48, 109);
     this.chkByDate.Name       = "chkByDate";
     this.chkByDate.Size       = new System.Drawing.Size(69, 23);
     this.chkByDate.TabIndex   = 4;
     this.chkByDate.Text       = "Từ ngày";
     //
     // frm_baocaosoluongbenhnhantheobacsy
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(784, 562);
     this.Controls.Add(this.uiGroupBox2);
     this.Controls.Add(this.baocaO_TIEUDE1);
     this.Controls.Add(this.cmdExportToExcel);
     this.Controls.Add(this.dtNgayInPhieu);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.cmdInPhieuXN);
     this.Controls.Add(this.cmdExit);
     this.KeyPreview    = true;
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "frm_baocaosoluongbenhnhantheobacsy";
     this.ShowIcon      = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "BÁO CÁO THU TIỀN DỊCH VỤ KCB";
     this.Load         += new System.EventHandler(this.frm_BAOCAO_TONGHOP_TAI_KKB_DTUONG_THUPHI_Load);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
     this.uiGroupBox2.ResumeLayout(false);
     this.uiGroupBox2.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #32
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(frmUpdateMaBenhAn));
     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.EditControls.UIComboBoxItem      uiComboBoxItem7 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem8 = new Janus.Windows.EditControls.UIComboBoxItem();
     this.cmdUpdate        = new System.Windows.Forms.Button();
     this.cmdThoat         = new System.Windows.Forms.Button();
     this.txtmalankham     = new System.Windows.Forms.TextBox();
     this.txtmabenhanmoi   = new System.Windows.Forms.TextBox();
     this.label1           = new System.Windows.Forms.Label();
     this.label2           = new System.Windows.Forms.Label();
     this.label3           = new System.Windows.Forms.Label();
     this.cboloaibenhan    = new Janus.Windows.EditControls.UIComboBox();
     this.txtnamsinhcu     = new System.Windows.Forms.TextBox();
     this.label4           = new System.Windows.Forms.Label();
     this.txttenbenhnhancu = new System.Windows.Forms.TextBox();
     this.txtidbenhnhancu  = new System.Windows.Forms.TextBox();
     this.SuspendLayout();
     //
     // cmdUpdate
     //
     this.cmdUpdate.Image                   = ((System.Drawing.Image)(resources.GetObject("cmdUpdate.Image")));
     this.cmdUpdate.ImageAlign              = System.Drawing.ContentAlignment.MiddleLeft;
     this.cmdUpdate.Location                = new System.Drawing.Point(89, 183);
     this.cmdUpdate.Name                    = "cmdUpdate";
     this.cmdUpdate.Size                    = new System.Drawing.Size(109, 39);
     this.cmdUpdate.TabIndex                = 0;
     this.cmdUpdate.Text                    = "Chấp nhận";
     this.cmdUpdate.TextAlign               = System.Drawing.ContentAlignment.MiddleRight;
     this.cmdUpdate.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.cmdUpdate.UseVisualStyleBackColor = true;
     this.cmdUpdate.Click                  += new System.EventHandler(this.cmdUpdate_Click);
     //
     // cmdThoat
     //
     this.cmdThoat.Image                   = ((System.Drawing.Image)(resources.GetObject("cmdThoat.Image")));
     this.cmdThoat.Location                = new System.Drawing.Point(220, 183);
     this.cmdThoat.Name                    = "cmdThoat";
     this.cmdThoat.Size                    = new System.Drawing.Size(111, 39);
     this.cmdThoat.TabIndex                = 1;
     this.cmdThoat.Text                    = "Thoát";
     this.cmdThoat.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.cmdThoat.UseVisualStyleBackColor = true;
     this.cmdThoat.Click                  += new System.EventHandler(this.cmdThoat_Click);
     //
     // txtmalankham
     //
     this.txtmalankham.Location  = new System.Drawing.Point(112, 23);
     this.txtmalankham.Multiline = true;
     this.txtmalankham.Name      = "txtmalankham";
     this.txtmalankham.ReadOnly  = true;
     this.txtmalankham.Size      = new System.Drawing.Size(195, 30);
     this.txtmalankham.TabIndex  = 2;
     this.txtmalankham.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // txtmabenhanmoi
     //
     this.txtmabenhanmoi.Font      = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtmabenhanmoi.Location  = new System.Drawing.Point(112, 135);
     this.txtmabenhanmoi.Multiline = true;
     this.txtmabenhanmoi.Name      = "txtmabenhanmoi";
     this.txtmabenhanmoi.Size      = new System.Drawing.Size(195, 30);
     this.txtmabenhanmoi.TabIndex  = 3;
     this.txtmabenhanmoi.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(3, 30);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(88, 16);
     this.label1.TabIndex = 4;
     this.label1.Text     = "Mã lần khám";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(3, 142);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(110, 16);
     this.label2.TabIndex = 5;
     this.label2.Text     = "Mã bệnh án mới";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(3, 103);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(91, 16);
     this.label3.TabIndex = 7;
     this.label3.Text     = "Loại bệnh án";
     //
     // cboloaibenhan
     //
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.IsSeparator       = false;
     uiComboBoxItem1.Text              = "Chọn bệnh án";
     uiComboBoxItem1.Value             = "-1";
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator       = false;
     uiComboBoxItem2.Text              = "Bệnh án Đái tháo đường";
     uiComboBoxItem2.Value             = "DTD";
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator       = false;
     uiComboBoxItem3.Text              = "Bệnh án Tăng huyết áp";
     uiComboBoxItem3.Value             = "THA";
     uiComboBoxItem4.FormatStyle.Alpha = 0;
     uiComboBoxItem4.IsSeparator       = false;
     uiComboBoxItem4.Text              = "Bệnh án Basedow";
     uiComboBoxItem4.Value             = "BAS";
     uiComboBoxItem5.FormatStyle.Alpha = 0;
     uiComboBoxItem5.IsSeparator       = false;
     uiComboBoxItem5.Text              = "Bệnh án COP";
     uiComboBoxItem5.Value             = "COP";
     uiComboBoxItem6.FormatStyle.Alpha = 0;
     uiComboBoxItem6.IsSeparator       = false;
     uiComboBoxItem6.Text              = "Bệnh án Viêm gan B";
     uiComboBoxItem6.Value             = "VGB";
     uiComboBoxItem7.FormatStyle.Alpha = 0;
     uiComboBoxItem7.IsSeparator       = false;
     uiComboBoxItem7.Text              = "Bệnh án Tai mũi họng";
     uiComboBoxItem7.Value             = "TMH";
     uiComboBoxItem8.FormatStyle.Alpha = 0;
     uiComboBoxItem8.IsSeparator       = false;
     uiComboBoxItem8.Text              = "Bệnh án Răng hàm mặt";
     uiComboBoxItem8.Value             = "RHM";
     this.cboloaibenhan.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2,
         uiComboBoxItem3,
         uiComboBoxItem4,
         uiComboBoxItem5,
         uiComboBoxItem6,
         uiComboBoxItem7,
         uiComboBoxItem8
     });
     this.cboloaibenhan.Location      = new System.Drawing.Point(112, 96);
     this.cboloaibenhan.Name          = "cboloaibenhan";
     this.cboloaibenhan.SelectedIndex = 0;
     this.cboloaibenhan.Size          = new System.Drawing.Size(195, 23);
     this.cboloaibenhan.TabIndex      = 8;
     this.cboloaibenhan.Text          = "Chọn bệnh án";
     //
     // txtnamsinhcu
     //
     this.txtnamsinhcu.Location  = new System.Drawing.Point(313, 60);
     this.txtnamsinhcu.Multiline = true;
     this.txtnamsinhcu.Name      = "txtnamsinhcu";
     this.txtnamsinhcu.ReadOnly  = true;
     this.txtnamsinhcu.Size      = new System.Drawing.Size(66, 30);
     this.txtnamsinhcu.TabIndex  = 15;
     this.txtnamsinhcu.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(1, 67);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(105, 16);
     this.label4.TabIndex = 14;
     this.label4.Text     = "Tên bệnh nhân";
     //
     // txttenbenhnhancu
     //
     this.txttenbenhnhancu.Location  = new System.Drawing.Point(112, 60);
     this.txttenbenhnhancu.Multiline = true;
     this.txttenbenhnhancu.Name      = "txttenbenhnhancu";
     this.txttenbenhnhancu.ReadOnly  = true;
     this.txttenbenhnhancu.Size      = new System.Drawing.Size(195, 30);
     this.txttenbenhnhancu.TabIndex  = 13;
     this.txttenbenhnhancu.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // txtidbenhnhancu
     //
     this.txtidbenhnhancu.Location  = new System.Drawing.Point(313, 23);
     this.txtidbenhnhancu.Multiline = true;
     this.txtidbenhnhancu.Name      = "txtidbenhnhancu";
     this.txtidbenhnhancu.ReadOnly  = true;
     this.txtidbenhnhancu.Size      = new System.Drawing.Size(66, 30);
     this.txtidbenhnhancu.TabIndex  = 17;
     this.txtidbenhnhancu.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // frmUpdateMaBenhAn
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(389, 245);
     this.Controls.Add(this.txtidbenhnhancu);
     this.Controls.Add(this.txtnamsinhcu);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.txttenbenhnhancu);
     this.Controls.Add(this.cboloaibenhan);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.txtmabenhanmoi);
     this.Controls.Add(this.txtmalankham);
     this.Controls.Add(this.cmdThoat);
     this.Controls.Add(this.cmdUpdate);
     this.Font          = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "frmUpdateMaBenhAn";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Update Mã Bệnh Án";
     this.Load         += new System.EventHandler(this.frmUpdateMaBenhAn_Load);
     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()
 {
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem1        = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem2        = new Janus.Windows.EditControls.UIComboBoxItem();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmTraCuuBangGiaGoc));
     this.cboKieuTuyen        = new System.Windows.Forms.ComboBox();
     this.label1              = new System.Windows.Forms.Label();
     this.groupBox1           = new System.Windows.Forms.GroupBox();
     this.label2              = new System.Windows.Forms.Label();
     this.lstTuyenDuong       = new System.Windows.Forms.ListBox();
     this.label17             = new System.Windows.Forms.Label();
     this.cboViTri            = new Janus.Windows.EditControls.UIComboBox();
     this.label10             = new System.Windows.Forms.Label();
     this.grdLoaiXeTuyenDuong = new System.Windows.Forms.DataGridView();
     this.ID            = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TenTuyenDuong = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TenLoaiXe     = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column5       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column6       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.VeTram        = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column1       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column4       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaLoaiXe      = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdLoaiXeTuyenDuong)).BeginInit();
     this.SuspendLayout();
     //
     // cboKieuTuyen
     //
     this.cboKieuTuyen.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboKieuTuyen.FormattingEnabled = true;
     this.cboKieuTuyen.Items.AddRange(new object[] {
         "Tất cả",
         "Tuyến ngoại thành",
         "Tuyến ngoại tỉnh"
     });
     this.cboKieuTuyen.Location              = new System.Drawing.Point(78, 20);
     this.cboKieuTuyen.Name                  = "cboKieuTuyen";
     this.cboKieuTuyen.Size                  = new System.Drawing.Size(117, 21);
     this.cboKieuTuyen.TabIndex              = 0;
     this.cboKieuTuyen.SelectedIndexChanged += new System.EventHandler(this.cboKieuTuyen_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(15, 26);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(57, 13);
     this.label1.TabIndex = 1;
     this.label1.Text     = "Kiểu tuyến";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.lstTuyenDuong);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.cboKieuTuyen);
     this.groupBox1.Location = new System.Drawing.Point(12, 38);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(208, 547);
     this.groupBox1.TabIndex = 2;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Tuyến đường";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(13, 53);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(143, 13);
     this.label2.TabIndex = 3;
     this.label2.Text     = "Danh sách các tuyến đường";
     //
     // lstTuyenDuong
     //
     this.lstTuyenDuong.FormattingEnabled = true;
     this.lstTuyenDuong.Location          = new System.Drawing.Point(12, 70);
     this.lstTuyenDuong.Name                  = "lstTuyenDuong";
     this.lstTuyenDuong.Size                  = new System.Drawing.Size(183, 472);
     this.lstTuyenDuong.TabIndex              = 2;
     this.lstTuyenDuong.SelectedValueChanged += new System.EventHandler(this.lstTuyenDuong_SelectedValueChanged);
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.Location = new System.Drawing.Point(14, 8);
     this.label17.Name     = "label17";
     this.label17.Size     = new System.Drawing.Size(75, 15);
     this.label17.TabIndex = 4;
     this.label17.Text     = "Áp dụng cho";
     //
     // cboViTri
     //
     this.cboViTri.ComboStyle          = Janus.Windows.EditControls.ComboStyle.DropDownList;
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.Text              = "Hải Phòng";
     uiComboBoxItem1.Value             = false;
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.Text              = "Quán Toan";
     uiComboBoxItem2.Value             = true;
     this.cboViTri.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2
     });
     this.cboViTri.Location = new System.Drawing.Point(90, 7);
     this.cboViTri.Name     = "cboViTri";
     this.cboViTri.Size     = new System.Drawing.Size(151, 20);
     this.cboViTri.TabIndex = 5;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(264, 46);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(156, 13);
     this.label10.TabIndex = 11;
     this.label10.Text     = "Bảng giá của loại xe theo tuyến";
     //
     // grdLoaiXeTuyenDuong
     //
     this.grdLoaiXeTuyenDuong.AllowUserToDeleteRows       = false;
     this.grdLoaiXeTuyenDuong.AllowUserToResizeColumns    = false;
     this.grdLoaiXeTuyenDuong.AllowUserToResizeRows       = false;
     this.grdLoaiXeTuyenDuong.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdLoaiXeTuyenDuong.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.ID,
         this.TenTuyenDuong,
         this.TenLoaiXe,
         this.Column5,
         this.Column6,
         this.VeTram,
         this.Column1,
         this.Column2,
         this.Column3,
         this.Column4,
         this.MaLoaiXe
     });
     this.grdLoaiXeTuyenDuong.Location = new System.Drawing.Point(226, 73);
     this.grdLoaiXeTuyenDuong.Name     = "grdLoaiXeTuyenDuong";
     this.grdLoaiXeTuyenDuong.ReadOnly = true;
     this.grdLoaiXeTuyenDuong.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.grdLoaiXeTuyenDuong.Size     = new System.Drawing.Size(734, 507);
     this.grdLoaiXeTuyenDuong.TabIndex = 10;
     //
     // ID
     //
     this.ID.DataPropertyName = "TuyenDuongID";
     this.ID.HeaderText       = "Tuyến đường ID";
     this.ID.Name             = "ID";
     this.ID.ReadOnly         = true;
     this.ID.Visible          = false;
     //
     // TenTuyenDuong
     //
     this.TenTuyenDuong.DataPropertyName = "TenTuyenDuong";
     this.TenTuyenDuong.HeaderText       = "Tên tuyến đường";
     this.TenTuyenDuong.Name             = "TenTuyenDuong";
     this.TenTuyenDuong.ReadOnly         = true;
     this.TenTuyenDuong.Width            = 150;
     //
     // TenLoaiXe
     //
     this.TenLoaiXe.DataPropertyName = "TenLoaiXe";
     this.TenLoaiXe.HeaderText       = "Loại xe";
     this.TenLoaiXe.Name             = "TenLoaiXe";
     this.TenLoaiXe.ReadOnly         = true;
     //
     // Column5
     //
     this.Column5.DataPropertyName    = "GiaTien1Chieu";
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.Column5.DefaultCellStyle    = dataGridViewCellStyle1;
     this.Column5.HeaderText          = "Giá tiền 1 chiều";
     this.Column5.Name     = "Column5";
     this.Column5.ReadOnly = true;
     this.Column5.Width    = 65;
     //
     // Column6
     //
     this.Column6.DataPropertyName    = "GiaTien2Chieu";
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.Column6.DefaultCellStyle    = dataGridViewCellStyle2;
     this.Column6.HeaderText          = "Giá tiền 2 chiều";
     this.Column6.Name     = "Column6";
     this.Column6.ReadOnly = true;
     this.Column6.Width    = 65;
     //
     // VeTram
     //
     this.VeTram.DataPropertyName     = "VeTram";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.VeTram.DefaultCellStyle     = dataGridViewCellStyle3;
     this.VeTram.HeaderText           = "Vé trạm";
     this.VeTram.Name     = "VeTram";
     this.VeTram.ReadOnly = true;
     this.VeTram.Width    = 50;
     //
     // Column1
     //
     this.Column1.DataPropertyName    = "KmQuyDinh1Chieu";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.Column1.DefaultCellStyle    = dataGridViewCellStyle4;
     this.Column1.HeaderText          = "QĐ Km 1 chiều";
     this.Column1.Name     = "Column1";
     this.Column1.ReadOnly = true;
     this.Column1.Width    = 65;
     //
     // Column2
     //
     this.Column2.DataPropertyName    = "ConvertHToNgay1";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.Column2.DefaultCellStyle    = dataGridViewCellStyle5;
     this.Column2.HeaderText          = "QĐ số giờ 1 chiều";
     this.Column2.Name     = "Column2";
     this.Column2.ReadOnly = true;
     this.Column2.Width    = 65;
     //
     // Column3
     //
     this.Column3.DataPropertyName    = "KmQuyDinh2Chieu";
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.Column3.DefaultCellStyle    = dataGridViewCellStyle6;
     this.Column3.HeaderText          = "QĐ Km 2 chiều";
     this.Column3.Name     = "Column3";
     this.Column3.ReadOnly = true;
     this.Column3.Width    = 65;
     //
     // Column4
     //
     this.Column4.DataPropertyName    = "ConvertHToNgay2";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.Column4.DefaultCellStyle    = dataGridViewCellStyle7;
     this.Column4.HeaderText          = "QĐ số giờ 2 chiều";
     this.Column4.Name     = "Column4";
     this.Column4.ReadOnly = true;
     this.Column4.Width    = 65;
     //
     // MaLoaiXe
     //
     this.MaLoaiXe.DataPropertyName = "LoaiXeID";
     this.MaLoaiXe.HeaderText       = "Mã Loại xe";
     this.MaLoaiXe.Name             = "MaLoaiXe";
     this.MaLoaiXe.ReadOnly         = true;
     this.MaLoaiXe.Visible          = false;
     //
     // frmTraCuuBangGiaGoc
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(972, 597);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.grdLoaiXeTuyenDuong);
     this.Controls.Add(this.cboViTri);
     this.Controls.Add(this.label17);
     this.Controls.Add(this.groupBox1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "frmTraCuuBangGiaGoc";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Tra cứu giá cước thuê bao tuyến";
     this.Load         += new System.EventHandler(this.frmNhapBangGiaGoc_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdLoaiXeTuyenDuong)).EndInit();
     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();
            Janus.Windows.Common.JanusColorScheme janusColorScheme4 = new Janus.Windows.Common.JanusColorScheme();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem3 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem4 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem1 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem2 = new Janus.Windows.EditControls.UIComboBoxItem();
            this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
            this.uiColorButton1 = new Janus.Windows.EditControls.UIColorButton();
            this.uiCheckBox1 = new Janus.Windows.EditControls.UICheckBox();
            this.visualStyleManager1 = new Janus.Windows.Common.VisualStyleManager(this.components);
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
            this.uiComboBox1 = new Janus.Windows.EditControls.UIComboBox();
            this.label3 = new System.Windows.Forms.Label();
            this.uiComboBox2 = new Janus.Windows.EditControls.UIComboBox();
            this.uiButton1 = new Janus.Windows.EditControls.UIButton();
            this.uiButton2 = new Janus.Windows.EditControls.UIButton();
            this.uiGroupBox3 = new Janus.Windows.EditControls.UIGroupBox();
            this.label4 = new System.Windows.Forms.Label();
            this.uiColorButton2 = new Janus.Windows.EditControls.UIColorButton();
            this.uiCheckBox2 = new Janus.Windows.EditControls.UICheckBox();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
            this.uiGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
            this.uiGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).BeginInit();
            this.uiGroupBox3.SuspendLayout();
            this.SuspendLayout();
            // 
            // uiGroupBox1
            // 
            this.uiGroupBox1.Controls.Add(this.label1);
            this.uiGroupBox1.Controls.Add(this.uiColorButton1);
            this.uiGroupBox1.Controls.Add(this.uiCheckBox1);
            this.uiGroupBox1.Location = new System.Drawing.Point(12, 78);
            this.uiGroupBox1.Name = "uiGroupBox1";
            this.uiGroupBox1.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiGroupBox1.Size = new System.Drawing.Size(228, 101);
            this.uiGroupBox1.TabIndex = 0;
            this.uiGroupBox1.Text = "Angles";
            this.uiGroupBox1.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiColorButton1
            // 
            // 
            // 
            // 
            this.uiColorButton1.ColorPicker.BorderStyle = Janus.Windows.UI.BorderStyle.None;
            this.uiColorButton1.ColorPicker.Location = new System.Drawing.Point(0, 0);
            this.uiColorButton1.ColorPicker.Name = "";
            this.uiColorButton1.ColorPicker.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiColorButton1.ColorPicker.Size = new System.Drawing.Size(100, 100);
            this.uiColorButton1.ColorPicker.TabIndex = 0;
            this.uiColorButton1.ColorPicker.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
            this.uiColorButton1.ColorPicker.VisualStyleManager = this.visualStyleManager1;
            this.uiColorButton1.Location = new System.Drawing.Point(113, 22);
            this.uiColorButton1.Name = "uiColorButton1";
            this.uiColorButton1.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiColorButton1.Size = new System.Drawing.Size(100, 23);
            this.uiColorButton1.TabIndex = 1;
            this.uiColorButton1.Text = "uiColorButton1";
            this.uiColorButton1.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiCheckBox1
            // 
            this.uiCheckBox1.Location = new System.Drawing.Point(18, 51);
            this.uiCheckBox1.Name = "uiCheckBox1";
            this.uiCheckBox1.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiCheckBox1.Size = new System.Drawing.Size(104, 23);
            this.uiCheckBox1.TabIndex = 0;
            this.uiCheckBox1.Text = "Dashed lines";
            this.uiCheckBox1.VisualStyleManager = this.visualStyleManager1;
            // 
            // visualStyleManager1
            // 
            janusColorScheme4.HighlightTextColor = System.Drawing.SystemColors.HighlightText;
            janusColorScheme4.Name = "Scheme0";
            janusColorScheme4.Office2007ColorScheme = Janus.Windows.Common.Office2007ColorScheme.Black;
            janusColorScheme4.Office2007CustomColor = System.Drawing.Color.Empty;
            janusColorScheme4.VisualStyle = Janus.Windows.Common.VisualStyle.Office2007;
            this.visualStyleManager1.ColorSchemes.Add(janusColorScheme4);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(15, 27);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(92, 13);
            this.label1.TabIndex = 1;
            this.label1.Text = "Text / Line Color :";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(6, 28);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(68, 13);
            this.label2.TabIndex = 2;
            this.label2.Text = "Line Quality :";
            // 
            // uiGroupBox2
            // 
            this.uiGroupBox2.Controls.Add(this.uiComboBox2);
            this.uiGroupBox2.Controls.Add(this.label3);
            this.uiGroupBox2.Controls.Add(this.uiComboBox1);
            this.uiGroupBox2.Controls.Add(this.label2);
            this.uiGroupBox2.Location = new System.Drawing.Point(12, 12);
            this.uiGroupBox2.Name = "uiGroupBox2";
            this.uiGroupBox2.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiGroupBox2.Size = new System.Drawing.Size(474, 60);
            this.uiGroupBox2.TabIndex = 1;
            this.uiGroupBox2.Text = "General";
            this.uiGroupBox2.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiComboBox1
            // 
            this.uiComboBox1.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "Standard";
            uiComboBoxItem3.Value = ((byte)(0));
            uiComboBoxItem4.FormatStyle.Alpha = 0;
            uiComboBoxItem4.IsSeparator = false;
            uiComboBoxItem4.Text = "Anti-Aliased";
            uiComboBoxItem4.Value = ((byte)(1));
            this.uiComboBox1.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem3,
            uiComboBoxItem4});
            this.uiComboBox1.Location = new System.Drawing.Point(79, 24);
            this.uiComboBox1.Name = "uiComboBox1";
            this.uiComboBox1.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiComboBox1.ReadOnly = true;
            this.uiComboBox1.Size = new System.Drawing.Size(138, 20);
            this.uiComboBox1.TabIndex = 3;
            this.uiComboBox1.Text = "uiComboBox1";
            this.uiComboBox1.VisualStyleManager = this.visualStyleManager1;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(235, 28);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(69, 13);
            this.label3.TabIndex = 4;
            this.label3.Text = "Text Quality :";
            // 
            // uiComboBox2
            // 
            this.uiComboBox2.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "Standard";
            uiComboBoxItem1.Value = ((byte)(0));
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "Anti-Aliased";
            uiComboBoxItem2.Value = ((byte)(1));
            this.uiComboBox2.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2});
            this.uiComboBox2.Location = new System.Drawing.Point(310, 24);
            this.uiComboBox2.Name = "uiComboBox2";
            this.uiComboBox2.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiComboBox2.ReadOnly = true;
            this.uiComboBox2.Size = new System.Drawing.Size(138, 20);
            this.uiComboBox2.TabIndex = 5;
            this.uiComboBox2.Text = "uiComboBox2";
            this.uiComboBox2.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiButton1
            // 
            this.uiButton1.Location = new System.Drawing.Point(411, 211);
            this.uiButton1.Name = "uiButton1";
            this.uiButton1.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiButton1.Size = new System.Drawing.Size(75, 23);
            this.uiButton1.TabIndex = 2;
            this.uiButton1.Text = "Ok";
            this.uiButton1.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiButton2
            // 
            this.uiButton2.Location = new System.Drawing.Point(330, 211);
            this.uiButton2.Name = "uiButton2";
            this.uiButton2.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiButton2.Size = new System.Drawing.Size(75, 23);
            this.uiButton2.TabIndex = 3;
            this.uiButton2.Text = "Cancel";
            this.uiButton2.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiGroupBox3
            // 
            this.uiGroupBox3.Controls.Add(this.uiCheckBox2);
            this.uiGroupBox3.Controls.Add(this.label4);
            this.uiGroupBox3.Controls.Add(this.uiColorButton2);
            this.uiGroupBox3.Location = new System.Drawing.Point(250, 78);
            this.uiGroupBox3.Name = "uiGroupBox3";
            this.uiGroupBox3.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiGroupBox3.Size = new System.Drawing.Size(236, 101);
            this.uiGroupBox3.TabIndex = 4;
            this.uiGroupBox3.Text = "Distances";
            this.uiGroupBox3.VisualStyleManager = this.visualStyleManager1;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(19, 27);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(92, 13);
            this.label4.TabIndex = 3;
            this.label4.Text = "Text / Line Color :";
            // 
            // uiColorButton2
            // 
            // 
            // 
            // 
            this.uiColorButton2.ColorPicker.BorderStyle = Janus.Windows.UI.BorderStyle.None;
            this.uiColorButton2.ColorPicker.Location = new System.Drawing.Point(0, 0);
            this.uiColorButton2.ColorPicker.Name = "";
            this.uiColorButton2.ColorPicker.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiColorButton2.ColorPicker.Size = new System.Drawing.Size(100, 100);
            this.uiColorButton2.ColorPicker.TabIndex = 0;
            this.uiColorButton2.ColorPicker.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
            this.uiColorButton2.ColorPicker.VisualStyleManager = this.visualStyleManager1;
            this.uiColorButton2.Location = new System.Drawing.Point(117, 22);
            this.uiColorButton2.Name = "uiColorButton2";
            this.uiColorButton2.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiColorButton2.Size = new System.Drawing.Size(100, 23);
            this.uiColorButton2.TabIndex = 2;
            this.uiColorButton2.Text = "uiColorButton2";
            this.uiColorButton2.VisualStyleManager = this.visualStyleManager1;
            // 
            // uiCheckBox2
            // 
            this.uiCheckBox2.Location = new System.Drawing.Point(22, 51);
            this.uiCheckBox2.Name = "uiCheckBox2";
            this.uiCheckBox2.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Black;
            this.uiCheckBox2.Size = new System.Drawing.Size(104, 23);
            this.uiCheckBox2.TabIndex = 4;
            this.uiCheckBox2.Text = "Dashed lines";
            this.uiCheckBox2.VisualStyleManager = this.visualStyleManager1;
            // 
            // MeasurementSettingsDlg
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(501, 244);
            this.Controls.Add(this.uiGroupBox3);
            this.Controls.Add(this.uiButton2);
            this.Controls.Add(this.uiButton1);
            this.Controls.Add(this.uiGroupBox2);
            this.Controls.Add(this.uiGroupBox1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
            this.Name = "MeasurementSettingsDlg";
            this.Text = "Measurement Settings";
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
            this.uiGroupBox1.ResumeLayout(false);
            this.uiGroupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
            this.uiGroupBox2.ResumeLayout(false);
            this.uiGroupBox2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).EndInit();
            this.uiGroupBox3.ResumeLayout(false);
            this.uiGroupBox3.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.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();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_KCB_Thamkham_Tiemchung));
            Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.Common.Layouts.JanusLayoutReference grdList_DesignTimeLayout_Reference_0 = new Janus.Windows.Common.Layouts.JanusLayoutReference("GridEXLayoutData.RootTable.Columns.Column0.ButtonImage");
            Janus.Windows.GridEX.GridEXLayout grdPresDetail_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdVTTH_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();
            this.uiStatusBar1 = new Janus.Windows.UI.StatusBar.UIStatusBar();
            this.grpSearch = new Janus.Windows.EditControls.UIGroupBox();
            this.label42 = new System.Windows.Forms.Label();
            this.cboPhongKhamNgoaiTru = new System.Windows.Forms.ComboBox();
            this.label22 = new System.Windows.Forms.Label();
            this.cmdClear = new System.Windows.Forms.LinkLabel();
            this.label1 = new System.Windows.Forms.Label();
            this.txtSoKham = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
            this.radChuaKham = new Janus.Windows.EditControls.UIRadioButton();
            this.radDaKham = new Janus.Windows.EditControls.UIRadioButton();
            this.label3 = new System.Windows.Forms.Label();
            this.txtTenBN = new System.Windows.Forms.TextBox();
            this.cmdSearch = new Janus.Windows.EditControls.UIButton();
            this.chkByDate = new Janus.Windows.EditControls.UICheckBox();
            this.dtToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.dtFromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label14 = new System.Windows.Forms.Label();
            this.ctxDelCLS = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.mnuDeleteCLS = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
            this.mnuShowResult = new System.Windows.Forms.ToolStripMenuItem();
            this.ctxDelDrug = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.mnuDelDrug = new System.Windows.Forms.ToolStripMenuItem();
            this.cmdCauHinh = new Janus.Windows.EditControls.UIButton();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.txtPatient_Code = new Janus.Windows.GridEX.EditControls.EditBox();
            this.cmdSave = new Janus.Windows.EditControls.UIButton();
            this.cmdPrintPres = new Janus.Windows.EditControls.UIButton();
            this.cmdDeletePres = new Janus.Windows.EditControls.UIButton();
            this.cmdUpdatePres = new Janus.Windows.EditControls.UIButton();
            this.cmdCreateNewPres = new Janus.Windows.EditControls.UIButton();
            this.lblSOkham = new System.Windows.Forms.Label();
            this.cmdUnlock = new Janus.Windows.EditControls.UIButton();
            this.cmdChuyenPhong = new Janus.Windows.EditControls.UIButton();
            this.label18 = new System.Windows.Forms.Label();
            this.cmdInphieuVT = new Janus.Windows.EditControls.UIButton();
            this.cmdXoaphieuVT = new Janus.Windows.EditControls.UIButton();
            this.cmdSuaphieuVT = new Janus.Windows.EditControls.UIButton();
            this.cmdThemphieuVT = new Janus.Windows.EditControls.UIButton();
            this.label41 = new System.Windows.Forms.Label();
            this.cmdThamkhamConfig = new Janus.Windows.EditControls.UIButton();
            this.cmdLuuChandoan = new Janus.Windows.EditControls.UIButton();
            this.chkKPL3 = new Janus.Windows.EditControls.UICheckBox();
            this.panel3 = new System.Windows.Forms.Panel();
            this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
            this.pnlPatientInfor = new System.Windows.Forms.Panel();
            this.label40 = new System.Windows.Forms.Label();
            this.label34 = new System.Windows.Forms.Label();
            this.txtSoBHYT = new Janus.Windows.GridEX.EditControls.EditBox();
            this.dtpNgayhethanBHYT = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label30 = new System.Windows.Forms.Label();
            this.label17 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.txtReg_ID = new System.Windows.Forms.Label();
            this.label16 = new System.Windows.Forms.Label();
            this.txtObjectType_Name = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label15 = new System.Windows.Forms.Label();
            this.dtInput_Date = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label19 = new System.Windows.Forms.Label();
            this.txtDiaChi = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtBHTT = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtGioitinh = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtPatient_ID = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtTuoi = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label20 = new System.Windows.Forms.Label();
            this.txtDiachiBHYT = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtPatient_Name = new Janus.Windows.GridEX.EditControls.EditBox();
            this.grdList = new Janus.Windows.GridEX.GridEX();
            this.label21 = new System.Windows.Forms.Label();
            this.txtPhongkham = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtTenDvuKham = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label5 = new System.Windows.Forms.Label();
            this.dtpCreatedDate = new System.Windows.Forms.DateTimePicker();
            this.label25 = new System.Windows.Forms.Label();
            this.label48 = new System.Windows.Forms.Label();
            this.panel4 = new System.Windows.Forms.Panel();
            this.tabDiagInfo = new Janus.Windows.UI.Tab.UITab();
            this.tabPageChanDoan = new Janus.Windows.UI.Tab.UITabPage();
            this.pnlKetluan = new System.Windows.Forms.Panel();
            this.cmdKecongtiem = new Janus.Windows.EditControls.UIButton();
            this.chkNgaytiem = new Janus.Windows.EditControls.UICheckBox();
            this.dtpNgaysudung = new System.Windows.Forms.DateTimePicker();
            this.txtLydotiem = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.label9 = new System.Windows.Forms.Label();
            this.cmdInbangke = new Janus.Windows.EditControls.UIButton();
            this.chkMuithu = new Janus.Windows.EditControls.UICheckBox();
            this.txtNguoitiem = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.label6 = new System.Windows.Forms.Label();
            this.dtpHennhaclai = new System.Windows.Forms.DateTimePicker();
            this.txtMuithu = new System.Windows.Forms.TextBox();
            this.chkHennhaclai = new Janus.Windows.EditControls.UICheckBox();
            this.cmdChuatiem = new Janus.Windows.EditControls.UIButton();
            this.cmdDatiem = new Janus.Windows.EditControls.UIButton();
            this.chkPhanungVacxin = new Janus.Windows.EditControls.UICheckBox();
            this.pnlPhanungsautiem = new System.Windows.Forms.Panel();
            this.txtHuongdieutri = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.label8 = new System.Windows.Forms.Label();
            this.txtKQ = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.lblKetluan = new System.Windows.Forms.Label();
            this.label23 = new System.Windows.Forms.Label();
            this.txtKet_Luan = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.txtPhanungSautiem = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.label7 = new System.Windows.Forms.Label();
            this.txtVacxin = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.lblMsg = new System.Windows.Forms.Label();
            this.grbThongTinNhapVien = new Janus.Windows.EditControls.UIGroupBox();
            this.cmdTimKiemKhoaNoiTru = new System.Windows.Forms.Button();
            this.txtIdKhoaNoiTru = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtKhoaNoiTru = new System.Windows.Forms.TextBox();
            this.label29 = new System.Windows.Forms.Label();
            this.dtNgayNhapVien = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.txtPatientDept_ID = new System.Windows.Forms.TextBox();
            this.chkDaThucHien = new Janus.Windows.EditControls.UICheckBox();
            this.pnlother = new System.Windows.Forms.Panel();
            this.txtChongchidinhkhac = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.chkKPL_Daochon = new Janus.Windows.EditControls.UICheckBox();
            this.chkKL_Daochon = new Janus.Windows.EditControls.UICheckBox();
            this.chkKL_All = new Janus.Windows.EditControls.UICheckBox();
            this.chkKPL_All = new Janus.Windows.EditControls.UICheckBox();
            this.chkKPL8 = new Janus.Windows.EditControls.UICheckBox();
            this.chkKPL7 = new Janus.Windows.EditControls.UICheckBox();
            this.chkKL3 = new Janus.Windows.EditControls.UICheckBox();
            this.chkKPL6 = new Janus.Windows.EditControls.UICheckBox();
            this.chkKL2 = new Janus.Windows.EditControls.UICheckBox();
            this.chkKPL5 = new Janus.Windows.EditControls.UICheckBox();
            this.chkKL1 = new Janus.Windows.EditControls.UICheckBox();
            this.chkKPL4 = new Janus.Windows.EditControls.UICheckBox();
            this.chkKPL2 = new Janus.Windows.EditControls.UICheckBox();
            this.chkKPL1 = new Janus.Windows.EditControls.UICheckBox();
            this.txtChanDoanKemTheo = new Janus.Windows.GridEX.EditControls.EditBox();
            this.vbLine1 = new VNS.UCs.VBLine();
            this.vbLine2 = new VNS.UCs.VBLine();
            this.tabPageChidinhThuoc = new Janus.Windows.UI.Tab.UITabPage();
            this.pnltabkedon = new System.Windows.Forms.Panel();
            this.grdPresDetail = new Janus.Windows.GridEX.GridEX();
            this.pnlDonthuoc = new System.Windows.Forms.Panel();
            this.cmdInbangke_1 = new Janus.Windows.EditControls.UIButton();
            this.barcode = new Mabry.Windows.Forms.Barcode.Barcode();
            this.uiTabPage2 = new Janus.Windows.UI.Tab.UITabPage();
            this.grdVTTH = new Janus.Windows.GridEX.GridEX();
            this.pnlVTTH = new System.Windows.Forms.Panel();
            this.uiTabPage1 = new Janus.Windows.UI.Tab.UITabPage();
            this.panel2 = new System.Windows.Forms.Panel();
            this.cboLaserPrinters = new System.Windows.Forms.ComboBox();
            this.cboPrintPreviewDonthuoc = new Janus.Windows.EditControls.UIComboBox();
            this.cboA4Donthuoc = new Janus.Windows.EditControls.UIComboBox();
            this.label26 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.vbLine5 = new VNS.UCs.VBLine();
            this.grpFunction = new System.Windows.Forms.GroupBox();
            this.cmdBenhAnNgoaiTru = new Janus.Windows.EditControls.UIButton();
            this.cmdKETTHUC = new Janus.Windows.EditControls.UIButton();
            this.cmdChuyenVien = new Janus.Windows.EditControls.UIButton();
            this.pnlThongtinBNKCB = new System.Windows.Forms.Panel();
            this.txtBacsi = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.label12 = new System.Windows.Forms.Label();
            this.txtNguoiTiepNhan = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtDepartment_ID = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtHanTheBHYT = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txt_idchidinhphongkham = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtExam_ID = new Janus.Windows.GridEX.EditControls.EditBox();
            this.vbLine4 = new VNS.UCs.VBLine();
            this.uiTabPage5 = new Janus.Windows.UI.Tab.UITabPage();
            this.ctxDelVTTH = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.mnuDelVTTH = new System.Windows.Forms.ToolStripMenuItem();
            this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.grpSearch)).BeginInit();
            this.grpSearch.SuspendLayout();
            this.ctxDelCLS.SuspendLayout();
            this.ctxDelDrug.SuspendLayout();
            this.panel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
            this.uiGroupBox2.SuspendLayout();
            this.pnlPatientInfor.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
            this.panel4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tabDiagInfo)).BeginInit();
            this.tabDiagInfo.SuspendLayout();
            this.tabPageChanDoan.SuspendLayout();
            this.pnlKetluan.SuspendLayout();
            this.pnlPhanungsautiem.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grbThongTinNhapVien)).BeginInit();
            this.grbThongTinNhapVien.SuspendLayout();
            this.pnlother.SuspendLayout();
            this.tabPageChidinhThuoc.SuspendLayout();
            this.pnltabkedon.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdPresDetail)).BeginInit();
            this.pnlDonthuoc.SuspendLayout();
            this.uiTabPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdVTTH)).BeginInit();
            this.pnlVTTH.SuspendLayout();
            this.uiTabPage1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.grpFunction.SuspendLayout();
            this.pnlThongtinBNKCB.SuspendLayout();
            this.ctxDelVTTH.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
            this.SuspendLayout();
            // 
            // uiStatusBar1
            // 
            this.uiStatusBar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 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 = "F1: Khám và kết luận";
            uiStatusBarPanel1.Width = 129;
            uiStatusBarPanel2.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
            uiStatusBarPanel2.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel2.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel2.Key = "";
            uiStatusBarPanel2.ProgressBarValue = 0;
            uiStatusBarPanel2.Text = "F3: kê đơn thuốc";
            uiStatusBarPanel2.Width = 105;
            uiStatusBarPanel3.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel3.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel3.Key = "";
            uiStatusBarPanel3.ProgressBarValue = 0;
            uiStatusBarPanel3.Text = "Ctrl+S: Lưu và kết thúc khám";
            uiStatusBarPanel3.Width = 169;
            this.uiStatusBar1.Panels.AddRange(new Janus.Windows.UI.StatusBar.UIStatusBarPanel[] {
            uiStatusBarPanel1,
            uiStatusBarPanel2,
            uiStatusBarPanel3});
            this.uiStatusBar1.Size = new System.Drawing.Size(1004, 23);
            this.uiStatusBar1.TabIndex = 0;
            this.uiStatusBar1.TabStop = false;
            this.uiStatusBar1.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
            // 
            // grpSearch
            // 
            this.grpSearch.BackColor = System.Drawing.SystemColors.Control;
            this.grpSearch.Controls.Add(this.label42);
            this.grpSearch.Controls.Add(this.cboPhongKhamNgoaiTru);
            this.grpSearch.Controls.Add(this.label22);
            this.grpSearch.Controls.Add(this.cmdClear);
            this.grpSearch.Controls.Add(this.label1);
            this.grpSearch.Controls.Add(this.txtSoKham);
            this.grpSearch.Controls.Add(this.radChuaKham);
            this.grpSearch.Controls.Add(this.radDaKham);
            this.grpSearch.Controls.Add(this.label3);
            this.grpSearch.Controls.Add(this.txtTenBN);
            this.grpSearch.Controls.Add(this.cmdSearch);
            this.grpSearch.Controls.Add(this.chkByDate);
            this.grpSearch.Controls.Add(this.dtToDate);
            this.grpSearch.Controls.Add(this.dtFromDate);
            this.grpSearch.Controls.Add(this.label14);
            this.grpSearch.Dock = System.Windows.Forms.DockStyle.Top;
            this.grpSearch.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grpSearch.Location = new System.Drawing.Point(0, 0);
            this.grpSearch.Name = "grpSearch";
            this.grpSearch.Size = new System.Drawing.Size(402, 145);
            this.grpSearch.TabIndex = 0;
            this.grpSearch.Text = "Tìm kiếm nâng cao";
            // 
            // label42
            // 
            this.label42.Font = new System.Drawing.Font("Arial", 9F);
            this.label42.Location = new System.Drawing.Point(0, 95);
            this.label42.Name = "label42";
            this.label42.Size = new System.Drawing.Size(86, 23);
            this.label42.TabIndex = 79;
            this.label42.Text = "Trạng thái:";
            this.label42.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cboPhongKhamNgoaiTru
            // 
            this.cboPhongKhamNgoaiTru.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.cboPhongKhamNgoaiTru.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboPhongKhamNgoaiTru.FormattingEnabled = true;
            this.cboPhongKhamNgoaiTru.Location = new System.Drawing.Point(92, 46);
            this.cboPhongKhamNgoaiTru.Name = "cboPhongKhamNgoaiTru";
            this.cboPhongKhamNgoaiTru.Size = new System.Drawing.Size(303, 23);
            this.cboPhongKhamNgoaiTru.TabIndex = 3;
            // 
            // label22
            // 
            this.label22.Font = new System.Drawing.Font("Arial", 9F);
            this.label22.Location = new System.Drawing.Point(0, 46);
            this.label22.Name = "label22";
            this.label22.Size = new System.Drawing.Size(86, 23);
            this.label22.TabIndex = 78;
            this.label22.Text = "Phòng khám :";
            this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cmdClear
            // 
            this.cmdClear.AutoSize = true;
            this.cmdClear.Location = new System.Drawing.Point(89, 122);
            this.cmdClear.Name = "cmdClear";
            this.cmdClear.Size = new System.Drawing.Size(62, 15);
            this.cmdClear.TabIndex = 9;
            this.cmdClear.TabStop = true;
            this.cmdClear.Text = "&Làm sạch";
            this.cmdClear.Visible = false;
            // 
            // label1
            // 
            this.label1.Font = new System.Drawing.Font("Arial", 9F);
            this.label1.Location = new System.Drawing.Point(0, 72);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(86, 23);
            this.label1.TabIndex = 73;
            this.label1.Text = "Số khám:";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtSoKham
            // 
            this.txtSoKham.BackColor = System.Drawing.Color.White;
            this.txtSoKham.Font = new System.Drawing.Font("Arial", 9F);
            this.txtSoKham.Location = new System.Drawing.Point(92, 73);
            this.txtSoKham.Name = "txtSoKham";
            this.txtSoKham.Numeric = true;
            this.txtSoKham.Size = new System.Drawing.Size(114, 21);
            this.txtSoKham.TabIndex = 4;
            this.txtSoKham.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            this.toolTip1.SetToolTip(this.txtSoKham, "Có thể gõ số thứ tự khám ghi trên phiếu và nhấn Enter để tìm kiếm(phím tắt F4)");
            // 
            // radChuaKham
            // 
            this.radChuaKham.Checked = true;
            this.radChuaKham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radChuaKham.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.radChuaKham.Location = new System.Drawing.Point(92, 96);
            this.radChuaKham.Name = "radChuaKham";
            this.radChuaKham.Size = new System.Drawing.Size(99, 23);
            this.radChuaKham.TabIndex = 7;
            this.radChuaKham.TabStop = true;
            this.radChuaKham.Text = "Chưa khám";
            // 
            // radDaKham
            // 
            this.radDaKham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radDaKham.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.radDaKham.Location = new System.Drawing.Point(194, 96);
            this.radDaKham.Name = "radDaKham";
            this.radDaKham.Size = new System.Drawing.Size(83, 23);
            this.radDaKham.TabIndex = 8;
            this.radDaKham.Text = "Đã khám";
            // 
            // label3
            // 
            this.label3.Font = new System.Drawing.Font("Arial", 9F);
            this.label3.Location = new System.Drawing.Point(212, 71);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(67, 23);
            this.label3.TabIndex = 69;
            this.label3.Text = "Tên BN:";
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtTenBN
            // 
            this.txtTenBN.BackColor = System.Drawing.Color.White;
            this.txtTenBN.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtTenBN.Font = new System.Drawing.Font("Arial", 9F);
            this.txtTenBN.Location = new System.Drawing.Point(285, 72);
            this.txtTenBN.MaxLength = 255;
            this.txtTenBN.Name = "txtTenBN";
            this.txtTenBN.Size = new System.Drawing.Size(111, 21);
            this.txtTenBN.TabIndex = 5;
            // 
            // cmdSearch
            // 
            this.cmdSearch.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdSearch.Image = ((System.Drawing.Image)(resources.GetObject("cmdSearch.Image")));
            this.cmdSearch.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdSearch.Location = new System.Drawing.Point(285, 96);
            this.cmdSearch.Name = "cmdSearch";
            this.cmdSearch.Size = new System.Drawing.Size(110, 41);
            this.cmdSearch.TabIndex = 6;
            this.cmdSearch.Text = "Tìm kiếm";
            this.toolTip1.SetToolTip(this.cmdSearch, "Nhấn Ctrl+F thực hiện tìm thông tin bệnh nhân");
            // 
            // chkByDate
            // 
            this.chkByDate.Checked = true;
            this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkByDate.Font = new System.Drawing.Font("Arial", 9F);
            this.chkByDate.Location = new System.Drawing.Point(15, 19);
            this.chkByDate.Name = "chkByDate";
            this.chkByDate.Size = new System.Drawing.Size(71, 23);
            this.chkByDate.TabIndex = 0;
            this.chkByDate.TabStop = false;
            this.chkByDate.Text = "Từ ngày";
            this.toolTip1.SetToolTip(this.chkByDate, "Nếu bỏ chọn ngày hệ thống tự động tìm dữ liệu trong vòng 1 tuần tính từ ngày hiện" +
        " tại về trước đó");
            // 
            // dtToDate
            // 
            this.dtToDate.CustomFormat = "dd/MM/yyyy";
            this.dtToDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtToDate.DropDownCalendar.Name = "";
            this.dtToDate.Font = new System.Drawing.Font("Arial", 9F);
            this.dtToDate.Location = new System.Drawing.Point(285, 19);
            this.dtToDate.Name = "dtToDate";
            this.dtToDate.ShowUpDown = true;
            this.dtToDate.Size = new System.Drawing.Size(110, 21);
            this.dtToDate.TabIndex = 2;
            this.dtToDate.Value = new System.DateTime(2013, 8, 10, 0, 0, 0, 0);
            // 
            // dtFromDate
            // 
            this.dtFromDate.CustomFormat = "dd/MM/yyyy";
            this.dtFromDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtFromDate.DropDownCalendar.Name = "";
            this.dtFromDate.Font = new System.Drawing.Font("Arial", 9F);
            this.dtFromDate.Location = new System.Drawing.Point(92, 19);
            this.dtFromDate.Name = "dtFromDate";
            this.dtFromDate.ShowUpDown = true;
            this.dtFromDate.Size = new System.Drawing.Size(114, 21);
            this.dtFromDate.TabIndex = 1;
            this.dtFromDate.Value = new System.DateTime(2013, 8, 10, 0, 0, 0, 0);
            // 
            // label14
            // 
            this.label14.Font = new System.Drawing.Font("Arial", 9F);
            this.label14.Location = new System.Drawing.Point(204, 22);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(75, 15);
            this.label14.TabIndex = 74;
            this.label14.Text = "đến ngày:";
            this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // ctxDelCLS
            // 
            this.ctxDelCLS.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuDeleteCLS,
            this.toolStripMenuItem1,
            this.mnuShowResult});
            this.ctxDelCLS.Name = "ctxDelCLS";
            this.ctxDelCLS.Size = new System.Drawing.Size(224, 54);
            // 
            // mnuDeleteCLS
            // 
            this.mnuDeleteCLS.Name = "mnuDeleteCLS";
            this.mnuDeleteCLS.Size = new System.Drawing.Size(223, 22);
            this.mnuDeleteCLS.Text = "Xóa chỉ định CLS đang chọn";
            // 
            // toolStripMenuItem1
            // 
            this.toolStripMenuItem1.Name = "toolStripMenuItem1";
            this.toolStripMenuItem1.Size = new System.Drawing.Size(220, 6);
            // 
            // mnuShowResult
            // 
            this.mnuShowResult.CheckOnClick = true;
            this.mnuShowResult.Name = "mnuShowResult";
            this.mnuShowResult.Size = new System.Drawing.Size(223, 22);
            this.mnuShowResult.Tag = "0";
            this.mnuShowResult.Text = "Xem kết quả CLS";
            // 
            // ctxDelDrug
            // 
            this.ctxDelDrug.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuDelDrug});
            this.ctxDelDrug.Name = "ctxDelDrug";
            this.ctxDelDrug.Size = new System.Drawing.Size(189, 26);
            // 
            // mnuDelDrug
            // 
            this.mnuDelDrug.Name = "mnuDelDrug";
            this.mnuDelDrug.Size = new System.Drawing.Size(188, 22);
            this.mnuDelDrug.Text = "Xóa thuốc đang chọn";
            // 
            // cmdCauHinh
            // 
            this.cmdCauHinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdCauHinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdCauHinh.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdCauHinh.Location = new System.Drawing.Point(560, 14);
            this.cmdCauHinh.Name = "cmdCauHinh";
            this.cmdCauHinh.Size = new System.Drawing.Size(41, 31);
            this.cmdCauHinh.TabIndex = 58;
            this.cmdCauHinh.TabStop = false;
            this.cmdCauHinh.Text = "QMS";
            this.toolTip1.SetToolTip(this.cmdCauHinh, "Cấu hình QMS tại phòng khám");
            // 
            // toolTip1
            // 
            this.toolTip1.IsBalloon = true;
            this.toolTip1.ToolTipTitle = "Trợ giúp nhanh:";
            // 
            // txtPatient_Code
            // 
            this.txtPatient_Code.BackColor = System.Drawing.Color.White;
            this.txtPatient_Code.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPatient_Code.Location = new System.Drawing.Point(115, 42);
            this.txtPatient_Code.MaxLength = 8;
            this.txtPatient_Code.Name = "txtPatient_Code";
            this.txtPatient_Code.Size = new System.Drawing.Size(121, 21);
            this.txtPatient_Code.TabIndex = 12;
            this.txtPatient_Code.Text = "14023674";
            this.txtPatient_Code.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            this.toolTip1.SetToolTip(this.txtPatient_Code, "Bạn có thể gõ mã lần khám của Bệnh nhân để tìm kiếm nhanh(Phím tắt F6)");
            this.txtPatient_Code.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2007;
            // 
            // cmdSave
            // 
            this.cmdSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdSave.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdSave.Image = ((System.Drawing.Image)(resources.GetObject("cmdSave.Image")));
            this.cmdSave.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdSave.Location = new System.Drawing.Point(280, 14);
            this.cmdSave.Name = "cmdSave";
            this.cmdSave.Size = new System.Drawing.Size(129, 30);
            this.cmdSave.TabIndex = 53;
            this.cmdSave.Text = "Kết thúc khám";
            this.toolTip1.SetToolTip(this.cmdSave, "Nhấn vào đây để kết thúc khám cho Bệnh nhân(Phím tắt Ctrl+K)");
            // 
            // cmdPrintPres
            // 
            this.cmdPrintPres.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdPrintPres.Enabled = false;
            this.cmdPrintPres.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdPrintPres.Image = ((System.Drawing.Image)(resources.GetObject("cmdPrintPres.Image")));
            this.cmdPrintPres.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdPrintPres.Location = new System.Drawing.Point(516, 3);
            this.cmdPrintPres.Name = "cmdPrintPres";
            this.cmdPrintPres.Size = new System.Drawing.Size(79, 25);
            this.cmdPrintPres.TabIndex = 3;
            this.cmdPrintPres.Text = "In";
            this.toolTip1.SetToolTip(this.cmdPrintPres, "Nhấn vào nts này để in đơn thuốc cho bệnh nhân");
            // 
            // cmdDeletePres
            // 
            this.cmdDeletePres.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdDeletePres.Image = ((System.Drawing.Image)(resources.GetObject("cmdDeletePres.Image")));
            this.cmdDeletePres.Location = new System.Drawing.Point(175, 3);
            this.cmdDeletePres.Name = "cmdDeletePres";
            this.cmdDeletePres.Size = new System.Drawing.Size(79, 25);
            this.cmdDeletePres.TabIndex = 2;
            this.cmdDeletePres.Text = "Xóa";
            this.toolTip1.SetToolTip(this.cmdDeletePres, "Nhấn vào nút này để xóa các thuốc đang chọn trên lưới");
            // 
            // cmdUpdatePres
            // 
            this.cmdUpdatePres.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdUpdatePres.Image = ((System.Drawing.Image)(resources.GetObject("cmdUpdatePres.Image")));
            this.cmdUpdatePres.Location = new System.Drawing.Point(90, 3);
            this.cmdUpdatePres.Name = "cmdUpdatePres";
            this.cmdUpdatePres.Size = new System.Drawing.Size(79, 25);
            this.cmdUpdatePres.TabIndex = 1;
            this.cmdUpdatePres.Text = "Sửa";
            this.toolTip1.SetToolTip(this.cmdUpdatePres, "Nhấn vào đây để sửa đơn thuốc");
            // 
            // cmdCreateNewPres
            // 
            this.cmdCreateNewPres.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdCreateNewPres.Image = ((System.Drawing.Image)(resources.GetObject("cmdCreateNewPres.Image")));
            this.cmdCreateNewPres.Location = new System.Drawing.Point(5, 3);
            this.cmdCreateNewPres.Name = "cmdCreateNewPres";
            this.cmdCreateNewPres.Size = new System.Drawing.Size(79, 25);
            this.cmdCreateNewPres.TabIndex = 0;
            this.cmdCreateNewPres.Text = "Thêm";
            this.toolTip1.SetToolTip(this.cmdCreateNewPres, "Nhấn vào đây để thêm mới đơn thuốc");
            // 
            // lblSOkham
            // 
            this.lblSOkham.BackColor = System.Drawing.Color.SteelBlue;
            this.lblSOkham.Font = new System.Drawing.Font("Arial", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblSOkham.ForeColor = System.Drawing.Color.White;
            this.lblSOkham.Location = new System.Drawing.Point(115, 3);
            this.lblSOkham.Name = "lblSOkham";
            this.lblSOkham.Size = new System.Drawing.Size(121, 36);
            this.lblSOkham.TabIndex = 1;
            this.lblSOkham.Text = "0";
            this.lblSOkham.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.toolTip1.SetToolTip(this.lblSOkham, "Số thứ tự chờ khám chữa bệnh của Bệnh nhân");
            // 
            // cmdUnlock
            // 
            this.cmdUnlock.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdUnlock.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdUnlock.Image = ((System.Drawing.Image)(resources.GetObject("cmdUnlock.Image")));
            this.cmdUnlock.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdUnlock.Location = new System.Drawing.Point(474, 15);
            this.cmdUnlock.Name = "cmdUnlock";
            this.cmdUnlock.Size = new System.Drawing.Size(38, 30);
            this.cmdUnlock.TabIndex = 56;
            this.cmdUnlock.TabStop = false;
            this.toolTip1.SetToolTip(this.cmdUnlock, resources.GetString("cmdUnlock.ToolTip"));
            this.cmdUnlock.Visible = false;
            // 
            // cmdChuyenPhong
            // 
            this.cmdChuyenPhong.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdChuyenPhong.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdChuyenPhong.Image = ((System.Drawing.Image)(resources.GetObject("cmdChuyenPhong.Image")));
            this.cmdChuyenPhong.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdChuyenPhong.Location = new System.Drawing.Point(11, 14);
            this.cmdChuyenPhong.Name = "cmdChuyenPhong";
            this.cmdChuyenPhong.Size = new System.Drawing.Size(129, 30);
            this.cmdChuyenPhong.TabIndex = 55;
            this.cmdChuyenPhong.TabStop = false;
            this.cmdChuyenPhong.Text = "Chuyển phòng";
            this.toolTip1.SetToolTip(this.cmdChuyenPhong, "Nhấn vào đây để chuyển bệnh nhân sang phòng khám đang chọn");
            // 
            // label18
            // 
            this.label18.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label18.Location = new System.Drawing.Point(27, 41);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(86, 21);
            this.label18.TabIndex = 9;
            this.label18.Text = "Mã lần khám:";
            this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.toolTip1.SetToolTip(this.label18, "Bạn có thể gõ mã lần khám của Bệnh nhân để tìm kiếm nhanh(Phím tắt F6)");
            // 
            // cmdInphieuVT
            // 
            this.cmdInphieuVT.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdInphieuVT.Enabled = false;
            this.cmdInphieuVT.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdInphieuVT.Image = ((System.Drawing.Image)(resources.GetObject("cmdInphieuVT.Image")));
            this.cmdInphieuVT.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdInphieuVT.Location = new System.Drawing.Point(518, 4);
            this.cmdInphieuVT.Name = "cmdInphieuVT";
            this.cmdInphieuVT.Size = new System.Drawing.Size(79, 25);
            this.cmdInphieuVT.TabIndex = 3;
            this.cmdInphieuVT.TabStop = false;
            this.cmdInphieuVT.Text = "In";
            this.toolTip1.SetToolTip(this.cmdInphieuVT, "Nhấn vào nút này để in đơn thuốc cho bệnh nhân");
            // 
            // cmdXoaphieuVT
            // 
            this.cmdXoaphieuVT.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdXoaphieuVT.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoaphieuVT.Image")));
            this.cmdXoaphieuVT.Location = new System.Drawing.Point(175, 4);
            this.cmdXoaphieuVT.Name = "cmdXoaphieuVT";
            this.cmdXoaphieuVT.Size = new System.Drawing.Size(79, 25);
            this.cmdXoaphieuVT.TabIndex = 2;
            this.cmdXoaphieuVT.Text = "Xóa";
            this.toolTip1.SetToolTip(this.cmdXoaphieuVT, "Nhấn vào nút này để xóa các thuốc đang chọn trên lưới");
            // 
            // cmdSuaphieuVT
            // 
            this.cmdSuaphieuVT.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdSuaphieuVT.Image = ((System.Drawing.Image)(resources.GetObject("cmdSuaphieuVT.Image")));
            this.cmdSuaphieuVT.Location = new System.Drawing.Point(90, 4);
            this.cmdSuaphieuVT.Name = "cmdSuaphieuVT";
            this.cmdSuaphieuVT.Size = new System.Drawing.Size(79, 25);
            this.cmdSuaphieuVT.TabIndex = 1;
            this.cmdSuaphieuVT.Text = "Sửa";
            this.toolTip1.SetToolTip(this.cmdSuaphieuVT, "Nhấn vào đây để sửa đơn thuốc");
            // 
            // cmdThemphieuVT
            // 
            this.cmdThemphieuVT.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdThemphieuVT.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemphieuVT.Image")));
            this.cmdThemphieuVT.Location = new System.Drawing.Point(5, 4);
            this.cmdThemphieuVT.Name = "cmdThemphieuVT";
            this.cmdThemphieuVT.Size = new System.Drawing.Size(79, 25);
            this.cmdThemphieuVT.TabIndex = 0;
            this.cmdThemphieuVT.Text = "Thêm";
            this.toolTip1.SetToolTip(this.cmdThemphieuVT, "Nhấn vào đây để thêm mới đơn thuốc");
            // 
            // label41
            // 
            this.label41.Font = new System.Drawing.Font("Arial", 9F);
            this.label41.Location = new System.Drawing.Point(23, 3);
            this.label41.Name = "label41";
            this.label41.Size = new System.Drawing.Size(86, 36);
            this.label41.TabIndex = 460;
            this.label41.Text = "Số thứ tự khám:";
            this.label41.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.toolTip1.SetToolTip(this.label41, "Bạn có thể gõ mã lần khám của Bệnh nhân để tìm kiếm nhanh(Phím tắt F6)");
            // 
            // cmdThamkhamConfig
            // 
            this.cmdThamkhamConfig.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdThamkhamConfig.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdThamkhamConfig.Image = ((System.Drawing.Image)(resources.GetObject("cmdThamkhamConfig.Image")));
            this.cmdThamkhamConfig.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdThamkhamConfig.Location = new System.Drawing.Point(518, 14);
            this.cmdThamkhamConfig.Name = "cmdThamkhamConfig";
            this.cmdThamkhamConfig.Size = new System.Drawing.Size(41, 31);
            this.cmdThamkhamConfig.TabIndex = 57;
            this.cmdThamkhamConfig.TabStop = false;
            this.toolTip1.SetToolTip(this.cmdThamkhamConfig, "Cấu hình chức năng thăm khám");
            // 
            // cmdLuuChandoan
            // 
            this.cmdLuuChandoan.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdLuuChandoan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdLuuChandoan.Image = ((System.Drawing.Image)(resources.GetObject("cmdLuuChandoan.Image")));
            this.cmdLuuChandoan.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdLuuChandoan.Location = new System.Drawing.Point(479, 463);
            this.cmdLuuChandoan.Name = "cmdLuuChandoan";
            this.cmdLuuChandoan.Size = new System.Drawing.Size(113, 29);
            this.cmdLuuChandoan.TabIndex = 51;
            this.cmdLuuChandoan.Text = "&Lưu thông tin";
            this.toolTip1.SetToolTip(this.cmdLuuChandoan, "Nhấn vào đây để lưu thông tin thăm khám(Phím tắt Ctrl+S)");
            // 
            // chkKPL3
            // 
            this.chkKPL3.Font = new System.Drawing.Font("Arial", 9F);
            this.chkKPL3.Location = new System.Drawing.Point(114, 40);
            this.chkKPL3.Name = "chkKPL3";
            this.chkKPL3.Size = new System.Drawing.Size(470, 20);
            this.chkKPL3.TabIndex = 29;
            this.chkKPL3.Text = "&3. Đang hoặc mới kết thúc đợt điều trị corticoid/gammaglobulin";
            this.toolTip1.SetToolTip(this.chkKPL3, "3. Đang ");
            // 
            // panel3
            // 
            this.panel3.Controls.Add(this.uiGroupBox2);
            this.panel3.Controls.Add(this.grpSearch);
            this.panel3.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel3.Location = new System.Drawing.Point(0, 0);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(402, 713);
            this.panel3.TabIndex = 453;
            // 
            // uiGroupBox2
            // 
            this.uiGroupBox2.Controls.Add(this.pnlPatientInfor);
            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.FrameStyle = Janus.Windows.EditControls.FrameStyle.Top;
            this.uiGroupBox2.Location = new System.Drawing.Point(0, 145);
            this.uiGroupBox2.Name = "uiGroupBox2";
            this.uiGroupBox2.Size = new System.Drawing.Size(402, 568);
            this.uiGroupBox2.TabIndex = 11;
            this.uiGroupBox2.Text = "Kết quả tìm kiếm";
            // 
            // pnlPatientInfor
            // 
            this.pnlPatientInfor.Controls.Add(this.lblSOkham);
            this.pnlPatientInfor.Controls.Add(this.label41);
            this.pnlPatientInfor.Controls.Add(this.label40);
            this.pnlPatientInfor.Controls.Add(this.label34);
            this.pnlPatientInfor.Controls.Add(this.txtSoBHYT);
            this.pnlPatientInfor.Controls.Add(this.dtpNgayhethanBHYT);
            this.pnlPatientInfor.Controls.Add(this.label30);
            this.pnlPatientInfor.Controls.Add(this.label17);
            this.pnlPatientInfor.Controls.Add(this.label4);
            this.pnlPatientInfor.Controls.Add(this.txtReg_ID);
            this.pnlPatientInfor.Controls.Add(this.label16);
            this.pnlPatientInfor.Controls.Add(this.txtObjectType_Name);
            this.pnlPatientInfor.Controls.Add(this.label15);
            this.pnlPatientInfor.Controls.Add(this.txtPatient_Code);
            this.pnlPatientInfor.Controls.Add(this.dtInput_Date);
            this.pnlPatientInfor.Controls.Add(this.label19);
            this.pnlPatientInfor.Controls.Add(this.txtDiaChi);
            this.pnlPatientInfor.Controls.Add(this.txtBHTT);
            this.pnlPatientInfor.Controls.Add(this.txtGioitinh);
            this.pnlPatientInfor.Controls.Add(this.txtPatient_ID);
            this.pnlPatientInfor.Controls.Add(this.txtTuoi);
            this.pnlPatientInfor.Controls.Add(this.label20);
            this.pnlPatientInfor.Controls.Add(this.txtDiachiBHYT);
            this.pnlPatientInfor.Controls.Add(this.txtPatient_Name);
            this.pnlPatientInfor.Controls.Add(this.label18);
            this.pnlPatientInfor.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlPatientInfor.Location = new System.Drawing.Point(0, 348);
            this.pnlPatientInfor.Name = "pnlPatientInfor";
            this.pnlPatientInfor.Size = new System.Drawing.Size(402, 217);
            this.pnlPatientInfor.TabIndex = 7;
            // 
            // label40
            // 
            this.label40.Font = new System.Drawing.Font("Arial", 9F);
            this.label40.ForeColor = System.Drawing.Color.Navy;
            this.label40.Location = new System.Drawing.Point(242, 145);
            this.label40.Name = "label40";
            this.label40.Size = new System.Drawing.Size(63, 21);
            this.label40.TabIndex = 459;
            this.label40.Text = "% BHYT :";
            this.label40.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label34
            // 
            this.label34.Font = new System.Drawing.Font("Arial", 9F);
            this.label34.Location = new System.Drawing.Point(11, 193);
            this.label34.Name = "label34";
            this.label34.Size = new System.Drawing.Size(102, 21);
            this.label34.TabIndex = 458;
            this.label34.Text = "Địa chỉ BHYT:";
            this.label34.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtSoBHYT
            // 
            this.txtSoBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSoBHYT.ForeColor = System.Drawing.Color.Navy;
            this.txtSoBHYT.Location = new System.Drawing.Point(115, 145);
            this.txtSoBHYT.Name = "txtSoBHYT";
            this.txtSoBHYT.ReadOnly = true;
            this.txtSoBHYT.Size = new System.Drawing.Size(121, 21);
            this.txtSoBHYT.TabIndex = 13;
            this.txtSoBHYT.TabStop = false;
            this.txtSoBHYT.Text = "GD7370100102598";
            this.txtSoBHYT.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // dtpNgayhethanBHYT
            // 
            this.dtpNgayhethanBHYT.CustomFormat = "dd/MM/yyyy";
            this.dtpNgayhethanBHYT.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtpNgayhethanBHYT.DropDownCalendar.Name = "";
            this.dtpNgayhethanBHYT.Enabled = false;
            this.dtpNgayhethanBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtpNgayhethanBHYT.ForeColor = System.Drawing.Color.Navy;
            this.dtpNgayhethanBHYT.Location = new System.Drawing.Point(115, 169);
            this.dtpNgayhethanBHYT.Name = "dtpNgayhethanBHYT";
            this.dtpNgayhethanBHYT.ReadOnly = true;
            this.dtpNgayhethanBHYT.ShowUpDown = true;
            this.dtpNgayhethanBHYT.Size = new System.Drawing.Size(121, 21);
            this.dtpNgayhethanBHYT.TabIndex = 13;
            this.dtpNgayhethanBHYT.TabStop = false;
            this.dtpNgayhethanBHYT.Value = new System.DateTime(2013, 8, 10, 0, 0, 0, 0);
            // 
            // label30
            // 
            this.label30.Font = new System.Drawing.Font("Arial", 9F);
            this.label30.Location = new System.Drawing.Point(27, 92);
            this.label30.Name = "label30";
            this.label30.Size = new System.Drawing.Size(82, 21);
            this.label30.TabIndex = 37;
            this.label30.Text = "Ngày nhập";
            this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label17
            // 
            this.label17.Font = new System.Drawing.Font("Arial", 9F);
            this.label17.ForeColor = System.Drawing.Color.Navy;
            this.label17.Location = new System.Drawing.Point(11, 169);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(100, 21);
            this.label17.TabIndex = 456;
            this.label17.Text = "Hạn BHYT:";
            this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label4
            // 
            this.label4.Font = new System.Drawing.Font("Arial", 9F);
            this.label4.ForeColor = System.Drawing.Color.Navy;
            this.label4.Location = new System.Drawing.Point(20, 145);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(91, 21);
            this.label4.TabIndex = 17;
            this.label4.Text = "Mã thẻ BHYT:";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtReg_ID
            // 
            this.txtReg_ID.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            this.txtReg_ID.Font = new System.Drawing.Font("Microsoft Sans Serif", 45F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtReg_ID.Location = new System.Drawing.Point(226, 3);
            this.txtReg_ID.Name = "txtReg_ID";
            this.txtReg_ID.Size = new System.Drawing.Size(10, 36);
            this.txtReg_ID.TabIndex = 0;
            this.txtReg_ID.Text = "0";
            this.txtReg_ID.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.txtReg_ID.Visible = false;
            // 
            // label16
            // 
            this.label16.Font = new System.Drawing.Font("Arial", 9F);
            this.label16.Location = new System.Drawing.Point(241, 94);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(64, 21);
            this.label16.TabIndex = 13;
            this.label16.Text = "Đối tượng :";
            this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtObjectType_Name
            // 
            this.txtObjectType_Name.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtObjectType_Name.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtObjectType_Name.Location = new System.Drawing.Point(311, 92);
            this.txtObjectType_Name.Name = "txtObjectType_Name";
            this.txtObjectType_Name.ReadOnly = true;
            this.txtObjectType_Name.Size = new System.Drawing.Size(87, 21);
            this.txtObjectType_Name.TabIndex = 13;
            this.txtObjectType_Name.TabStop = false;
            this.txtObjectType_Name.Text = "Bảo hiểm Y tế";
            this.txtObjectType_Name.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // label15
            // 
            this.label15.Font = new System.Drawing.Font("Arial", 9F);
            this.label15.Location = new System.Drawing.Point(9, 118);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(102, 21);
            this.label15.TabIndex = 45;
            this.label15.Text = "Địa chỉ BN:";
            this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtInput_Date
            // 
            this.dtInput_Date.CustomFormat = "dd/MM/yyyy";
            this.dtInput_Date.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtInput_Date.DropDownCalendar.Name = "";
            this.dtInput_Date.Enabled = false;
            this.dtInput_Date.Font = new System.Drawing.Font("Arial", 9F);
            this.dtInput_Date.Location = new System.Drawing.Point(115, 93);
            this.dtInput_Date.Name = "dtInput_Date";
            this.dtInput_Date.ReadOnly = true;
            this.dtInput_Date.ShowUpDown = true;
            this.dtInput_Date.Size = new System.Drawing.Size(121, 21);
            this.dtInput_Date.TabIndex = 13;
            this.dtInput_Date.TabStop = false;
            this.dtInput_Date.Value = new System.DateTime(2013, 8, 10, 0, 0, 0, 0);
            // 
            // label19
            // 
            this.label19.Font = new System.Drawing.Font("Arial", 9F);
            this.label19.Location = new System.Drawing.Point(242, 42);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(63, 21);
            this.label19.TabIndex = 7;
            this.label19.Text = "Id BN";
            this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtDiaChi
            // 
            this.txtDiaChi.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtDiaChi.Font = new System.Drawing.Font("Arial", 9F);
            this.txtDiaChi.Location = new System.Drawing.Point(115, 118);
            this.txtDiaChi.Name = "txtDiaChi";
            this.txtDiaChi.ReadOnly = true;
            this.txtDiaChi.Size = new System.Drawing.Size(283, 21);
            this.txtDiaChi.TabIndex = 13;
            this.txtDiaChi.TabStop = false;
            // 
            // txtBHTT
            // 
            this.txtBHTT.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtBHTT.BackColor = System.Drawing.Color.White;
            this.txtBHTT.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtBHTT.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.txtBHTT.Location = new System.Drawing.Point(311, 143);
            this.txtBHTT.Name = "txtBHTT";
            this.txtBHTT.ReadOnly = true;
            this.txtBHTT.Size = new System.Drawing.Size(86, 22);
            this.txtBHTT.TabIndex = 13;
            this.txtBHTT.TabStop = false;
            this.txtBHTT.Text = "100%";
            // 
            // txtGioitinh
            // 
            this.txtGioitinh.BackColor = System.Drawing.Color.White;
            this.txtGioitinh.Font = new System.Drawing.Font("Arial", 9F);
            this.txtGioitinh.Location = new System.Drawing.Point(311, 67);
            this.txtGioitinh.Name = "txtGioitinh";
            this.txtGioitinh.ReadOnly = true;
            this.txtGioitinh.Size = new System.Drawing.Size(35, 21);
            this.txtGioitinh.TabIndex = 13;
            this.txtGioitinh.TabStop = false;
            this.txtGioitinh.Text = "Nam";
            // 
            // txtPatient_ID
            // 
            this.txtPatient_ID.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtPatient_ID.BackColor = System.Drawing.Color.White;
            this.txtPatient_ID.Font = new System.Drawing.Font("Arial", 9F);
            this.txtPatient_ID.Location = new System.Drawing.Point(311, 42);
            this.txtPatient_ID.Name = "txtPatient_ID";
            this.txtPatient_ID.Size = new System.Drawing.Size(87, 21);
            this.txtPatient_ID.TabIndex = 13;
            this.txtPatient_ID.TabStop = false;
            this.txtPatient_ID.Text = "999999";
            // 
            // txtTuoi
            // 
            this.txtTuoi.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtTuoi.BackColor = System.Drawing.Color.White;
            this.txtTuoi.Font = new System.Drawing.Font("Arial", 9F);
            this.txtTuoi.Location = new System.Drawing.Point(346, 67);
            this.txtTuoi.Name = "txtTuoi";
            this.txtTuoi.ReadOnly = true;
            this.txtTuoi.Size = new System.Drawing.Size(50, 21);
            this.txtTuoi.TabIndex = 13;
            this.txtTuoi.TabStop = false;
            this.txtTuoi.Text = "47 tuổi";
            // 
            // label20
            // 
            this.label20.Font = new System.Drawing.Font("Arial", 9F);
            this.label20.Location = new System.Drawing.Point(10, 67);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(99, 21);
            this.label20.TabIndex = 5;
            this.label20.Text = "Tên Bệnh nhân:";
            this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtDiachiBHYT
            // 
            this.txtDiachiBHYT.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtDiachiBHYT.Font = new System.Drawing.Font("Arial", 9F);
            this.txtDiachiBHYT.ForeColor = System.Drawing.Color.Navy;
            this.txtDiachiBHYT.Location = new System.Drawing.Point(115, 192);
            this.txtDiachiBHYT.Name = "txtDiachiBHYT";
            this.txtDiachiBHYT.ReadOnly = true;
            this.txtDiachiBHYT.Size = new System.Drawing.Size(282, 21);
            this.txtDiachiBHYT.TabIndex = 13;
            this.txtDiachiBHYT.TabStop = false;
            this.txtDiachiBHYT.Text = "Địa chỉ thẻ BHYT";
            // 
            // txtPatient_Name
            // 
            this.txtPatient_Name.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPatient_Name.ForeColor = System.Drawing.Color.Black;
            this.txtPatient_Name.Location = new System.Drawing.Point(115, 67);
            this.txtPatient_Name.Name = "txtPatient_Name";
            this.txtPatient_Name.ReadOnly = true;
            this.txtPatient_Name.Size = new System.Drawing.Size(195, 21);
            this.txtPatient_Name.TabIndex = 13;
            this.txtPatient_Name.TabStop = false;
            this.txtPatient_Name.Text = "Nguyễn Thị Huyền Trang";
            // 
            // 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 đưa vào phòng khám</FilterRowInfoText></LocalizableData>";
            grdList_DesignTimeLayout_Reference_0.Instance = ((object)(resources.GetObject("grdList_DesignTimeLayout_Reference_0.Instance")));
            grdList_DesignTimeLayout.LayoutReferences.AddRange(new Janus.Windows.Common.Layouts.JanusLayoutReference[] {
            grdList_DesignTimeLayout_Reference_0});
            grdList_DesignTimeLayout.LayoutString = resources.GetString("grdList_DesignTimeLayout.LayoutString");
            this.grdList.DesignTimeLayout = grdList_DesignTimeLayout;
            this.grdList.Dock = System.Windows.Forms.DockStyle.Top;
            this.grdList.DynamicFiltering = true;
            this.grdList.EnterKeyBehavior = Janus.Windows.GridEX.EnterKeyBehavior.None;
            this.grdList.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdList.FilterRowButtonStyle = Janus.Windows.GridEX.FilterRowButtonStyle.ConditionOperatorDropDown;
            this.grdList.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdList.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdList.FocusCellFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
            this.grdList.FocusCellFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdList.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdList.FrozenColumns = -1;
            this.grdList.GroupByBoxVisible = false;
            this.grdList.LinkFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
            this.grdList.Location = new System.Drawing.Point(0, 17);
            this.grdList.Name = "grdList";
            this.grdList.RecordNavigator = true;
            this.grdList.SelectedFormatStyle.Alpha = 2;
            this.grdList.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdList.SelectedFormatStyle.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
            this.grdList.SelectedFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdList.SelectedFormatStyle.ForeColor = System.Drawing.Color.White;
            this.grdList.SelectedInactiveFormatStyle.ForeColor = System.Drawing.Color.Black;
            this.grdList.Size = new System.Drawing.Size(402, 331);
            this.grdList.TabIndex = 10;
            this.grdList.TabStop = false;
            this.grdList.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // label21
            // 
            this.label21.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label21.Location = new System.Drawing.Point(319, 45);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(90, 21);
            this.label21.TabIndex = 461;
            this.label21.Text = "Phòng khám:";
            this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtPhongkham
            // 
            this.txtPhongkham.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtPhongkham.Font = new System.Drawing.Font("Arial", 9F);
            this.txtPhongkham.Location = new System.Drawing.Point(414, 45);
            this.txtPhongkham.Name = "txtPhongkham";
            this.txtPhongkham.ReadOnly = true;
            this.txtPhongkham.Size = new System.Drawing.Size(179, 21);
            this.txtPhongkham.TabIndex = 17;
            this.txtPhongkham.TabStop = false;
            // 
            // txtTenDvuKham
            // 
            this.txtTenDvuKham.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtTenDvuKham.Font = new System.Drawing.Font("Arial", 9F);
            this.txtTenDvuKham.Location = new System.Drawing.Point(120, 46);
            this.txtTenDvuKham.Name = "txtTenDvuKham";
            this.txtTenDvuKham.ReadOnly = true;
            this.txtTenDvuKham.Size = new System.Drawing.Size(193, 21);
            this.txtTenDvuKham.TabIndex = 16;
            this.txtTenDvuKham.TabStop = false;
            // 
            // label5
            // 
            this.label5.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label5.Location = new System.Drawing.Point(16, 45);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(102, 21);
            this.label5.TabIndex = 431;
            this.label5.Text = "Dịch vụ khám:";
            this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtpCreatedDate
            // 
            this.dtpCreatedDate.CustomFormat = "dd/MM/yyyy :HH:mm";
            this.dtpCreatedDate.Enabled = false;
            this.dtpCreatedDate.Font = new System.Drawing.Font("Arial", 9F);
            this.dtpCreatedDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtpCreatedDate.Location = new System.Drawing.Point(120, 23);
            this.dtpCreatedDate.Name = "dtpCreatedDate";
            this.dtpCreatedDate.ShowUpDown = true;
            this.dtpCreatedDate.Size = new System.Drawing.Size(193, 21);
            this.dtpCreatedDate.TabIndex = 14;
            this.dtpCreatedDate.TabStop = false;
            // 
            // label25
            // 
            this.label25.Font = new System.Drawing.Font("Arial", 9F);
            this.label25.ForeColor = System.Drawing.Color.Red;
            this.label25.Location = new System.Drawing.Point(13, 22);
            this.label25.Name = "label25";
            this.label25.Size = new System.Drawing.Size(102, 21);
            this.label25.TabIndex = 410;
            this.label25.Text = "Ngày khám";
            this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label48
            // 
            this.label48.Font = new System.Drawing.Font("Arial", 9F);
            this.label48.ForeColor = System.Drawing.Color.Red;
            this.label48.Location = new System.Drawing.Point(325, 22);
            this.label48.Name = "label48";
            this.label48.Size = new System.Drawing.Size(83, 21);
            this.label48.TabIndex = 411;
            this.label48.Text = "Bác sĩ khám:";
            this.label48.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // panel4
            // 
            this.panel4.Controls.Add(this.tabDiagInfo);
            this.panel4.Controls.Add(this.grpFunction);
            this.panel4.Controls.Add(this.pnlThongtinBNKCB);
            this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel4.Location = new System.Drawing.Point(402, 0);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(602, 713);
            this.panel4.TabIndex = 0;
            this.panel4.TabStop = true;
            // 
            // tabDiagInfo
            // 
            this.tabDiagInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabDiagInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tabDiagInfo.Location = new System.Drawing.Point(0, 75);
            this.tabDiagInfo.Name = "tabDiagInfo";
            this.tabDiagInfo.Size = new System.Drawing.Size(602, 587);
            this.tabDiagInfo.TabIndex = 18;
            this.tabDiagInfo.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
            this.tabPageChanDoan,
            this.tabPageChidinhThuoc,
            this.uiTabPage2,
            this.uiTabPage1});
            this.tabDiagInfo.TabStop = false;
            this.tabDiagInfo.VisualStyle = Janus.Windows.UI.Tab.TabVisualStyle.VS2005;
            // 
            // tabPageChanDoan
            // 
            this.tabPageChanDoan.Controls.Add(this.pnlKetluan);
            this.tabPageChanDoan.Font = new System.Drawing.Font("Arial", 9F);
            this.tabPageChanDoan.Location = new System.Drawing.Point(1, 23);
            this.tabPageChanDoan.Name = "tabPageChanDoan";
            this.tabPageChanDoan.Size = new System.Drawing.Size(600, 563);
            this.tabPageChanDoan.TabStop = true;
            this.tabPageChanDoan.Text = "Khám và kết luận";
            // 
            // pnlKetluan
            // 
            this.pnlKetluan.Controls.Add(this.cmdKecongtiem);
            this.pnlKetluan.Controls.Add(this.chkNgaytiem);
            this.pnlKetluan.Controls.Add(this.dtpNgaysudung);
            this.pnlKetluan.Controls.Add(this.txtLydotiem);
            this.pnlKetluan.Controls.Add(this.label9);
            this.pnlKetluan.Controls.Add(this.cmdInbangke);
            this.pnlKetluan.Controls.Add(this.chkMuithu);
            this.pnlKetluan.Controls.Add(this.txtNguoitiem);
            this.pnlKetluan.Controls.Add(this.label6);
            this.pnlKetluan.Controls.Add(this.dtpHennhaclai);
            this.pnlKetluan.Controls.Add(this.txtMuithu);
            this.pnlKetluan.Controls.Add(this.chkHennhaclai);
            this.pnlKetluan.Controls.Add(this.cmdChuatiem);
            this.pnlKetluan.Controls.Add(this.cmdDatiem);
            this.pnlKetluan.Controls.Add(this.chkPhanungVacxin);
            this.pnlKetluan.Controls.Add(this.pnlPhanungsautiem);
            this.pnlKetluan.Controls.Add(this.txtVacxin);
            this.pnlKetluan.Controls.Add(this.lblMsg);
            this.pnlKetluan.Controls.Add(this.grbThongTinNhapVien);
            this.pnlKetluan.Controls.Add(this.txtPatientDept_ID);
            this.pnlKetluan.Controls.Add(this.chkDaThucHien);
            this.pnlKetluan.Controls.Add(this.pnlother);
            this.pnlKetluan.Controls.Add(this.cmdLuuChandoan);
            this.pnlKetluan.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlKetluan.Location = new System.Drawing.Point(0, 0);
            this.pnlKetluan.Name = "pnlKetluan";
            this.pnlKetluan.Size = new System.Drawing.Size(600, 563);
            this.pnlKetluan.TabIndex = 19;
            // 
            // cmdKecongtiem
            // 
            this.cmdKecongtiem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdKecongtiem.Image = ((System.Drawing.Image)(resources.GetObject("cmdKecongtiem.Image")));
            this.cmdKecongtiem.ImageSize = new System.Drawing.Size(30, 30);
            this.cmdKecongtiem.ImageVerticalAlignment = Janus.Windows.EditControls.ImageVerticalAlignment.Near;
            this.cmdKecongtiem.Location = new System.Drawing.Point(145, 462);
            this.cmdKecongtiem.Name = "cmdKecongtiem";
            this.cmdKecongtiem.Size = new System.Drawing.Size(129, 29);
            this.cmdKecongtiem.TabIndex = 589;
            this.cmdKecongtiem.Text = "&Kê công tiêm";
            // 
            // chkNgaytiem
            // 
            this.chkNgaytiem.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.chkNgaytiem.Enabled = false;
            this.chkNgaytiem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkNgaytiem.Location = new System.Drawing.Point(50, 307);
            this.chkNgaytiem.Name = "chkNgaytiem";
            this.chkNgaytiem.Size = new System.Drawing.Size(89, 23);
            this.chkNgaytiem.TabIndex = 41;
            this.chkNgaytiem.Text = "Ngày tiêm:";
            // 
            // dtpNgaysudung
            // 
            this.dtpNgaysudung.CustomFormat = "dd/MM/yyyy";
            this.dtpNgaysudung.Enabled = false;
            this.dtpNgaysudung.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtpNgaysudung.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtpNgaysudung.Location = new System.Drawing.Point(145, 307);
            this.dtpNgaysudung.Name = "dtpNgaysudung";
            this.dtpNgaysudung.ShowUpDown = true;
            this.dtpNgaysudung.Size = new System.Drawing.Size(198, 21);
            this.dtpNgaysudung.TabIndex = 41;
            // 
            // txtLydotiem
            // 
            this.txtLydotiem._backcolor = System.Drawing.SystemColors.Control;
            this.txtLydotiem._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtLydotiem.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtLydotiem.AutoCompleteList")));
            this.txtLydotiem.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtLydotiem.CaseSensitive = false;
            this.txtLydotiem.CompareNoID = true;
            this.txtLydotiem.DefaultCode = "-1";
            this.txtLydotiem.DefaultID = "-1";
            this.txtLydotiem.Drug_ID = null;
            this.txtLydotiem.Enabled = false;
            this.txtLydotiem.ExtraWidth = 0;
            this.txtLydotiem.FillValueAfterSelect = false;
            this.txtLydotiem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtLydotiem.LOAI_DANHMUC = "LYDOTIEM";
            this.txtLydotiem.Location = new System.Drawing.Point(430, 306);
            this.txtLydotiem.MaxHeight = -1;
            this.txtLydotiem.MinTypedCharacters = 2;
            this.txtLydotiem.MyCode = "-1";
            this.txtLydotiem.MyID = "-1";
            this.txtLydotiem.Name = "txtLydotiem";
            this.txtLydotiem.RaiseEvent = false;
            this.txtLydotiem.RaiseEventEnter = false;
            this.txtLydotiem.RaiseEventEnterWhenEmpty = false;
            this.txtLydotiem.SelectedIndex = -1;
            this.txtLydotiem.Size = new System.Drawing.Size(162, 21);
            this.txtLydotiem.splitChar = '@';
            this.txtLydotiem.splitCharIDAndCode = '#';
            this.txtLydotiem.TabIndex = 41;
            this.txtLydotiem.TakeCode = false;
            this.txtLydotiem.txtMyCode = null;
            this.txtLydotiem.txtMyCode_Edit = null;
            this.txtLydotiem.txtMyID = null;
            this.txtLydotiem.txtMyID_Edit = null;
            this.txtLydotiem.txtMyName = null;
            this.txtLydotiem.txtMyName_Edit = null;
            this.txtLydotiem.txtNext = null;
            // 
            // label9
            // 
            this.label9.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label9.ForeColor = System.Drawing.Color.Red;
            this.label9.Location = new System.Drawing.Point(346, 304);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(81, 23);
            this.label9.TabIndex = 588;
            this.label9.Text = "Lý do tiêm:";
            this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cmdInbangke
            // 
            this.cmdInbangke.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdInbangke.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdInbangke.Image = ((System.Drawing.Image)(resources.GetObject("cmdInbangke.Image")));
            this.cmdInbangke.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdInbangke.Location = new System.Drawing.Point(308, 463);
            this.cmdInbangke.Name = "cmdInbangke";
            this.cmdInbangke.Size = new System.Drawing.Size(165, 29);
            this.cmdInbangke.TabIndex = 52;
            this.cmdInbangke.Text = "&In bảng kiểm trước TC";
            // 
            // chkMuithu
            // 
            this.chkMuithu.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.chkMuithu.Enabled = false;
            this.chkMuithu.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkMuithu.ForeColor = System.Drawing.Color.Navy;
            this.chkMuithu.Location = new System.Drawing.Point(68, 331);
            this.chkMuithu.Name = "chkMuithu";
            this.chkMuithu.Size = new System.Drawing.Size(71, 23);
            this.chkMuithu.TabIndex = 41;
            this.chkMuithu.Text = "Mũi thứ:";
            // 
            // txtNguoitiem
            // 
            this.txtNguoitiem._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtNguoitiem._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNguoitiem._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtNguoitiem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtNguoitiem.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtNguoitiem.AutoCompleteList")));
            this.txtNguoitiem.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNguoitiem.CaseSensitive = false;
            this.txtNguoitiem.CompareNoID = true;
            this.txtNguoitiem.DefaultCode = "-1";
            this.txtNguoitiem.DefaultID = "-1";
            this.txtNguoitiem.Drug_ID = null;
            this.txtNguoitiem.Enabled = false;
            this.txtNguoitiem.ExtraWidth = 0;
            this.txtNguoitiem.FillValueAfterSelect = false;
            this.txtNguoitiem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNguoitiem.Location = new System.Drawing.Point(430, 283);
            this.txtNguoitiem.MaxHeight = 289;
            this.txtNguoitiem.MinTypedCharacters = 2;
            this.txtNguoitiem.MyCode = "-1";
            this.txtNguoitiem.MyID = "-1";
            this.txtNguoitiem.MyText = "";
            this.txtNguoitiem.Name = "txtNguoitiem";
            this.txtNguoitiem.RaiseEvent = true;
            this.txtNguoitiem.RaiseEventEnter = true;
            this.txtNguoitiem.RaiseEventEnterWhenEmpty = true;
            this.txtNguoitiem.SelectedIndex = -1;
            this.txtNguoitiem.Size = new System.Drawing.Size(162, 21);
            this.txtNguoitiem.splitChar = '@';
            this.txtNguoitiem.splitCharIDAndCode = '#';
            this.txtNguoitiem.TabIndex = 40;
            this.txtNguoitiem.TakeCode = false;
            this.txtNguoitiem.txtMyCode = null;
            this.txtNguoitiem.txtMyCode_Edit = null;
            this.txtNguoitiem.txtMyID = null;
            this.txtNguoitiem.txtMyID_Edit = null;
            this.txtNguoitiem.txtMyName = null;
            this.txtNguoitiem.txtMyName_Edit = null;
            this.txtNguoitiem.txtNext = null;
            // 
            // 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(346, 281);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(81, 23);
            this.label6.TabIndex = 578;
            this.label6.Text = "Người tiêm:";
            this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtpHennhaclai
            // 
            this.dtpHennhaclai.CustomFormat = "dd/MM/yyyy";
            this.dtpHennhaclai.Enabled = false;
            this.dtpHennhaclai.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtpHennhaclai.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtpHennhaclai.Location = new System.Drawing.Point(316, 331);
            this.dtpHennhaclai.Name = "dtpHennhaclai";
            this.dtpHennhaclai.ShowUpDown = true;
            this.dtpHennhaclai.Size = new System.Drawing.Size(100, 21);
            this.dtpHennhaclai.TabIndex = 44;
            // 
            // txtMuithu
            // 
            this.txtMuithu.BackColor = System.Drawing.Color.White;
            this.txtMuithu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtMuithu.Enabled = false;
            this.txtMuithu.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMuithu.ForeColor = System.Drawing.Color.Navy;
            this.txtMuithu.Location = new System.Drawing.Point(145, 332);
            this.txtMuithu.MaxLength = 8;
            this.txtMuithu.Name = "txtMuithu";
            this.txtMuithu.ReadOnly = true;
            this.txtMuithu.Size = new System.Drawing.Size(70, 21);
            this.txtMuithu.TabIndex = 42;
            this.txtMuithu.Text = "0";
            this.txtMuithu.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // chkHennhaclai
            // 
            this.chkHennhaclai.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.chkHennhaclai.Enabled = false;
            this.chkHennhaclai.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkHennhaclai.Location = new System.Drawing.Point(219, 330);
            this.chkHennhaclai.Name = "chkHennhaclai";
            this.chkHennhaclai.Size = new System.Drawing.Size(89, 23);
            this.chkHennhaclai.TabIndex = 43;
            this.chkHennhaclai.Text = "Hẹn nhắc lại:";
            // 
            // cmdChuatiem
            // 
            this.cmdChuatiem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdChuatiem.Enabled = false;
            this.cmdChuatiem.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdChuatiem.ImageSize = new System.Drawing.Size(30, 30);
            this.cmdChuatiem.Location = new System.Drawing.Point(511, 330);
            this.cmdChuatiem.Name = "cmdChuatiem";
            this.cmdChuatiem.Size = new System.Drawing.Size(81, 25);
            this.cmdChuatiem.TabIndex = 46;
            this.cmdChuatiem.TabStop = false;
            this.cmdChuatiem.Text = "Chưa tiêm";
            // 
            // cmdDatiem
            // 
            this.cmdDatiem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdDatiem.Enabled = false;
            this.cmdDatiem.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdDatiem.ImageSize = new System.Drawing.Size(30, 30);
            this.cmdDatiem.Location = new System.Drawing.Point(430, 330);
            this.cmdDatiem.Name = "cmdDatiem";
            this.cmdDatiem.Size = new System.Drawing.Size(81, 25);
            this.cmdDatiem.TabIndex = 45;
            this.cmdDatiem.TabStop = false;
            this.cmdDatiem.Text = "Đã tiêm";
            // 
            // chkPhanungVacxin
            // 
            this.chkPhanungVacxin.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.chkPhanungVacxin.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkPhanungVacxin.Location = new System.Drawing.Point(37, 282);
            this.chkPhanungVacxin.Name = "chkPhanungVacxin";
            this.chkPhanungVacxin.Size = new System.Drawing.Size(102, 23);
            this.chkPhanungVacxin.TabIndex = 38;
            this.chkPhanungVacxin.TabStop = false;
            this.chkPhanungVacxin.Text = "Chọn Vắc xin:";
            this.chkPhanungVacxin.TextAlignment = Janus.Windows.EditControls.TextAlignment.Far;
            // 
            // pnlPhanungsautiem
            // 
            this.pnlPhanungsautiem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.pnlPhanungsautiem.Controls.Add(this.txtHuongdieutri);
            this.pnlPhanungsautiem.Controls.Add(this.label8);
            this.pnlPhanungsautiem.Controls.Add(this.txtKQ);
            this.pnlPhanungsautiem.Controls.Add(this.lblKetluan);
            this.pnlPhanungsautiem.Controls.Add(this.label23);
            this.pnlPhanungsautiem.Controls.Add(this.txtKet_Luan);
            this.pnlPhanungsautiem.Controls.Add(this.txtPhanungSautiem);
            this.pnlPhanungsautiem.Controls.Add(this.label7);
            this.pnlPhanungsautiem.Location = new System.Drawing.Point(5, 358);
            this.pnlPhanungsautiem.Name = "pnlPhanungsautiem";
            this.pnlPhanungsautiem.Size = new System.Drawing.Size(593, 101);
            this.pnlPhanungsautiem.TabIndex = 47;
            this.pnlPhanungsautiem.TabStop = true;
            // 
            // txtHuongdieutri
            // 
            this.txtHuongdieutri._backcolor = System.Drawing.SystemColors.Control;
            this.txtHuongdieutri._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtHuongdieutri.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtHuongdieutri.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtHuongdieutri.AutoCompleteList")));
            this.txtHuongdieutri.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtHuongdieutri.CaseSensitive = false;
            this.txtHuongdieutri.CompareNoID = true;
            this.txtHuongdieutri.DefaultCode = "-1";
            this.txtHuongdieutri.DefaultID = "-1";
            this.txtHuongdieutri.Drug_ID = null;
            this.txtHuongdieutri.ExtraWidth = 0;
            this.txtHuongdieutri.FillValueAfterSelect = false;
            this.txtHuongdieutri.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtHuongdieutri.LOAI_DANHMUC = "XUTRIPHANUNGSAUTIEM";
            this.txtHuongdieutri.Location = new System.Drawing.Point(140, 26);
            this.txtHuongdieutri.MaxHeight = -1;
            this.txtHuongdieutri.MinTypedCharacters = 2;
            this.txtHuongdieutri.MyCode = "-1";
            this.txtHuongdieutri.MyID = "-1";
            this.txtHuongdieutri.Name = "txtHuongdieutri";
            this.txtHuongdieutri.RaiseEvent = false;
            this.txtHuongdieutri.RaiseEventEnter = false;
            this.txtHuongdieutri.RaiseEventEnterWhenEmpty = false;
            this.txtHuongdieutri.SelectedIndex = -1;
            this.txtHuongdieutri.Size = new System.Drawing.Size(447, 21);
            this.txtHuongdieutri.splitChar = '@';
            this.txtHuongdieutri.splitCharIDAndCode = '#';
            this.txtHuongdieutri.TabIndex = 48;
            this.txtHuongdieutri.TakeCode = false;
            this.txtHuongdieutri.txtMyCode = null;
            this.txtHuongdieutri.txtMyCode_Edit = null;
            this.txtHuongdieutri.txtMyID = null;
            this.txtHuongdieutri.txtMyID_Edit = null;
            this.txtHuongdieutri.txtMyName = null;
            this.txtHuongdieutri.txtMyName_Edit = null;
            this.txtHuongdieutri.txtNext = null;
            // 
            // label8
            // 
            this.label8.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label8.ForeColor = System.Drawing.Color.Red;
            this.label8.Location = new System.Drawing.Point(82, 49);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(52, 23);
            this.label8.TabIndex = 552;
            this.label8.Text = "Kết quả:";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtKQ
            // 
            this.txtKQ._backcolor = System.Drawing.SystemColors.Control;
            this.txtKQ._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtKQ.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtKQ.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtKQ.AutoCompleteList")));
            this.txtKQ.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtKQ.CaseSensitive = false;
            this.txtKQ.CompareNoID = true;
            this.txtKQ.DefaultCode = "-1";
            this.txtKQ.DefaultID = "-1";
            this.txtKQ.Drug_ID = null;
            this.txtKQ.ExtraWidth = 0;
            this.txtKQ.FillValueAfterSelect = false;
            this.txtKQ.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtKQ.LOAI_DANHMUC = "KETQUATIEMCHUNG";
            this.txtKQ.Location = new System.Drawing.Point(140, 50);
            this.txtKQ.MaxHeight = -1;
            this.txtKQ.MinTypedCharacters = 2;
            this.txtKQ.MyCode = "-1";
            this.txtKQ.MyID = "-1";
            this.txtKQ.Name = "txtKQ";
            this.txtKQ.RaiseEvent = false;
            this.txtKQ.RaiseEventEnter = false;
            this.txtKQ.RaiseEventEnterWhenEmpty = false;
            this.txtKQ.SelectedIndex = -1;
            this.txtKQ.Size = new System.Drawing.Size(447, 21);
            this.txtKQ.splitChar = '@';
            this.txtKQ.splitCharIDAndCode = '#';
            this.txtKQ.TabIndex = 48;
            this.txtKQ.TakeCode = false;
            this.txtKQ.txtMyCode = null;
            this.txtKQ.txtMyCode_Edit = null;
            this.txtKQ.txtMyID = null;
            this.txtKQ.txtMyID_Edit = null;
            this.txtKQ.txtMyName = null;
            this.txtKQ.txtMyName_Edit = null;
            this.txtKQ.txtNext = null;
            // 
            // lblKetluan
            // 
            this.lblKetluan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblKetluan.ForeColor = System.Drawing.Color.Red;
            this.lblKetluan.Location = new System.Drawing.Point(4, 1);
            this.lblKetluan.Name = "lblKetluan";
            this.lblKetluan.Size = new System.Drawing.Size(130, 23);
            this.lblKetluan.TabIndex = 416;
            this.lblKetluan.Text = "Phản ứng sau tiêm:";
            this.lblKetluan.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // 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.Red;
            this.label23.Location = new System.Drawing.Point(4, 28);
            this.label23.Name = "label23";
            this.label23.Size = new System.Drawing.Size(130, 23);
            this.label23.TabIndex = 432;
            this.label23.Text = "Xử trí:";
            this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtKet_Luan
            // 
            this.txtKet_Luan._backcolor = System.Drawing.SystemColors.Control;
            this.txtKet_Luan._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtKet_Luan.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtKet_Luan.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtKet_Luan.AutoCompleteList")));
            this.txtKet_Luan.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtKet_Luan.CaseSensitive = false;
            this.txtKet_Luan.CompareNoID = true;
            this.txtKet_Luan.DefaultCode = "-1";
            this.txtKet_Luan.DefaultID = "-1";
            this.txtKet_Luan.Drug_ID = null;
            this.txtKet_Luan.ExtraWidth = 0;
            this.txtKet_Luan.FillValueAfterSelect = false;
            this.txtKet_Luan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtKet_Luan.LOAI_DANHMUC = "KETLUANKHAMTIEMCHUNG";
            this.txtKet_Luan.Location = new System.Drawing.Point(140, 73);
            this.txtKet_Luan.MaxHeight = -1;
            this.txtKet_Luan.MinTypedCharacters = 2;
            this.txtKet_Luan.MyCode = "-1";
            this.txtKet_Luan.MyID = "-1";
            this.txtKet_Luan.Name = "txtKet_Luan";
            this.txtKet_Luan.RaiseEvent = false;
            this.txtKet_Luan.RaiseEventEnter = false;
            this.txtKet_Luan.RaiseEventEnterWhenEmpty = false;
            this.txtKet_Luan.SelectedIndex = -1;
            this.txtKet_Luan.Size = new System.Drawing.Size(447, 21);
            this.txtKet_Luan.splitChar = '@';
            this.txtKet_Luan.splitCharIDAndCode = '#';
            this.txtKet_Luan.TabIndex = 49;
            this.txtKet_Luan.TakeCode = false;
            this.txtKet_Luan.txtMyCode = null;
            this.txtKet_Luan.txtMyCode_Edit = null;
            this.txtKet_Luan.txtMyID = null;
            this.txtKet_Luan.txtMyID_Edit = null;
            this.txtKet_Luan.txtMyName = null;
            this.txtKet_Luan.txtMyName_Edit = null;
            this.txtKet_Luan.txtNext = null;
            // 
            // txtPhanungSautiem
            // 
            this.txtPhanungSautiem._backcolor = System.Drawing.SystemColors.Control;
            this.txtPhanungSautiem._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPhanungSautiem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtPhanungSautiem.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtPhanungSautiem.AutoCompleteList")));
            this.txtPhanungSautiem.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtPhanungSautiem.CaseSensitive = false;
            this.txtPhanungSautiem.CompareNoID = true;
            this.txtPhanungSautiem.DefaultCode = "-1";
            this.txtPhanungSautiem.DefaultID = "-1";
            this.txtPhanungSautiem.Drug_ID = null;
            this.txtPhanungSautiem.ExtraWidth = 0;
            this.txtPhanungSautiem.FillValueAfterSelect = false;
            this.txtPhanungSautiem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPhanungSautiem.LOAI_DANHMUC = "PHANUNGSAUTIEM";
            this.txtPhanungSautiem.Location = new System.Drawing.Point(140, 3);
            this.txtPhanungSautiem.MaxHeight = -1;
            this.txtPhanungSautiem.MinTypedCharacters = 2;
            this.txtPhanungSautiem.MyCode = "-1";
            this.txtPhanungSautiem.MyID = "-1";
            this.txtPhanungSautiem.Name = "txtPhanungSautiem";
            this.txtPhanungSautiem.RaiseEvent = false;
            this.txtPhanungSautiem.RaiseEventEnter = false;
            this.txtPhanungSautiem.RaiseEventEnterWhenEmpty = false;
            this.txtPhanungSautiem.SelectedIndex = -1;
            this.txtPhanungSautiem.Size = new System.Drawing.Size(447, 21);
            this.txtPhanungSautiem.splitChar = '@';
            this.txtPhanungSautiem.splitCharIDAndCode = '#';
            this.txtPhanungSautiem.TabIndex = 47;
            this.txtPhanungSautiem.TakeCode = false;
            this.txtPhanungSautiem.txtMyCode = null;
            this.txtPhanungSautiem.txtMyCode_Edit = null;
            this.txtPhanungSautiem.txtMyID = null;
            this.txtPhanungSautiem.txtMyID_Edit = null;
            this.txtPhanungSautiem.txtMyName = null;
            this.txtPhanungSautiem.txtMyName_Edit = null;
            this.txtPhanungSautiem.txtNext = null;
            // 
            // label7
            // 
            this.label7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label7.ForeColor = System.Drawing.Color.Red;
            this.label7.Location = new System.Drawing.Point(4, 73);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(130, 23);
            this.label7.TabIndex = 550;
            this.label7.Text = "Kết luận nguyên nhân:";
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtVacxin
            // 
            this.txtVacxin._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtVacxin._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtVacxin._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtVacxin.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtVacxin.AutoCompleteList")));
            this.txtVacxin.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtVacxin.CaseSensitive = false;
            this.txtVacxin.CompareNoID = true;
            this.txtVacxin.DefaultCode = "-1";
            this.txtVacxin.DefaultID = "-1";
            this.txtVacxin.Drug_ID = null;
            this.txtVacxin.Enabled = false;
            this.txtVacxin.ExtraWidth = 0;
            this.txtVacxin.FillValueAfterSelect = false;
            this.txtVacxin.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtVacxin.Location = new System.Drawing.Point(145, 283);
            this.txtVacxin.MaxHeight = 289;
            this.txtVacxin.MinTypedCharacters = 2;
            this.txtVacxin.MyCode = "-1";
            this.txtVacxin.MyID = "-1";
            this.txtVacxin.MyText = "";
            this.txtVacxin.Name = "txtVacxin";
            this.txtVacxin.RaiseEvent = false;
            this.txtVacxin.RaiseEventEnter = true;
            this.txtVacxin.RaiseEventEnterWhenEmpty = true;
            this.txtVacxin.SelectedIndex = -1;
            this.txtVacxin.Size = new System.Drawing.Size(198, 21);
            this.txtVacxin.splitChar = '@';
            this.txtVacxin.splitCharIDAndCode = '#';
            this.txtVacxin.TabIndex = 39;
            this.txtVacxin.TakeCode = false;
            this.txtVacxin.txtMyCode = null;
            this.txtVacxin.txtMyCode_Edit = null;
            this.txtVacxin.txtMyID = null;
            this.txtVacxin.txtMyID_Edit = null;
            this.txtVacxin.txtMyName = null;
            this.txtVacxin.txtMyName_Edit = null;
            this.txtVacxin.txtNext = null;
            // 
            // 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(0, 542);
            this.lblMsg.Name = "lblMsg";
            this.lblMsg.Size = new System.Drawing.Size(600, 21);
            this.lblMsg.TabIndex = 452;
            this.lblMsg.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // grbThongTinNhapVien
            // 
            this.grbThongTinNhapVien.Controls.Add(this.cmdTimKiemKhoaNoiTru);
            this.grbThongTinNhapVien.Controls.Add(this.txtIdKhoaNoiTru);
            this.grbThongTinNhapVien.Controls.Add(this.txtKhoaNoiTru);
            this.grbThongTinNhapVien.Controls.Add(this.label29);
            this.grbThongTinNhapVien.Controls.Add(this.dtNgayNhapVien);
            this.grbThongTinNhapVien.Enabled = false;
            this.grbThongTinNhapVien.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grbThongTinNhapVien.FrameStyle = Janus.Windows.EditControls.FrameStyle.None;
            this.grbThongTinNhapVien.Location = new System.Drawing.Point(916, 195);
            this.grbThongTinNhapVien.Name = "grbThongTinNhapVien";
            this.grbThongTinNhapVien.Size = new System.Drawing.Size(59, 49);
            this.grbThongTinNhapVien.TabIndex = 442;
            this.grbThongTinNhapVien.Text = "Thông tin nhập viện";
            this.grbThongTinNhapVien.Visible = false;
            // 
            // cmdTimKiemKhoaNoiTru
            // 
            this.cmdTimKiemKhoaNoiTru.Image = ((System.Drawing.Image)(resources.GetObject("cmdTimKiemKhoaNoiTru.Image")));
            this.cmdTimKiemKhoaNoiTru.Location = new System.Drawing.Point(453, 19);
            this.cmdTimKiemKhoaNoiTru.Name = "cmdTimKiemKhoaNoiTru";
            this.cmdTimKiemKhoaNoiTru.Size = new System.Drawing.Size(41, 23);
            this.cmdTimKiemKhoaNoiTru.TabIndex = 444;
            this.cmdTimKiemKhoaNoiTru.TabStop = false;
            this.cmdTimKiemKhoaNoiTru.UseVisualStyleBackColor = true;
            // 
            // txtIdKhoaNoiTru
            // 
            this.txtIdKhoaNoiTru.BackColor = System.Drawing.Color.LightBlue;
            this.txtIdKhoaNoiTru.Location = new System.Drawing.Point(226, 19);
            this.txtIdKhoaNoiTru.Name = "txtIdKhoaNoiTru";
            this.txtIdKhoaNoiTru.Size = new System.Drawing.Size(35, 21);
            this.txtIdKhoaNoiTru.TabIndex = 443;
            this.txtIdKhoaNoiTru.TabStop = false;
            // 
            // txtKhoaNoiTru
            // 
            this.txtKhoaNoiTru.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            this.txtKhoaNoiTru.Location = new System.Drawing.Point(224, 20);
            this.txtKhoaNoiTru.Name = "txtKhoaNoiTru";
            this.txtKhoaNoiTru.Size = new System.Drawing.Size(228, 21);
            this.txtKhoaNoiTru.TabIndex = 13;
            // 
            // label29
            // 
            this.label29.AutoSize = true;
            this.label29.Location = new System.Drawing.Point(144, 23);
            this.label29.Name = "label29";
            this.label29.Size = new System.Drawing.Size(73, 15);
            this.label29.TabIndex = 439;
            this.label29.Text = "&Khoa nội trú";
            // 
            // dtNgayNhapVien
            // 
            this.dtNgayNhapVien.CustomFormat = "dd/MM/yyyy  hh:mm";
            this.dtNgayNhapVien.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtNgayNhapVien.DropDownCalendar.Name = "";
            this.dtNgayNhapVien.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtNgayNhapVien.Location = new System.Drawing.Point(6, 20);
            this.dtNgayNhapVien.Name = "dtNgayNhapVien";
            this.dtNgayNhapVien.ShowUpDown = true;
            this.dtNgayNhapVien.Size = new System.Drawing.Size(140, 18);
            this.dtNgayNhapVien.TabIndex = 14;
            this.dtNgayNhapVien.Value = new System.DateTime(2014, 4, 10, 11, 35, 15, 0);
            // 
            // txtPatientDept_ID
            // 
            this.txtPatientDept_ID.Enabled = false;
            this.txtPatientDept_ID.Location = new System.Drawing.Point(917, 168);
            this.txtPatientDept_ID.Name = "txtPatientDept_ID";
            this.txtPatientDept_ID.Size = new System.Drawing.Size(70, 21);
            this.txtPatientDept_ID.TabIndex = 442;
            this.txtPatientDept_ID.Visible = false;
            // 
            // chkDaThucHien
            // 
            this.chkDaThucHien.Font = new System.Drawing.Font("Arial", 9F);
            this.chkDaThucHien.Location = new System.Drawing.Point(13, 463);
            this.chkDaThucHien.Name = "chkDaThucHien";
            this.chkDaThucHien.Size = new System.Drawing.Size(107, 26);
            this.chkDaThucHien.TabIndex = 5;
            this.chkDaThucHien.TabStop = false;
            this.chkDaThucHien.Text = "Đã khám xong";
            this.chkDaThucHien.Visible = false;
            // 
            // pnlother
            // 
            this.pnlother.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.pnlother.Controls.Add(this.txtChongchidinhkhac);
            this.pnlother.Controls.Add(this.chkKPL_Daochon);
            this.pnlother.Controls.Add(this.chkKL_Daochon);
            this.pnlother.Controls.Add(this.chkKL_All);
            this.pnlother.Controls.Add(this.chkKPL_All);
            this.pnlother.Controls.Add(this.chkKPL8);
            this.pnlother.Controls.Add(this.chkKPL7);
            this.pnlother.Controls.Add(this.chkKL3);
            this.pnlother.Controls.Add(this.chkKPL6);
            this.pnlother.Controls.Add(this.chkKL2);
            this.pnlother.Controls.Add(this.chkKPL5);
            this.pnlother.Controls.Add(this.chkKL1);
            this.pnlother.Controls.Add(this.chkKPL4);
            this.pnlother.Controls.Add(this.chkKPL3);
            this.pnlother.Controls.Add(this.chkKPL2);
            this.pnlother.Controls.Add(this.chkKPL1);
            this.pnlother.Controls.Add(this.txtChanDoanKemTheo);
            this.pnlother.Controls.Add(this.vbLine1);
            this.pnlother.Controls.Add(this.vbLine2);
            this.pnlother.Location = new System.Drawing.Point(5, 3);
            this.pnlother.Name = "pnlother";
            this.pnlother.Size = new System.Drawing.Size(593, 269);
            this.pnlother.TabIndex = 16;
            this.pnlother.TabStop = true;
            // 
            // txtChongchidinhkhac
            // 
            this.txtChongchidinhkhac._backcolor = System.Drawing.SystemColors.Control;
            this.txtChongchidinhkhac._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtChongchidinhkhac.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtChongchidinhkhac.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtChongchidinhkhac.AutoCompleteList")));
            this.txtChongchidinhkhac.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtChongchidinhkhac.CaseSensitive = false;
            this.txtChongchidinhkhac.CompareNoID = true;
            this.txtChongchidinhkhac.DefaultCode = "-1";
            this.txtChongchidinhkhac.DefaultID = "-1";
            this.txtChongchidinhkhac.Drug_ID = null;
            this.txtChongchidinhkhac.Enabled = false;
            this.txtChongchidinhkhac.ExtraWidth = 0;
            this.txtChongchidinhkhac.FillValueAfterSelect = false;
            this.txtChongchidinhkhac.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtChongchidinhkhac.LOAI_DANHMUC = "CHONGCHIDINHKHAC";
            this.txtChongchidinhkhac.Location = new System.Drawing.Point(114, 147);
            this.txtChongchidinhkhac.MaxHeight = -1;
            this.txtChongchidinhkhac.MinTypedCharacters = 2;
            this.txtChongchidinhkhac.MyCode = "-1";
            this.txtChongchidinhkhac.MyID = "-1";
            this.txtChongchidinhkhac.Name = "txtChongchidinhkhac";
            this.txtChongchidinhkhac.RaiseEvent = false;
            this.txtChongchidinhkhac.RaiseEventEnter = false;
            this.txtChongchidinhkhac.RaiseEventEnterWhenEmpty = false;
            this.txtChongchidinhkhac.SelectedIndex = -1;
            this.txtChongchidinhkhac.Size = new System.Drawing.Size(470, 21);
            this.txtChongchidinhkhac.splitChar = '@';
            this.txtChongchidinhkhac.splitCharIDAndCode = '#';
            this.txtChongchidinhkhac.TabIndex = 552;
            this.txtChongchidinhkhac.TakeCode = false;
            this.txtChongchidinhkhac.txtMyCode = null;
            this.txtChongchidinhkhac.txtMyCode_Edit = null;
            this.txtChongchidinhkhac.txtMyID = null;
            this.txtChongchidinhkhac.txtMyID_Edit = null;
            this.txtChongchidinhkhac.txtMyName = null;
            this.txtChongchidinhkhac.txtMyName_Edit = null;
            this.txtChongchidinhkhac.txtNext = null;
            // 
            // chkKPL_Daochon
            // 
            this.chkKPL_Daochon.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkKPL_Daochon.Location = new System.Drawing.Point(5, 60);
            this.chkKPL_Daochon.Name = "chkKPL_Daochon";
            this.chkKPL_Daochon.Size = new System.Drawing.Size(96, 20);
            this.chkKPL_Daochon.TabIndex = 549;
            this.chkKPL_Daochon.TabStop = false;
            this.chkKPL_Daochon.Text = "Đảo chọn";
            // 
            // chkKL_Daochon
            // 
            this.chkKL_Daochon.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkKL_Daochon.Location = new System.Drawing.Point(5, 217);
            this.chkKL_Daochon.Name = "chkKL_Daochon";
            this.chkKL_Daochon.Size = new System.Drawing.Size(96, 20);
            this.chkKL_Daochon.TabIndex = 551;
            this.chkKL_Daochon.TabStop = false;
            this.chkKL_Daochon.Text = "Đảo chọn";
            // 
            // chkKL_All
            // 
            this.chkKL_All.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkKL_All.Location = new System.Drawing.Point(5, 195);
            this.chkKL_All.Name = "chkKL_All";
            this.chkKL_All.Size = new System.Drawing.Size(96, 20);
            this.chkKL_All.TabIndex = 550;
            this.chkKL_All.TabStop = false;
            this.chkKL_All.Text = "Chọn tất cả";
            // 
            // chkKPL_All
            // 
            this.chkKPL_All.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkKPL_All.Location = new System.Drawing.Point(5, 40);
            this.chkKPL_All.Name = "chkKPL_All";
            this.chkKPL_All.Size = new System.Drawing.Size(96, 20);
            this.chkKPL_All.TabIndex = 0;
            this.chkKPL_All.TabStop = false;
            this.chkKPL_All.Text = "Chọn tất cả";
            // 
            // chkKPL8
            // 
            this.chkKPL8.Font = new System.Drawing.Font("Arial", 9F);
            this.chkKPL8.Location = new System.Drawing.Point(114, 128);
            this.chkKPL8.Name = "chkKPL8";
            this.chkKPL8.Size = new System.Drawing.Size(392, 20);
            this.chkKPL8.TabIndex = 34;
            this.chkKPL8.Text = "&8. Có các chống chỉ định khác (Bao gồm)";
            this.chkKPL8.CheckedChanged += new System.EventHandler(this.chkKPL8_CheckedChanged);
            // 
            // chkKPL7
            // 
            this.chkKPL7.Font = new System.Drawing.Font("Arial", 9F);
            this.chkKPL7.Location = new System.Drawing.Point(114, 110);
            this.chkKPL7.Name = "chkKPL7";
            this.chkKPL7.Size = new System.Drawing.Size(392, 20);
            this.chkKPL7.TabIndex = 33;
            this.chkKPL7.Text = "&7. Tri giác bất thường (ly bì hoặc kích thích)";
            // 
            // chkKL3
            // 
            this.chkKL3.Font = new System.Drawing.Font("Arial", 9F);
            this.chkKL3.Location = new System.Drawing.Point(111, 240);
            this.chkKL3.Name = "chkKL3";
            this.chkKL3.Size = new System.Drawing.Size(482, 20);
            this.chkKL3.TabIndex = 37;
            this.chkKL3.Text = "&Tạm hoãn tiêm chủng (Khi có bất kỳ một điểm bất thường tại các mục 2, 3, 4, 5, 6" +
    ", 7)";
            // 
            // chkKPL6
            // 
            this.chkKPL6.Font = new System.Drawing.Font("Arial", 9F);
            this.chkKPL6.Location = new System.Drawing.Point(114, 92);
            this.chkKPL6.Name = "chkKPL6";
            this.chkKPL6.Size = new System.Drawing.Size(392, 20);
            this.chkKPL6.TabIndex = 32;
            this.chkKPL6.Text = "&6. Nhịp thở, nghe phổi bất thường";
            // 
            // chkKL2
            // 
            this.chkKL2.Font = new System.Drawing.Font("Arial", 9F);
            this.chkKL2.Location = new System.Drawing.Point(111, 217);
            this.chkKL2.Name = "chkKL2";
            this.chkKL2.Size = new System.Drawing.Size(482, 20);
            this.chkKL2.TabIndex = 36;
            this.chkKL2.Text = "&Chống chỉ định tiêm chủng (Khi có điềm bất thường tại mục 1,8)";
            // 
            // chkKPL5
            // 
            this.chkKPL5.Font = new System.Drawing.Font("Arial", 9F);
            this.chkKPL5.Location = new System.Drawing.Point(114, 74);
            this.chkKPL5.Name = "chkKPL5";
            this.chkKPL5.Size = new System.Drawing.Size(392, 20);
            this.chkKPL5.TabIndex = 31;
            this.chkKPL5.Text = "&5. Nghe tim bất thường";
            // 
            // chkKL1
            // 
            this.chkKL1.Font = new System.Drawing.Font("Arial", 9F);
            this.chkKL1.Location = new System.Drawing.Point(111, 195);
            this.chkKL1.Name = "chkKL1";
            this.chkKL1.Size = new System.Drawing.Size(482, 20);
            this.chkKL1.TabIndex = 35;
            this.chkKL1.Text = "Đủ điều kiện tiêm chủng ng&ay (Tất cả đều KHÔNG có điểm bất thường)";
            // 
            // chkKPL4
            // 
            this.chkKPL4.Font = new System.Drawing.Font("Arial", 9F);
            this.chkKPL4.Location = new System.Drawing.Point(114, 57);
            this.chkKPL4.Name = "chkKPL4";
            this.chkKPL4.Size = new System.Drawing.Size(470, 20);
            this.chkKPL4.TabIndex = 30;
            this.chkKPL4.Text = "&4. Sốt/ Hạ thân nhiệt (Sốt: nhiệt độ ≥ 37,5oC; Hạ thân nhiệt: nhiệt độ ≤ 35,5oC";
            // 
            // chkKPL2
            // 
            this.chkKPL2.Font = new System.Drawing.Font("Arial", 9F);
            this.chkKPL2.Location = new System.Drawing.Point(114, 23);
            this.chkKPL2.Name = "chkKPL2";
            this.chkKPL2.Size = new System.Drawing.Size(470, 20);
            this.chkKPL2.TabIndex = 28;
            this.chkKPL2.Text = "&2. Đang mắc bệnh cấp tính hoặc bệnh mạn tính tiến triển";
            // 
            // chkKPL1
            // 
            this.chkKPL1.Font = new System.Drawing.Font("Arial", 9F);
            this.chkKPL1.Location = new System.Drawing.Point(114, 5);
            this.chkKPL1.Name = "chkKPL1";
            this.chkKPL1.Size = new System.Drawing.Size(470, 20);
            this.chkKPL1.TabIndex = 27;
            this.chkKPL1.Text = "&1. Sốc, phản ứng nặng sau lần tiêm chủng trước";
            // 
            // txtChanDoanKemTheo
            // 
            this.txtChanDoanKemTheo.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtChanDoanKemTheo.Location = new System.Drawing.Point(623, 80);
            this.txtChanDoanKemTheo.MaxLength = 200;
            this.txtChanDoanKemTheo.Name = "txtChanDoanKemTheo";
            this.txtChanDoanKemTheo.Size = new System.Drawing.Size(11, 21);
            this.txtChanDoanKemTheo.TabIndex = 1;
            this.txtChanDoanKemTheo.TabStop = false;
            this.txtChanDoanKemTheo.Visible = false;
            // 
            // vbLine1
            // 
            this.vbLine1._FontColor = System.Drawing.Color.Black;
            this.vbLine1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.vbLine1.BackColor = System.Drawing.Color.Transparent;
            this.vbLine1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine1.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine1.ForeColor = System.Drawing.Color.Black;
            this.vbLine1.Location = new System.Drawing.Point(4, 5);
            this.vbLine1.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine1.Name = "vbLine1";
            this.vbLine1.Size = new System.Drawing.Size(96, 22);
            this.vbLine1.TabIndex = 448;
            this.vbLine1.TabStop = false;
            this.vbLine1.YourText = "Khám phân loại";
            // 
            // vbLine2
            // 
            this.vbLine2._FontColor = System.Drawing.Color.Navy;
            this.vbLine2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.vbLine2.BackColor = System.Drawing.Color.Transparent;
            this.vbLine2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine2.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine2.Location = new System.Drawing.Point(1, 175);
            this.vbLine2.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine2.Name = "vbLine2";
            this.vbLine2.Size = new System.Drawing.Size(592, 20);
            this.vbLine2.TabIndex = 10;
            this.vbLine2.TabStop = false;
            this.vbLine2.YourText = "Kết luận đủ điều kiện tiêm chủng?";
            // 
            // tabPageChidinhThuoc
            // 
            this.tabPageChidinhThuoc.Controls.Add(this.pnltabkedon);
            this.tabPageChidinhThuoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tabPageChidinhThuoc.Location = new System.Drawing.Point(1, 23);
            this.tabPageChidinhThuoc.Name = "tabPageChidinhThuoc";
            this.tabPageChidinhThuoc.Size = new System.Drawing.Size(600, 563);
            this.tabPageChidinhThuoc.TabStop = true;
            this.tabPageChidinhThuoc.Text = "Kê Vắc xin (Nhấn F3)";
            // 
            // pnltabkedon
            // 
            this.pnltabkedon.Controls.Add(this.grdPresDetail);
            this.pnltabkedon.Controls.Add(this.pnlDonthuoc);
            this.pnltabkedon.Controls.Add(this.barcode);
            this.pnltabkedon.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnltabkedon.Location = new System.Drawing.Point(0, 0);
            this.pnltabkedon.Name = "pnltabkedon";
            this.pnltabkedon.Size = new System.Drawing.Size(600, 563);
            this.pnltabkedon.TabIndex = 21;
            // 
            // grdPresDetail
            // 
            this.grdPresDetail.AlternatingColors = true;
            this.grdPresDetail.ContextMenuStrip = this.ctxDelDrug;
            grdPresDetail_DesignTimeLayout.LayoutString = resources.GetString("grdPresDetail_DesignTimeLayout.LayoutString");
            this.grdPresDetail.DesignTimeLayout = grdPresDetail_DesignTimeLayout;
            this.grdPresDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdPresDetail.DynamicFiltering = true;
            this.grdPresDetail.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdPresDetail.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdPresDetail.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdPresDetail.Font = new System.Drawing.Font("Arial", 9F);
            this.grdPresDetail.GroupByBoxVisible = false;
            this.grdPresDetail.GroupRowFormatStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
            this.grdPresDetail.GroupRowFormatStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.grdPresDetail.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdPresDetail.Location = new System.Drawing.Point(0, 0);
            this.grdPresDetail.Name = "grdPresDetail";
            this.grdPresDetail.RecordNavigator = true;
            this.grdPresDetail.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdPresDetail.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdPresDetail.Size = new System.Drawing.Size(600, 531);
            this.grdPresDetail.TabIndex = 2;
            this.grdPresDetail.TabStop = false;
            this.grdPresDetail.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdPresDetail.TotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
            this.grdPresDetail.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdPresDetail.TotalRowFormatStyle.ForeColor = System.Drawing.Color.Black;
            this.grdPresDetail.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdPresDetail.UseGroupRowSelector = true;
            this.grdPresDetail.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // pnlDonthuoc
            // 
            this.pnlDonthuoc.Controls.Add(this.cmdInbangke_1);
            this.pnlDonthuoc.Controls.Add(this.cmdPrintPres);
            this.pnlDonthuoc.Controls.Add(this.cmdDeletePres);
            this.pnlDonthuoc.Controls.Add(this.cmdUpdatePres);
            this.pnlDonthuoc.Controls.Add(this.cmdCreateNewPres);
            this.pnlDonthuoc.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.pnlDonthuoc.Location = new System.Drawing.Point(0, 531);
            this.pnlDonthuoc.Name = "pnlDonthuoc";
            this.pnlDonthuoc.Size = new System.Drawing.Size(600, 32);
            this.pnlDonthuoc.TabIndex = 1;
            // 
            // cmdInbangke_1
            // 
            this.cmdInbangke_1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdInbangke_1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdInbangke_1.Image = ((System.Drawing.Image)(resources.GetObject("cmdInbangke_1.Image")));
            this.cmdInbangke_1.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdInbangke_1.Location = new System.Drawing.Point(345, 3);
            this.cmdInbangke_1.Name = "cmdInbangke_1";
            this.cmdInbangke_1.Size = new System.Drawing.Size(165, 25);
            this.cmdInbangke_1.TabIndex = 4;
            this.cmdInbangke_1.Text = "In bảng kiểm trước TC";
            // 
            // barcode
            // 
            this.barcode.BackColor = System.Drawing.Color.White;
            this.barcode.BarColor = System.Drawing.Color.Black;
            this.barcode.BarRatio = 2F;
            this.barcode.Data = null;
            this.barcode.DataExtension = null;
            this.barcode.Location = new System.Drawing.Point(125, 55);
            this.barcode.Name = "barcode";
            this.barcode.Size = new System.Drawing.Size(210, 74);
            this.barcode.Symbology = Mabry.Windows.Forms.Barcode.Barcode.BarcodeSymbologies.Code128;
            this.barcode.TabIndex = 81;
            this.barcode.Text = "00000000";
            this.barcode.Visible = false;
            // 
            // uiTabPage2
            // 
            this.uiTabPage2.Controls.Add(this.grdVTTH);
            this.uiTabPage2.Controls.Add(this.pnlVTTH);
            this.uiTabPage2.Location = new System.Drawing.Point(1, 23);
            this.uiTabPage2.Name = "uiTabPage2";
            this.uiTabPage2.Size = new System.Drawing.Size(600, 543);
            this.uiTabPage2.TabStop = true;
            this.uiTabPage2.TabVisible = false;
            this.uiTabPage2.Text = "Kê VTTH";
            // 
            // grdVTTH
            // 
            this.grdVTTH.AlternatingColors = true;
            this.grdVTTH.ContextMenuStrip = this.ctxDelDrug;
            grdVTTH_DesignTimeLayout.LayoutString = resources.GetString("grdVTTH_DesignTimeLayout.LayoutString");
            this.grdVTTH.DesignTimeLayout = grdVTTH_DesignTimeLayout;
            this.grdVTTH.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdVTTH.DynamicFiltering = true;
            this.grdVTTH.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdVTTH.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdVTTH.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdVTTH.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdVTTH.GroupByBoxVisible = false;
            this.grdVTTH.GroupRowFormatStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdVTTH.GroupRowFormatStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.grdVTTH.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdVTTH.Location = new System.Drawing.Point(0, 0);
            this.grdVTTH.Name = "grdVTTH";
            this.grdVTTH.RecordNavigator = true;
            this.grdVTTH.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdVTTH.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdVTTH.Size = new System.Drawing.Size(600, 511);
            this.grdVTTH.TabIndex = 24;
            this.grdVTTH.TabStop = false;
            this.grdVTTH.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdVTTH.TotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
            this.grdVTTH.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdVTTH.TotalRowFormatStyle.ForeColor = System.Drawing.Color.Black;
            this.grdVTTH.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdVTTH.UseGroupRowSelector = true;
            this.grdVTTH.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // pnlVTTH
            // 
            this.pnlVTTH.Controls.Add(this.cmdInphieuVT);
            this.pnlVTTH.Controls.Add(this.cmdXoaphieuVT);
            this.pnlVTTH.Controls.Add(this.cmdSuaphieuVT);
            this.pnlVTTH.Controls.Add(this.cmdThemphieuVT);
            this.pnlVTTH.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.pnlVTTH.Location = new System.Drawing.Point(0, 511);
            this.pnlVTTH.Name = "pnlVTTH";
            this.pnlVTTH.Size = new System.Drawing.Size(600, 32);
            this.pnlVTTH.TabIndex = 23;
            // 
            // uiTabPage1
            // 
            this.uiTabPage1.Controls.Add(this.panel2);
            this.uiTabPage1.Location = new System.Drawing.Point(1, 23);
            this.uiTabPage1.Name = "uiTabPage1";
            this.uiTabPage1.Size = new System.Drawing.Size(600, 563);
            this.uiTabPage1.TabStop = true;
            this.uiTabPage1.Text = "Cấu hình";
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.cboLaserPrinters);
            this.panel2.Controls.Add(this.cboPrintPreviewDonthuoc);
            this.panel2.Controls.Add(this.cboA4Donthuoc);
            this.panel2.Controls.Add(this.label26);
            this.panel2.Controls.Add(this.label2);
            this.panel2.Controls.Add(this.vbLine5);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(0, 0);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(600, 563);
            this.panel2.TabIndex = 25;
            // 
            // cboLaserPrinters
            // 
            this.cboLaserPrinters.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboLaserPrinters.FormattingEnabled = true;
            this.cboLaserPrinters.Location = new System.Drawing.Point(95, 32);
            this.cboLaserPrinters.Name = "cboLaserPrinters";
            this.cboLaserPrinters.Size = new System.Drawing.Size(273, 23);
            this.cboLaserPrinters.TabIndex = 445;
            // 
            // cboPrintPreviewDonthuoc
            // 
            this.cboPrintPreviewDonthuoc.BackColor = System.Drawing.Color.White;
            this.cboPrintPreviewDonthuoc.BorderStyle = Janus.Windows.UI.BorderStyle.Sunken;
            this.cboPrintPreviewDonthuoc.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboPrintPreviewDonthuoc.Font = new System.Drawing.Font("Arial", 9F);
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "Xem trước khi in";
            uiComboBoxItem1.Value = "0";
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "In ngay";
            uiComboBoxItem2.Value = "1";
            this.cboPrintPreviewDonthuoc.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2});
            this.cboPrintPreviewDonthuoc.Location = new System.Drawing.Point(152, 59);
            this.cboPrintPreviewDonthuoc.Name = "cboPrintPreviewDonthuoc";
            this.cboPrintPreviewDonthuoc.Size = new System.Drawing.Size(216, 21);
            this.cboPrintPreviewDonthuoc.TabIndex = 434;
            this.cboPrintPreviewDonthuoc.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
            // 
            // cboA4Donthuoc
            // 
            this.cboA4Donthuoc.BackColor = System.Drawing.Color.White;
            this.cboA4Donthuoc.BorderStyle = Janus.Windows.UI.BorderStyle.Sunken;
            this.cboA4Donthuoc.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboA4Donthuoc.Font = new System.Drawing.Font("Arial", 9F);
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "A4";
            uiComboBoxItem3.Value = "A4";
            uiComboBoxItem4.FormatStyle.Alpha = 0;
            uiComboBoxItem4.IsSeparator = false;
            uiComboBoxItem4.Text = "A5";
            uiComboBoxItem4.Value = "A5";
            this.cboA4Donthuoc.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem3,
            uiComboBoxItem4});
            this.cboA4Donthuoc.Location = new System.Drawing.Point(95, 59);
            this.cboA4Donthuoc.Name = "cboA4Donthuoc";
            this.cboA4Donthuoc.Size = new System.Drawing.Size(55, 21);
            this.cboA4Donthuoc.TabIndex = 433;
            this.cboA4Donthuoc.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
            // 
            // label26
            // 
            this.label26.AutoSize = true;
            this.label26.Location = new System.Drawing.Point(7, 36);
            this.label26.Name = "label26";
            this.label26.Size = new System.Drawing.Size(75, 15);
            this.label26.TabIndex = 446;
            this.label26.Text = "Chọn máy in";
            // 
            // label2
            // 
            this.label2.Font = new System.Drawing.Font("Arial", 9F);
            this.label2.Location = new System.Drawing.Point(15, 59);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(74, 21);
            this.label2.TabIndex = 432;
            this.label2.Text = "Khổ giấy";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // vbLine5
            // 
            this.vbLine5._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine5.BackColor = System.Drawing.Color.Transparent;
            this.vbLine5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine5.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine5.Location = new System.Drawing.Point(10, 6);
            this.vbLine5.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine5.Name = "vbLine5";
            this.vbLine5.Size = new System.Drawing.Size(617, 22);
            this.vbLine5.TabIndex = 454;
            this.vbLine5.TabStop = false;
            this.vbLine5.YourText = "Cấu hình đơn thuốc";
            // 
            // grpFunction
            // 
            this.grpFunction.Controls.Add(this.cmdChuyenPhong);
            this.grpFunction.Controls.Add(this.cmdUnlock);
            this.grpFunction.Controls.Add(this.cmdBenhAnNgoaiTru);
            this.grpFunction.Controls.Add(this.cmdCauHinh);
            this.grpFunction.Controls.Add(this.cmdKETTHUC);
            this.grpFunction.Controls.Add(this.cmdSave);
            this.grpFunction.Controls.Add(this.cmdThamkhamConfig);
            this.grpFunction.Controls.Add(this.cmdChuyenVien);
            this.grpFunction.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.grpFunction.Location = new System.Drawing.Point(0, 662);
            this.grpFunction.Name = "grpFunction";
            this.grpFunction.Size = new System.Drawing.Size(602, 51);
            this.grpFunction.TabIndex = 65;
            this.grpFunction.TabStop = false;
            // 
            // cmdBenhAnNgoaiTru
            // 
            this.cmdBenhAnNgoaiTru.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdBenhAnNgoaiTru.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdBenhAnNgoaiTru.ImageSize = new System.Drawing.Size(32, 32);
            this.cmdBenhAnNgoaiTru.Location = new System.Drawing.Point(903, -5);
            this.cmdBenhAnNgoaiTru.Name = "cmdBenhAnNgoaiTru";
            this.cmdBenhAnNgoaiTru.Size = new System.Drawing.Size(121, 44);
            this.cmdBenhAnNgoaiTru.TabIndex = 451;
            this.cmdBenhAnNgoaiTru.Text = "&Bệnh Án Ngoại Trú";
            this.cmdBenhAnNgoaiTru.Visible = false;
            // 
            // cmdKETTHUC
            // 
            this.cmdKETTHUC.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdKETTHUC.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdKETTHUC.Image = ((System.Drawing.Image)(resources.GetObject("cmdKETTHUC.Image")));
            this.cmdKETTHUC.ImageSize = new System.Drawing.Size(32, 32);
            this.cmdKETTHUC.Location = new System.Drawing.Point(762, -5);
            this.cmdKETTHUC.Name = "cmdKETTHUC";
            this.cmdKETTHUC.Size = new System.Drawing.Size(140, 44);
            this.cmdKETTHUC.TabIndex = 449;
            this.cmdKETTHUC.Text = "&Kết thúc lần khám";
            this.cmdKETTHUC.Visible = false;
            // 
            // cmdChuyenVien
            // 
            this.cmdChuyenVien.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdChuyenVien.Enabled = false;
            this.cmdChuyenVien.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdChuyenVien.Image = ((System.Drawing.Image)(resources.GetObject("cmdChuyenVien.Image")));
            this.cmdChuyenVien.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdChuyenVien.Location = new System.Drawing.Point(146, 14);
            this.cmdChuyenVien.Name = "cmdChuyenVien";
            this.cmdChuyenVien.Size = new System.Drawing.Size(129, 30);
            this.cmdChuyenVien.TabIndex = 54;
            this.cmdChuyenVien.TabStop = false;
            this.cmdChuyenVien.Text = "Chuyển viện";
            // 
            // pnlThongtinBNKCB
            // 
            this.pnlThongtinBNKCB.Controls.Add(this.txtBacsi);
            this.pnlThongtinBNKCB.Controls.Add(this.label12);
            this.pnlThongtinBNKCB.Controls.Add(this.label21);
            this.pnlThongtinBNKCB.Controls.Add(this.txtNguoiTiepNhan);
            this.pnlThongtinBNKCB.Controls.Add(this.txtDepartment_ID);
            this.pnlThongtinBNKCB.Controls.Add(this.txtHanTheBHYT);
            this.pnlThongtinBNKCB.Controls.Add(this.txtPhongkham);
            this.pnlThongtinBNKCB.Controls.Add(this.txt_idchidinhphongkham);
            this.pnlThongtinBNKCB.Controls.Add(this.txtExam_ID);
            this.pnlThongtinBNKCB.Controls.Add(this.label48);
            this.pnlThongtinBNKCB.Controls.Add(this.txtTenDvuKham);
            this.pnlThongtinBNKCB.Controls.Add(this.label25);
            this.pnlThongtinBNKCB.Controls.Add(this.dtpCreatedDate);
            this.pnlThongtinBNKCB.Controls.Add(this.label5);
            this.pnlThongtinBNKCB.Controls.Add(this.vbLine4);
            this.pnlThongtinBNKCB.Dock = System.Windows.Forms.DockStyle.Top;
            this.pnlThongtinBNKCB.Location = new System.Drawing.Point(0, 0);
            this.pnlThongtinBNKCB.Name = "pnlThongtinBNKCB";
            this.pnlThongtinBNKCB.Size = new System.Drawing.Size(602, 75);
            this.pnlThongtinBNKCB.TabIndex = 0;
            this.pnlThongtinBNKCB.TabStop = true;
            // 
            // txtBacsi
            // 
            this.txtBacsi._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtBacsi._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtBacsi._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtBacsi.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtBacsi.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtBacsi.AutoCompleteList")));
            this.txtBacsi.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtBacsi.CaseSensitive = false;
            this.txtBacsi.CompareNoID = true;
            this.txtBacsi.DefaultCode = "-1";
            this.txtBacsi.DefaultID = "-1";
            this.txtBacsi.Drug_ID = null;
            this.txtBacsi.ExtraWidth = 0;
            this.txtBacsi.FillValueAfterSelect = false;
            this.txtBacsi.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtBacsi.Location = new System.Drawing.Point(414, 23);
            this.txtBacsi.MaxHeight = 289;
            this.txtBacsi.MinTypedCharacters = 2;
            this.txtBacsi.MyCode = "-1";
            this.txtBacsi.MyID = "-1";
            this.txtBacsi.MyText = "";
            this.txtBacsi.Name = "txtBacsi";
            this.txtBacsi.RaiseEvent = true;
            this.txtBacsi.RaiseEventEnter = true;
            this.txtBacsi.RaiseEventEnterWhenEmpty = true;
            this.txtBacsi.SelectedIndex = -1;
            this.txtBacsi.Size = new System.Drawing.Size(179, 21);
            this.txtBacsi.splitChar = '@';
            this.txtBacsi.splitCharIDAndCode = '#';
            this.txtBacsi.TabIndex = 15;
            this.txtBacsi.TakeCode = false;
            this.txtBacsi.txtMyCode = null;
            this.txtBacsi.txtMyCode_Edit = null;
            this.txtBacsi.txtMyID = null;
            this.txtBacsi.txtMyID_Edit = null;
            this.txtBacsi.txtMyName = null;
            this.txtBacsi.txtMyName_Edit = null;
            this.txtBacsi.txtNext = null;
            // 
            // label12
            // 
            this.label12.Font = new System.Drawing.Font("Arial", 9F);
            this.label12.Location = new System.Drawing.Point(683, 162);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(96, 15);
            this.label12.TabIndex = 432;
            this.label12.Text = "&Người tiếp nhận";
            this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.label12.Visible = false;
            // 
            // txtNguoiTiepNhan
            // 
            this.txtNguoiTiepNhan.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtNguoiTiepNhan.BackColor = System.Drawing.Color.White;
            this.txtNguoiTiepNhan.Font = new System.Drawing.Font("Arial", 9F);
            this.txtNguoiTiepNhan.Location = new System.Drawing.Point(771, 158);
            this.txtNguoiTiepNhan.Name = "txtNguoiTiepNhan";
            this.txtNguoiTiepNhan.ReadOnly = true;
            this.txtNguoiTiepNhan.Size = new System.Drawing.Size(144, 21);
            this.txtNguoiTiepNhan.TabIndex = 433;
            this.txtNguoiTiepNhan.TabStop = false;
            this.txtNguoiTiepNhan.Visible = false;
            // 
            // txtDepartment_ID
            // 
            this.txtDepartment_ID.BackColor = System.Drawing.Color.White;
            this.txtDepartment_ID.Font = new System.Drawing.Font("Arial", 9F);
            this.txtDepartment_ID.Location = new System.Drawing.Point(768, 180);
            this.txtDepartment_ID.Name = "txtDepartment_ID";
            this.txtDepartment_ID.ReadOnly = true;
            this.txtDepartment_ID.Size = new System.Drawing.Size(10, 21);
            this.txtDepartment_ID.TabIndex = 20;
            this.txtDepartment_ID.TabStop = false;
            this.txtDepartment_ID.Visible = false;
            // 
            // txtHanTheBHYT
            // 
            this.txtHanTheBHYT.Font = new System.Drawing.Font("Arial", 9F);
            this.txtHanTheBHYT.Location = new System.Drawing.Point(606, 34);
            this.txtHanTheBHYT.Name = "txtHanTheBHYT";
            this.txtHanTheBHYT.Size = new System.Drawing.Size(11, 21);
            this.txtHanTheBHYT.TabIndex = 48;
            this.txtHanTheBHYT.TabStop = false;
            this.txtHanTheBHYT.Visible = false;
            // 
            // txt_idchidinhphongkham
            // 
            this.txt_idchidinhphongkham.BackColor = System.Drawing.Color.White;
            this.txt_idchidinhphongkham.Font = new System.Drawing.Font("Arial", 9F);
            this.txt_idchidinhphongkham.Location = new System.Drawing.Point(634, 33);
            this.txt_idchidinhphongkham.Name = "txt_idchidinhphongkham";
            this.txt_idchidinhphongkham.Size = new System.Drawing.Size(19, 21);
            this.txt_idchidinhphongkham.TabIndex = 14;
            this.txt_idchidinhphongkham.TabStop = false;
            this.txt_idchidinhphongkham.Visible = false;
            // 
            // txtExam_ID
            // 
            this.txtExam_ID.BackColor = System.Drawing.Color.White;
            this.txtExam_ID.Font = new System.Drawing.Font("Arial", 9F);
            this.txtExam_ID.Location = new System.Drawing.Point(618, 33);
            this.txtExam_ID.Name = "txtExam_ID";
            this.txtExam_ID.Size = new System.Drawing.Size(10, 21);
            this.txtExam_ID.TabIndex = 38;
            this.txtExam_ID.TabStop = false;
            this.txtExam_ID.Visible = false;
            // 
            // vbLine4
            // 
            this.vbLine4._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.vbLine4.BackColor = System.Drawing.Color.Transparent;
            this.vbLine4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine4.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine4.Location = new System.Drawing.Point(11, 4);
            this.vbLine4.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine4.Name = "vbLine4";
            this.vbLine4.Size = new System.Drawing.Size(587, 22);
            this.vbLine4.TabIndex = 450;
            this.vbLine4.TabStop = false;
            this.vbLine4.YourText = "Thông tin khám";
            // 
            // uiTabPage5
            // 
            this.uiTabPage5.Location = new System.Drawing.Point(0, 0);
            this.uiTabPage5.Name = "uiTabPage5";
            this.uiTabPage5.Size = new System.Drawing.Size(0, 0);
            this.uiTabPage5.TabStop = true;
            // 
            // ctxDelVTTH
            // 
            this.ctxDelVTTH.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuDelVTTH});
            this.ctxDelVTTH.Name = "ctxDelDrug";
            this.ctxDelVTTH.Size = new System.Drawing.Size(235, 26);
            // 
            // mnuDelVTTH
            // 
            this.mnuDelVTTH.Name = "mnuDelVTTH";
            this.mnuDelVTTH.Size = new System.Drawing.Size(234, 22);
            this.mnuDelVTTH.Text = "Xóa Vật tư tiêu hao đang chọn";
            // 
            // errorProvider1
            // 
            this.errorProvider1.ContainerControl = this;
            // 
            // frm_KCB_Thamkham_Tiemchung
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
            this.ClientSize = new System.Drawing.Size(1004, 736);
            this.Controls.Add(this.panel4);
            this.Controls.Add(this.panel3);
            this.Controls.Add(this.uiStatusBar1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.KeyPreview = true;
            this.Name = "frm_KCB_Thamkham_Tiemchung";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "KHÁM TIÊM CHỦNG";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            ((System.ComponentModel.ISupportInitialize)(this.grpSearch)).EndInit();
            this.grpSearch.ResumeLayout(false);
            this.grpSearch.PerformLayout();
            this.ctxDelCLS.ResumeLayout(false);
            this.ctxDelDrug.ResumeLayout(false);
            this.panel3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
            this.uiGroupBox2.ResumeLayout(false);
            this.pnlPatientInfor.ResumeLayout(false);
            this.pnlPatientInfor.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
            this.panel4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.tabDiagInfo)).EndInit();
            this.tabDiagInfo.ResumeLayout(false);
            this.tabPageChanDoan.ResumeLayout(false);
            this.pnlKetluan.ResumeLayout(false);
            this.pnlKetluan.PerformLayout();
            this.pnlPhanungsautiem.ResumeLayout(false);
            this.pnlPhanungsautiem.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grbThongTinNhapVien)).EndInit();
            this.grbThongTinNhapVien.ResumeLayout(false);
            this.grbThongTinNhapVien.PerformLayout();
            this.pnlother.ResumeLayout(false);
            this.pnlother.PerformLayout();
            this.tabPageChidinhThuoc.ResumeLayout(false);
            this.pnltabkedon.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdPresDetail)).EndInit();
            this.pnlDonthuoc.ResumeLayout(false);
            this.uiTabPage2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdVTTH)).EndInit();
            this.pnlVTTH.ResumeLayout(false);
            this.uiTabPage1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            this.grpFunction.ResumeLayout(false);
            this.pnlThongtinBNKCB.ResumeLayout(false);
            this.pnlThongtinBNKCB.PerformLayout();
            this.ctxDelVTTH.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            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.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel6 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_THANHTOAN_NOITRU));
            Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.Common.Layouts.JanusLayoutReference grdList_DesignTimeLayout_Reference_0 = new Janus.Windows.Common.Layouts.JanusLayoutReference("GridEXLayoutData.RootTable.Columns.Column0.ButtonImage");
            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.GridEX.GridEXLayout grdPayment_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.Common.Layouts.JanusLayoutReference grdPayment_DesignTimeLayout_Reference_0 = new Janus.Windows.Common.Layouts.JanusLayoutReference("GridEXLayoutData.RootTable.Columns.Column0.ButtonImage");
            Janus.Windows.Common.Layouts.JanusLayoutReference grdPayment_DesignTimeLayout_Reference_1 = new Janus.Windows.Common.Layouts.JanusLayoutReference("GridEXLayoutData.RootTable.Columns.Column1.ButtonImage");
            Janus.Windows.GridEX.GridEXLayout grdPhieuChi_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.Common.Layouts.JanusLayoutReference grdPhieuChi_DesignTimeLayout_Reference_0 = new Janus.Windows.Common.Layouts.JanusLayoutReference("GridEXLayoutData.RootTable.Columns.Column0.ButtonImage");
            Janus.Windows.Common.Layouts.JanusLayoutReference grdPhieuChi_DesignTimeLayout_Reference_1 = new Janus.Windows.Common.Layouts.JanusLayoutReference("GridEXLayoutData.RootTable.Columns.Column1.ButtonImage");
            Janus.Windows.GridEX.GridEXLayout grdDSKCB_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdHoaDonCapPhat_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdThongTinChuaThanhToan_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdThongTinDaThanhToan_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            this.uiStatusBar1 = new Janus.Windows.UI.StatusBar.UIStatusBar();
            this.cmdSearch = new Janus.Windows.EditControls.UIButton();
            this.txtTenBenhNhan = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtMaLanKham = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label1 = new System.Windows.Forms.Label();
            this.cboObjectType_ID = new Janus.Windows.EditControls.UIComboBox();
            this.label6 = new System.Windows.Forms.Label();
            this.label32 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.dtToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.dtFromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.chkCreateDate = new System.Windows.Forms.CheckBox();
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.printDialog1 = new System.Windows.Forms.PrintDialog();
            this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
            this.cmdCauHinh = new Janus.Windows.EditControls.UIButton();
            this.panel1 = new System.Windows.Forms.Panel();
            this.pnlThongtinBN = new System.Windows.Forms.Panel();
            this.lblMsg = new System.Windows.Forms.Label();
            this.label29 = new System.Windows.Forms.Label();
            this.txtICD = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.cmdSaveICD = new Janus.Windows.EditControls.UIButton();
            this.label16 = new System.Windows.Forms.Label();
            this.cmdLaylaiThongTin = new Janus.Windows.EditControls.UIButton();
            this.cmdCapnhatngayBHYT = new Janus.Windows.EditControls.UIButton();
            this.txtDTTT = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtDiachiBHYT = new Janus.Windows.GridEX.EditControls.EditBox();
            this.dtpBHYTFfromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.txtYear_Of_Birth = new Janus.Windows.GridEX.EditControls.EditBox();
            this.dtpBHYTToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.txtDiaChi = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label19 = new System.Windows.Forms.Label();
            this.label26 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.label20 = new System.Windows.Forms.Label();
            this.txtICD1 = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtPtramBHYT = new Janus.Windows.GridEX.EditControls.EditBox();
            this.ctxUpdatePrice = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.mnuUpdatePrice = new System.Windows.Forms.ToolStripMenuItem();
            this.txtPatient_ID = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtPatient_Code = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtObjectType_Name = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtObjectType_Code = new Janus.Windows.GridEX.EditControls.EditBox();
            this.dtInput_Date = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.lblBHYT = new System.Windows.Forms.Label();
            this.label30 = new System.Windows.Forms.Label();
            this.txtSoBHYT = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtPatientName = new Janus.Windows.GridEX.EditControls.EditBox();
            this.grdList = new Janus.Windows.GridEX.GridEX();
            this.pnlTimkiem = new System.Windows.Forms.Panel();
            this.uiComboBox1 = new Janus.Windows.EditControls.UIComboBox();
            this.label39 = new System.Windows.Forms.Label();
            this.panel2 = new System.Windows.Forms.Panel();
            this.tabThongTinThanhToan = new Janus.Windows.UI.Tab.UITab();
            this.tabPagePayment = new Janus.Windows.UI.Tab.UITabPage();
            this.grdPayment = new Janus.Windows.GridEX.GridEX();
            this.ctxBienlai = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.mnuSuaSoBienLai = new System.Windows.Forms.ToolStripMenuItem();
            this.mnuInLaiBienLai = new System.Windows.Forms.ToolStripMenuItem();
            this.mnuHuyHoaDon = new System.Windows.Forms.ToolStripMenuItem();
            this.serperator1 = new System.Windows.Forms.ToolStripSeparator();
            this.mnuLayhoadondo = new System.Windows.Forms.ToolStripMenuItem();
            this.serperator2 = new System.Windows.Forms.ToolStripSeparator();
            this.mnuCapnhatPTTT = new System.Windows.Forms.ToolStripMenuItem();
            this.tabPagePhieuChi = new Janus.Windows.UI.Tab.UITabPage();
            this.grdPhieuChi = new Janus.Windows.GridEX.GridEX();
            this.tabThongTinCanThanhToan = new Janus.Windows.UI.Tab.UITab();
            this.tabpageThongTinThanhToan = new Janus.Windows.UI.Tab.UITabPage();
            this.panel4 = new System.Windows.Forms.Panel();
            this.uiTabHoadon_chiphi = new Janus.Windows.UI.Tab.UITab();
            this.tabpageKCB = new Janus.Windows.UI.Tab.UITabPage();
            this.grdDSKCB = new Janus.Windows.GridEX.GridEX();
            this.pnlSeri = new System.Windows.Forms.Panel();
            this.txtSerie = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label44 = new System.Windows.Forms.Label();
            this.tabpageHoaDon = new Janus.Windows.UI.Tab.UITabPage();
            this.gpThongTinHoaDon = new Janus.Windows.EditControls.UIGroupBox();
            this.cmdKhaibaoHoadondo = new Janus.Windows.EditControls.UIButton();
            this.label18 = new System.Windows.Forms.Label();
            this.label22 = new System.Windows.Forms.Label();
            this.txtSerieCuoi = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtSerieDau = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtMaQuyen = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label43 = new System.Windows.Forms.Label();
            this.txtKiHieu = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label42 = new System.Windows.Forms.Label();
            this.txtMauHD = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label41 = new System.Windows.Forms.Label();
            this.grdHoaDonCapPhat = new Janus.Windows.GridEX.GridEX();
            this.panel5 = new System.Windows.Forms.Panel();
            this.cmdHoanung = new Janus.Windows.EditControls.UIButton();
            this.pnlBHYT = new System.Windows.Forms.Panel();
            this.pnlSuangayinphoi = new System.Windows.Forms.Panel();
            this.label17 = new System.Windows.Forms.Label();
            this.cmdHuyInPhoiBHYT = new Janus.Windows.EditControls.UIButton();
            this.dtNgayInPhoi = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.cmdCapnhatngayinphoiBHYT = new Janus.Windows.EditControls.UIButton();
            this.lblMessage = new System.Windows.Forms.Label();
            this.cmdChuyenDT = new Janus.Windows.EditControls.UIButton();
            this.pnlThongtintien = new System.Windows.Forms.Panel();
            this.linkLabel1 = new System.Windows.Forms.LinkLabel();
            this.lblThuathieu = new System.Windows.Forms.Label();
            this.txtThuathieu = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label5 = new System.Windows.Forms.Label();
            this.label23 = new System.Windows.Forms.Label();
            this.txtPttt = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.chkLayHoadon = new System.Windows.Forms.CheckBox();
            this.cmdHuyThanhToan = new Janus.Windows.EditControls.UIButton();
            this.label38 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.txtDachietkhau = new Janus.Windows.GridEX.EditControls.EditBox();
            this.ctxHuyChietkhau = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.mnuHuyChietkhau = new System.Windows.Forms.ToolStripMenuItem();
            this.txtTienChietkhau = new Janus.Windows.GridEX.EditControls.EditBox();
            this.chkChietkhauthem = new System.Windows.Forms.CheckBox();
            this.txtTongtienDCT = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label37 = new System.Windows.Forms.Label();
            this.label9 = new System.Windows.Forms.Label();
            this.txtsotiendathu = new Janus.Windows.GridEX.EditControls.EditBox();
            this.cmdThanhToan = new Janus.Windows.EditControls.UIButton();
            this.txtPtramBHChiTra = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label12 = new System.Windows.Forms.Label();
            this.dtPaymentDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label8 = new System.Windows.Forms.Label();
            this.txtTongChiPhi = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtTuTuc = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtSoTienCanNop = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label11 = new System.Windows.Forms.Label();
            this.label10 = new System.Windows.Forms.Label();
            this.txtBNPhaiTra = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtPhuThu = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label14 = new System.Windows.Forms.Label();
            this.label13 = new System.Windows.Forms.Label();
            this.txtBHCT = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtBNCT = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label15 = new System.Windows.Forms.Label();
            this.grpChucNangThanhToan = new Janus.Windows.EditControls.UIGroupBox();
            this.cmdCalculator = new Janus.Windows.EditControls.UIButton();
            this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            this.cmdInhoadon = new Janus.Windows.EditControls.UIButton();
            this.cmdInBienlai = new Janus.Windows.EditControls.UIButton();
            this.cmdInBienlaiTonghop = new Janus.Windows.EditControls.UIButton();
            this.cmdInphieuDCT = new Janus.Windows.EditControls.UIButton();
            this.cmdInphoiBHYT = new Janus.Windows.EditControls.UIButton();
            this.tabPageThongTinChiTietThanhToan = new Janus.Windows.UI.Tab.UITabPage();
            this.grdThongTinChuaThanhToan = new Janus.Windows.GridEX.GridEX();
            this.panel3 = new System.Windows.Forms.Panel();
            this.optNgoaitru = new System.Windows.Forms.RadioButton();
            this.optNoitru = new System.Windows.Forms.RadioButton();
            this.label7 = new System.Windows.Forms.Label();
            this.optAll = new System.Windows.Forms.RadioButton();
            this.uiTabPage1 = new Janus.Windows.UI.Tab.UITabPage();
            this.ucTamung1 = new VNS.HIS.UCs.Noitru.ucTamung();
            this.tabPageThongTinDaThanhToan = new Janus.Windows.UI.Tab.UITabPage();
            this.grdThongTinDaThanhToan = new Janus.Windows.GridEX.GridEX();
            this.uiGroupBox7 = new Janus.Windows.EditControls.UIGroupBox();
            this.cmdInPhieuChi = new Janus.Windows.EditControls.UIButton();
            this.cmdLayThongTinDaThanhToan = new Janus.Windows.EditControls.UIButton();
            this.cmdTraLaiTien = new Janus.Windows.EditControls.UIButton();
            this.TabpageCauhinh = new Janus.Windows.UI.Tab.UITabPage();
            this.cmdPrintProperties = new Janus.Windows.EditControls.UIButton();
            this.chkPreviewHoadon = new Janus.Windows.EditControls.UICheckBox();
            this.chkPreviewInBienlai = new Janus.Windows.EditControls.UICheckBox();
            this.chkHienthiDichvusaukhinhannutthanhtoan = new Janus.Windows.EditControls.UICheckBox();
            this.cmdSaveforNext = new Janus.Windows.EditControls.UIButton();
            this.chkPreviewInphoiBHYT = new Janus.Windows.EditControls.UICheckBox();
            this.vbLine4 = new VNS.UCs.VBLine();
            this.chkTudonginhoadonsauthanhtoan = new Janus.Windows.EditControls.UICheckBox();
            this.cbomayinhoadon = new System.Windows.Forms.ComboBox();
            this.label21 = new System.Windows.Forms.Label();
            this.chkHoixacnhanthanhtoan = new Janus.Windows.EditControls.UICheckBox();
            this.chkHoixacnhanhuythanhtoan = new Janus.Windows.EditControls.UICheckBox();
            this.chkViewtruockhihuythanhtoan = new Janus.Windows.EditControls.UICheckBox();
            this.vbLine3 = new VNS.UCs.VBLine();
            this.vbLine1 = new VNS.UCs.VBLine();
            this.cmdLuuLai = new Janus.Windows.EditControls.UIButton();
            this.chkChanBenhNhan = new Janus.Windows.EditControls.UICheckBox();
            this.lblwarningMsg = new System.Windows.Forms.Label();
            this.cmdxoa = new System.Windows.Forms.Button();
            this.cbomayinphoiBHYT = new System.Windows.Forms.ComboBox();
            this.label48 = new System.Windows.Forms.Label();
            this.label49 = new System.Windows.Forms.Label();
            this.cmdsave = new System.Windows.Forms.Button();
            this.txtCanhbao = new Janus.Windows.GridEX.EditControls.EditBox();
            this.vbLine2 = new VNS.UCs.VBLine();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
            this.panel1.SuspendLayout();
            this.pnlThongtinBN.SuspendLayout();
            this.ctxUpdatePrice.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
            this.pnlTimkiem.SuspendLayout();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tabThongTinThanhToan)).BeginInit();
            this.tabThongTinThanhToan.SuspendLayout();
            this.tabPagePayment.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdPayment)).BeginInit();
            this.ctxBienlai.SuspendLayout();
            this.tabPagePhieuChi.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdPhieuChi)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tabThongTinCanThanhToan)).BeginInit();
            this.tabThongTinCanThanhToan.SuspendLayout();
            this.tabpageThongTinThanhToan.SuspendLayout();
            this.panel4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiTabHoadon_chiphi)).BeginInit();
            this.uiTabHoadon_chiphi.SuspendLayout();
            this.tabpageKCB.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdDSKCB)).BeginInit();
            this.pnlSeri.SuspendLayout();
            this.tabpageHoaDon.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gpThongTinHoaDon)).BeginInit();
            this.gpThongTinHoaDon.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdHoaDonCapPhat)).BeginInit();
            this.panel5.SuspendLayout();
            this.pnlBHYT.SuspendLayout();
            this.pnlSuangayinphoi.SuspendLayout();
            this.pnlThongtintien.SuspendLayout();
            this.ctxHuyChietkhau.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grpChucNangThanhToan)).BeginInit();
            this.grpChucNangThanhToan.SuspendLayout();
            this.flowLayoutPanel1.SuspendLayout();
            this.tabPageThongTinChiTietThanhToan.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdThongTinChuaThanhToan)).BeginInit();
            this.panel3.SuspendLayout();
            this.uiTabPage1.SuspendLayout();
            this.tabPageThongTinDaThanhToan.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdThongTinDaThanhToan)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox7)).BeginInit();
            this.uiGroupBox7.SuspendLayout();
            this.TabpageCauhinh.SuspendLayout();
            this.SuspendLayout();
            // 
            // uiStatusBar1
            // 
            this.uiStatusBar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiStatusBar1.Location = new System.Drawing.Point(0, 707);
            this.uiStatusBar1.Name = "uiStatusBar1";
            this.uiStatusBar1.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            uiStatusBarPanel1.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel1.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel1.Key = "0";
            uiStatusBarPanel1.ProgressBarValue = 0;
            uiStatusBarPanel1.Text = "Ctrl+T: Thanh toán";
            uiStatusBarPanel1.Width = 115;
            uiStatusBarPanel2.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel2.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel2.Key = "1";
            uiStatusBarPanel2.ProgressBarValue = 0;
            uiStatusBarPanel2.Text = "F4:In phiếu";
            uiStatusBarPanel2.Width = 76;
            uiStatusBarPanel3.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel3.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel3.Key = "2";
            uiStatusBarPanel3.ProgressBarValue = 0;
            uiStatusBarPanel3.Text = "Esc:Thoát Form";
            uiStatusBarPanel3.Width = 101;
            uiStatusBarPanel4.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel4.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel4.Key = "3";
            uiStatusBarPanel4.ProgressBarValue = 0;
            uiStatusBarPanel4.Text = "F1: Chọn chi phí ";
            uiStatusBarPanel4.Width = 106;
            uiStatusBarPanel5.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel5.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel5.Key = "4";
            uiStatusBarPanel5.ProgressBarValue = 0;
            uiStatusBarPanel5.Text = "F2: Thông tin thanh toán";
            uiStatusBarPanel5.Width = 147;
            uiStatusBarPanel6.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel6.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel6.Key = "lblMsg";
            uiStatusBarPanel6.ProgressBarValue = 0;
            uiStatusBarPanel6.Text = "Msg";
            uiStatusBarPanel6.Width = 39;
            this.uiStatusBar1.Panels.AddRange(new Janus.Windows.UI.StatusBar.UIStatusBarPanel[] {
            uiStatusBarPanel1,
            uiStatusBarPanel2,
            uiStatusBarPanel3,
            uiStatusBarPanel4,
            uiStatusBarPanel5,
            uiStatusBarPanel6});
            this.uiStatusBar1.PanelsFormatStyle.ForeColor = System.Drawing.Color.Black;
            this.uiStatusBar1.Size = new System.Drawing.Size(1008, 23);
            this.uiStatusBar1.TabIndex = 0;
            this.uiStatusBar1.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
            // 
            // cmdSearch
            // 
            this.cmdSearch.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdSearch.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdSearch.Image = ((System.Drawing.Image)(resources.GetObject("cmdSearch.Image")));
            this.cmdSearch.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdSearch.Location = new System.Drawing.Point(270, 30);
            this.cmdSearch.Name = "cmdSearch";
            this.cmdSearch.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdSearch.Size = new System.Drawing.Size(86, 66);
            this.cmdSearch.TabIndex = 4;
            this.cmdSearch.Text = "Tìm kiếm";
            this.toolTip1.SetToolTip(this.cmdSearch, "Tìm kiếm thông tin bệnh nhân-Bạn có thể nhấn nút F3 hoặc Ctrl+F để thực hiện tìm " +
        "kiếm");
            this.cmdSearch.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
            // 
            // txtTenBenhNhan
            // 
            this.txtTenBenhNhan.BackColor = System.Drawing.Color.White;
            this.txtTenBenhNhan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTenBenhNhan.Location = new System.Drawing.Point(89, 75);
            this.txtTenBenhNhan.Name = "txtTenBenhNhan";
            this.txtTenBenhNhan.Size = new System.Drawing.Size(177, 21);
            this.txtTenBenhNhan.TabIndex = 1;
            // 
            // txtMaLanKham
            // 
            this.txtMaLanKham.BackColor = System.Drawing.Color.White;
            this.txtMaLanKham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaLanKham.Location = new System.Drawing.Point(89, 52);
            this.txtMaLanKham.Name = "txtMaLanKham";
            this.txtMaLanKham.Size = new System.Drawing.Size(177, 21);
            this.txtMaLanKham.TabIndex = 0;
            this.txtMaLanKham.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // label1
            // 
            this.label1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.Location = new System.Drawing.Point(3, 53);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(80, 23);
            this.label1.TabIndex = 49;
            this.label1.Text = "Mã lần khám";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cboObjectType_ID
            // 
            this.cboObjectType_ID.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboObjectType_ID.Location = new System.Drawing.Point(89, 29);
            this.cboObjectType_ID.Name = "cboObjectType_ID";
            this.cboObjectType_ID.Size = new System.Drawing.Size(177, 21);
            this.cboObjectType_ID.TabIndex = 279;
            this.cboObjectType_ID.Text = "Đối tượng";
            // 
            // label6
            // 
            this.label6.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label6.Location = new System.Drawing.Point(3, 29);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(80, 23);
            this.label6.TabIndex = 272;
            this.label6.Text = "Đối tượng";
            this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label32
            // 
            this.label32.AutoSize = true;
            this.label32.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label32.Location = new System.Drawing.Point(209, 8);
            this.label32.Name = "label32";
            this.label32.Size = new System.Drawing.Size(30, 15);
            this.label32.TabIndex = 3;
            this.label32.Text = "Đến";
            // 
            // 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(3, 75);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(80, 23);
            this.label3.TabIndex = 270;
            this.label3.Text = "Tên BN:";
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtToDate
            // 
            this.dtToDate.CustomFormat = "dd/MM/yyyy";
            this.dtToDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtToDate.DropDownCalendar.FirstMonth = new System.DateTime(2014, 4, 1, 0, 0, 0, 0);
            this.dtToDate.DropDownCalendar.Name = "";
            this.dtToDate.DropDownCalendar.Visible = false;
            this.dtToDate.Enabled = false;
            this.dtToDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtToDate.Location = new System.Drawing.Point(244, 6);
            this.dtToDate.Name = "dtToDate";
            this.dtToDate.ShowUpDown = true;
            this.dtToDate.Size = new System.Drawing.Size(113, 21);
            this.dtToDate.TabIndex = 266;
            this.dtToDate.Value = new System.DateTime(2011, 10, 19, 0, 0, 0, 0);
            // 
            // dtFromDate
            // 
            this.dtFromDate.CustomFormat = "dd/MM/yyyy";
            this.dtFromDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtFromDate.DropDownCalendar.FirstMonth = new System.DateTime(2014, 4, 1, 0, 0, 0, 0);
            this.dtFromDate.DropDownCalendar.Name = "";
            this.dtFromDate.DropDownCalendar.Visible = false;
            this.dtFromDate.Enabled = false;
            this.dtFromDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtFromDate.Location = new System.Drawing.Point(89, 6);
            this.dtFromDate.Name = "dtFromDate";
            this.dtFromDate.ShowUpDown = true;
            this.dtFromDate.Size = new System.Drawing.Size(110, 21);
            this.dtFromDate.TabIndex = 2;
            this.dtFromDate.Value = new System.DateTime(2011, 10, 19, 0, 0, 0, 0);
            // 
            // chkCreateDate
            // 
            this.chkCreateDate.Checked = true;
            this.chkCreateDate.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkCreateDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkCreateDate.Location = new System.Drawing.Point(3, 8);
            this.chkCreateDate.Name = "chkCreateDate";
            this.chkCreateDate.Size = new System.Drawing.Size(80, 22);
            this.chkCreateDate.TabIndex = 267;
            this.chkCreateDate.Text = "Từ ngày";
            this.chkCreateDate.UseVisualStyleBackColor = true;
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "ADD.PNG");
            this.imageList1.Images.SetKeyName(1, "OPEN2.PNG");
            this.imageList1.Images.SetKeyName(2, "OK.PNG");
            // 
            // printDialog1
            // 
            this.printDialog1.UseEXDialog = true;
            // 
            // errorProvider1
            // 
            this.errorProvider1.ContainerControl = this;
            // 
            // cmdCauHinh
            // 
            this.cmdCauHinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdCauHinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdCauHinh.Image")));
            this.cmdCauHinh.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdCauHinh.Location = new System.Drawing.Point(396, 495);
            this.cmdCauHinh.Name = "cmdCauHinh";
            this.cmdCauHinh.Size = new System.Drawing.Size(117, 27);
            this.cmdCauHinh.TabIndex = 28;
            this.cmdCauHinh.Text = "Cấu hình...";
            this.toolTip1.SetToolTip(this.cmdCauHinh, "Cấu hình thông tin thanh toán (more...)");
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.pnlThongtinBN);
            this.panel1.Controls.Add(this.grdList);
            this.panel1.Controls.Add(this.pnlTimkiem);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(365, 707);
            this.panel1.TabIndex = 29;
            // 
            // pnlThongtinBN
            // 
            this.pnlThongtinBN.Controls.Add(this.lblMsg);
            this.pnlThongtinBN.Controls.Add(this.label29);
            this.pnlThongtinBN.Controls.Add(this.txtICD);
            this.pnlThongtinBN.Controls.Add(this.cmdSaveICD);
            this.pnlThongtinBN.Controls.Add(this.label16);
            this.pnlThongtinBN.Controls.Add(this.cmdLaylaiThongTin);
            this.pnlThongtinBN.Controls.Add(this.cmdCapnhatngayBHYT);
            this.pnlThongtinBN.Controls.Add(this.txtDTTT);
            this.pnlThongtinBN.Controls.Add(this.txtDiachiBHYT);
            this.pnlThongtinBN.Controls.Add(this.dtpBHYTFfromDate);
            this.pnlThongtinBN.Controls.Add(this.txtYear_Of_Birth);
            this.pnlThongtinBN.Controls.Add(this.dtpBHYTToDate);
            this.pnlThongtinBN.Controls.Add(this.txtDiaChi);
            this.pnlThongtinBN.Controls.Add(this.label19);
            this.pnlThongtinBN.Controls.Add(this.label26);
            this.pnlThongtinBN.Controls.Add(this.label4);
            this.pnlThongtinBN.Controls.Add(this.label20);
            this.pnlThongtinBN.Controls.Add(this.txtICD1);
            this.pnlThongtinBN.Controls.Add(this.txtPtramBHYT);
            this.pnlThongtinBN.Controls.Add(this.txtPatient_ID);
            this.pnlThongtinBN.Controls.Add(this.txtPatient_Code);
            this.pnlThongtinBN.Controls.Add(this.txtObjectType_Name);
            this.pnlThongtinBN.Controls.Add(this.txtObjectType_Code);
            this.pnlThongtinBN.Controls.Add(this.dtInput_Date);
            this.pnlThongtinBN.Controls.Add(this.lblBHYT);
            this.pnlThongtinBN.Controls.Add(this.label30);
            this.pnlThongtinBN.Controls.Add(this.txtSoBHYT);
            this.pnlThongtinBN.Controls.Add(this.txtPatientName);
            this.pnlThongtinBN.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlThongtinBN.Location = new System.Drawing.Point(0, 402);
            this.pnlThongtinBN.Name = "pnlThongtinBN";
            this.pnlThongtinBN.Size = new System.Drawing.Size(365, 305);
            this.pnlThongtinBN.TabIndex = 287;
            // 
            // lblMsg
            // 
            this.lblMsg.BackColor = System.Drawing.SystemColors.Control;
            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.ForeColor = System.Drawing.Color.Navy;
            this.lblMsg.Location = new System.Drawing.Point(0, 271);
            this.lblMsg.Name = "lblMsg";
            this.lblMsg.Size = new System.Drawing.Size(365, 34);
            this.lblMsg.TabIndex = 376;
            this.lblMsg.Text = "Msg";
            this.lblMsg.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // label29
            // 
            this.label29.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label29.Location = new System.Drawing.Point(230, 108);
            this.label29.Name = "label29";
            this.label29.Size = new System.Drawing.Size(77, 24);
            this.label29.TabIndex = 375;
            this.label29.Text = "% Đầu thẻ:";
            this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtICD
            // 
            this.txtICD._backcolor = System.Drawing.SystemColors.Window;
            this.txtICD._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtICD._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtICD.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtICD.AutoCompleteList")));
            this.txtICD.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtICD.CaseSensitive = false;
            this.txtICD.CompareNoID = true;
            this.txtICD.DefaultCode = "-1";
            this.txtICD.DefaultID = "-1";
            this.txtICD.Drug_ID = null;
            this.txtICD.ExtraWidth = 0;
            this.txtICD.FillValueAfterSelect = false;
            this.txtICD.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtICD.Location = new System.Drawing.Point(105, 189);
            this.txtICD.MaxHeight = 289;
            this.txtICD.MinTypedCharacters = 2;
            this.txtICD.MyCode = "-1";
            this.txtICD.MyID = "-1";
            this.txtICD.MyText = "";
            this.txtICD.Name = "txtICD";
            this.txtICD.RaiseEvent = true;
            this.txtICD.RaiseEventEnter = true;
            this.txtICD.RaiseEventEnterWhenEmpty = true;
            this.txtICD.SelectedIndex = -1;
            this.txtICD.Size = new System.Drawing.Size(208, 21);
            this.txtICD.splitChar = '@';
            this.txtICD.splitCharIDAndCode = '#';
            this.txtICD.TabIndex = 374;
            this.txtICD.TakeCode = true;
            this.txtICD.txtMyCode = null;
            this.txtICD.txtMyCode_Edit = null;
            this.txtICD.txtMyID = null;
            this.txtICD.txtMyID_Edit = null;
            this.txtICD.txtMyName = null;
            this.txtICD.txtMyName_Edit = null;
            this.txtICD.txtNext = null;
            // 
            // cmdSaveICD
            // 
            this.cmdSaveICD.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdSaveICD.Image = ((System.Drawing.Image)(resources.GetObject("cmdSaveICD.Image")));
            this.cmdSaveICD.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdSaveICD.Location = new System.Drawing.Point(318, 186);
            this.cmdSaveICD.Name = "cmdSaveICD";
            this.cmdSaveICD.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdSaveICD.Office2007CustomColor = System.Drawing.Color.White;
            this.cmdSaveICD.Size = new System.Drawing.Size(38, 27);
            this.cmdSaveICD.TabIndex = 373;
            this.toolTip1.SetToolTip(this.cmdSaveICD, "Cập nhật mã bệnh chính cho bệnh nhân - Do bác sĩ quên( Chỉ người dùng được phân q" +
        "uyền mới xuất hiện tính năng này)");
            this.cmdSaveICD.Visible = false;
            this.cmdSaveICD.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
            // 
            // 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(5, 159);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(98, 24);
            this.label16.TabIndex = 372;
            this.label16.Text = "Hiệu lực BHYT:";
            this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cmdLaylaiThongTin
            // 
            this.cmdLaylaiThongTin.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdLaylaiThongTin.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdLaylaiThongTin.Image = ((System.Drawing.Image)(resources.GetObject("cmdLaylaiThongTin.Image")));
            this.cmdLaylaiThongTin.Location = new System.Drawing.Point(-277, 244);
            this.cmdLaylaiThongTin.Name = "cmdLaylaiThongTin";
            this.cmdLaylaiThongTin.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdLaylaiThongTin.Office2007CustomColor = System.Drawing.Color.White;
            this.cmdLaylaiThongTin.Size = new System.Drawing.Size(39, 27);
            this.cmdLaylaiThongTin.TabIndex = 28;
            this.cmdLaylaiThongTin.Text = "&Lấy  thông tin (F5)";
            this.cmdLaylaiThongTin.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
            // 
            // cmdCapnhatngayBHYT
            // 
            this.cmdCapnhatngayBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdCapnhatngayBHYT.Image = ((System.Drawing.Image)(resources.GetObject("cmdCapnhatngayBHYT.Image")));
            this.cmdCapnhatngayBHYT.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdCapnhatngayBHYT.Location = new System.Drawing.Point(319, 158);
            this.cmdCapnhatngayBHYT.Name = "cmdCapnhatngayBHYT";
            this.cmdCapnhatngayBHYT.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdCapnhatngayBHYT.Office2007CustomColor = System.Drawing.Color.White;
            this.cmdCapnhatngayBHYT.Size = new System.Drawing.Size(38, 27);
            this.cmdCapnhatngayBHYT.TabIndex = 371;
            this.toolTip1.SetToolTip(this.cmdCapnhatngayBHYT, "Cập nhật thông tin ngày hiệu lực của thẻ BHYT(Chỉ có nhân viên được cấp quyền mới" +
        " xuất hiện tính năng này)");
            this.cmdCapnhatngayBHYT.Visible = false;
            this.cmdCapnhatngayBHYT.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
            // 
            // txtDTTT
            // 
            this.txtDTTT.BackColor = System.Drawing.Color.White;
            this.txtDTTT.BorderStyle = Janus.Windows.GridEX.BorderStyle.Flat;
            this.txtDTTT.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDTTT.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.txtDTTT.Location = new System.Drawing.Point(4, 134);
            this.txtDTTT.Name = "txtDTTT";
            this.txtDTTT.ReadOnly = true;
            this.txtDTTT.Size = new System.Drawing.Size(99, 22);
            this.txtDTTT.TabIndex = 360;
            this.txtDTTT.Text = "Đúng Tuyến";
            this.txtDTTT.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // txtDiachiBHYT
            // 
            this.txtDiachiBHYT.Font = new System.Drawing.Font("Arial", 9F);
            this.txtDiachiBHYT.Location = new System.Drawing.Point(105, 134);
            this.txtDiachiBHYT.Name = "txtDiachiBHYT";
            this.txtDiachiBHYT.ReadOnly = true;
            this.txtDiachiBHYT.Size = new System.Drawing.Size(252, 21);
            this.txtDiachiBHYT.TabIndex = 370;
            this.txtDiachiBHYT.TabStop = false;
            this.txtDiachiBHYT.Text = "Địa chỉ thẻ BHYT";
            // 
            // dtpBHYTFfromDate
            // 
            this.dtpBHYTFfromDate.Cursor = System.Windows.Forms.Cursors.Default;
            this.dtpBHYTFfromDate.CustomFormat = "dd/MM/yyyy";
            this.dtpBHYTFfromDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtpBHYTFfromDate.DropDownCalendar.FirstMonth = new System.DateTime(2014, 4, 1, 0, 0, 0, 0);
            this.dtpBHYTFfromDate.DropDownCalendar.Name = "";
            this.dtpBHYTFfromDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtpBHYTFfromDate.Location = new System.Drawing.Point(105, 161);
            this.dtpBHYTFfromDate.Name = "dtpBHYTFfromDate";
            this.dtpBHYTFfromDate.Size = new System.Drawing.Size(101, 21);
            this.dtpBHYTFfromDate.TabIndex = 361;
            this.dtpBHYTFfromDate.Tag = "NO";
            this.dtpBHYTFfromDate.Value = new System.DateTime(2014, 4, 29, 0, 0, 0, 0);
            // 
            // txtYear_Of_Birth
            // 
            this.txtYear_Of_Birth.BackColor = System.Drawing.Color.White;
            this.txtYear_Of_Birth.BorderStyle = Janus.Windows.GridEX.BorderStyle.Flat;
            this.txtYear_Of_Birth.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtYear_Of_Birth.Location = new System.Drawing.Point(415, 221);
            this.txtYear_Of_Birth.Name = "txtYear_Of_Birth";
            this.txtYear_Of_Birth.ReadOnly = true;
            this.txtYear_Of_Birth.Size = new System.Drawing.Size(47, 21);
            this.txtYear_Of_Birth.TabIndex = 10;
            this.txtYear_Of_Birth.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            this.txtYear_Of_Birth.Visible = false;
            // 
            // dtpBHYTToDate
            // 
            this.dtpBHYTToDate.CustomFormat = "dd/MM/yyyy";
            this.dtpBHYTToDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtpBHYTToDate.DropDownCalendar.FirstMonth = new System.DateTime(2014, 4, 1, 0, 0, 0, 0);
            this.dtpBHYTToDate.DropDownCalendar.Name = "";
            this.dtpBHYTToDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtpBHYTToDate.Location = new System.Drawing.Point(212, 161);
            this.dtpBHYTToDate.Name = "dtpBHYTToDate";
            this.dtpBHYTToDate.Size = new System.Drawing.Size(101, 21);
            this.dtpBHYTToDate.TabIndex = 362;
            this.dtpBHYTToDate.Tag = "NO";
            this.dtpBHYTToDate.Value = new System.DateTime(2014, 4, 29, 0, 0, 0, 0);
            // 
            // txtDiaChi
            // 
            this.txtDiaChi.BackColor = System.Drawing.Color.White;
            this.txtDiaChi.Font = new System.Drawing.Font("Arial", 9F);
            this.txtDiaChi.Location = new System.Drawing.Point(105, 86);
            this.txtDiaChi.Name = "txtDiaChi";
            this.txtDiaChi.ReadOnly = true;
            this.txtDiaChi.Size = new System.Drawing.Size(252, 21);
            this.txtDiaChi.TabIndex = 368;
            this.txtDiaChi.TabStop = false;
            // 
            // 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(3, 6);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(98, 24);
            this.label19.TabIndex = 7;
            this.label19.Text = "Mã bệnh nhân:";
            this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label26
            // 
            this.label26.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label26.ForeColor = System.Drawing.Color.Red;
            this.label26.Location = new System.Drawing.Point(9, 188);
            this.label26.Name = "label26";
            this.label26.Size = new System.Drawing.Size(88, 24);
            this.label26.TabIndex = 27;
            this.label26.Text = "ICD-10";
            this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label4
            // 
            this.label4.Font = new System.Drawing.Font("Arial", 9F);
            this.label4.Location = new System.Drawing.Point(-1, 86);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(102, 21);
            this.label4.TabIndex = 369;
            this.label4.Text = "Địa chỉ BN:";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label20
            // 
            this.label20.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label20.Location = new System.Drawing.Point(1, 62);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(98, 24);
            this.label20.TabIndex = 5;
            this.label20.Text = "Tên bệnh nhân:";
            this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtICD1
            // 
            this.txtICD1.BackColor = System.Drawing.Color.White;
            this.txtICD1.BorderStyle = Janus.Windows.GridEX.BorderStyle.Flat;
            this.txtICD1.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtICD1.ForeColor = System.Drawing.Color.Red;
            this.txtICD1.Location = new System.Drawing.Point(105, 188);
            this.txtICD1.Name = "txtICD1";
            this.txtICD1.ReadOnly = true;
            this.txtICD1.Size = new System.Drawing.Size(207, 22);
            this.txtICD1.TabIndex = 28;
            this.txtICD1.Visible = false;
            // 
            // txtPtramBHYT
            // 
            this.txtPtramBHYT.BackColor = System.Drawing.Color.White;
            this.txtPtramBHYT.BorderStyle = Janus.Windows.GridEX.BorderStyle.Flat;
            this.txtPtramBHYT.ContextMenuStrip = this.ctxUpdatePrice;
            this.txtPtramBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPtramBHYT.ForeColor = System.Drawing.Color.Red;
            this.txtPtramBHYT.Location = new System.Drawing.Point(310, 110);
            this.txtPtramBHYT.Name = "txtPtramBHYT";
            this.txtPtramBHYT.ReadOnly = true;
            this.txtPtramBHYT.Size = new System.Drawing.Size(46, 21);
            this.txtPtramBHYT.TabIndex = 367;
            this.txtPtramBHYT.Text = "80%";
            this.txtPtramBHYT.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            this.toolTip1.SetToolTip(this.txtPtramBHYT, "% BHYT theo đầu thẻ");
            // 
            // ctxUpdatePrice
            // 
            this.ctxUpdatePrice.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuUpdatePrice});
            this.ctxUpdatePrice.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
            this.ctxUpdatePrice.Name = "contextMenuStrip1";
            this.ctxUpdatePrice.Size = new System.Drawing.Size(275, 26);
            // 
            // mnuUpdatePrice
            // 
            this.mnuUpdatePrice.Name = "mnuUpdatePrice";
            this.mnuUpdatePrice.Size = new System.Drawing.Size(274, 22);
            this.mnuUpdatePrice.Text = "Cập nhật lại giá theo phần trăm BHYT";
            // 
            // txtPatient_ID
            // 
            this.txtPatient_ID.BackColor = System.Drawing.Color.White;
            this.txtPatient_ID.BorderStyle = Janus.Windows.GridEX.BorderStyle.Flat;
            this.txtPatient_ID.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPatient_ID.Location = new System.Drawing.Point(107, 9);
            this.txtPatient_ID.Name = "txtPatient_ID";
            this.txtPatient_ID.ReadOnly = true;
            this.txtPatient_ID.Size = new System.Drawing.Size(123, 21);
            this.txtPatient_ID.TabIndex = 6;
            // 
            // txtPatient_Code
            // 
            this.txtPatient_Code.BackColor = System.Drawing.Color.White;
            this.txtPatient_Code.BorderStyle = Janus.Windows.GridEX.BorderStyle.Flat;
            this.txtPatient_Code.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPatient_Code.Location = new System.Drawing.Point(230, 9);
            this.txtPatient_Code.Name = "txtPatient_Code";
            this.txtPatient_Code.ReadOnly = true;
            this.txtPatient_Code.Size = new System.Drawing.Size(127, 21);
            this.txtPatient_Code.TabIndex = 8;
            // 
            // txtObjectType_Name
            // 
            this.txtObjectType_Name.BackColor = System.Drawing.Color.White;
            this.txtObjectType_Name.BorderStyle = Janus.Windows.GridEX.BorderStyle.Flat;
            this.txtObjectType_Name.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtObjectType_Name.Location = new System.Drawing.Point(236, 36);
            this.txtObjectType_Name.Name = "txtObjectType_Name";
            this.txtObjectType_Name.ReadOnly = true;
            this.txtObjectType_Name.Size = new System.Drawing.Size(121, 21);
            this.txtObjectType_Name.TabIndex = 335;
            this.txtObjectType_Name.Text = "BHYT";
            // 
            // txtObjectType_Code
            // 
            this.txtObjectType_Code.BackColor = System.Drawing.Color.White;
            this.txtObjectType_Code.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtObjectType_Code.Location = new System.Drawing.Point(234, 188);
            this.txtObjectType_Code.Name = "txtObjectType_Code";
            this.txtObjectType_Code.Size = new System.Drawing.Size(47, 21);
            this.txtObjectType_Code.TabIndex = 346;
            this.txtObjectType_Code.Visible = false;
            // 
            // dtInput_Date
            // 
            this.dtInput_Date.BackColor = System.Drawing.Color.White;
            this.dtInput_Date.CustomFormat = "dd/MM/yyyy";
            this.dtInput_Date.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            this.dtInput_Date.DisabledBackColor = System.Drawing.Color.WhiteSmoke;
            this.dtInput_Date.DisabledForeColor = System.Drawing.Color.Black;
            // 
            // 
            // 
            this.dtInput_Date.DropDownCalendar.FirstMonth = new System.DateTime(2014, 4, 1, 0, 0, 0, 0);
            this.dtInput_Date.DropDownCalendar.Name = "";
            this.dtInput_Date.Enabled = false;
            this.dtInput_Date.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtInput_Date.Location = new System.Drawing.Point(107, 36);
            this.dtInput_Date.Name = "dtInput_Date";
            this.dtInput_Date.ReadOnly = true;
            this.dtInput_Date.ShowUpDown = true;
            this.dtInput_Date.Size = new System.Drawing.Size(123, 21);
            this.dtInput_Date.TabIndex = 36;
            this.dtInput_Date.Value = new System.DateTime(2013, 6, 19, 0, 0, 0, 0);
            // 
            // lblBHYT
            // 
            this.lblBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblBHYT.Location = new System.Drawing.Point(0, 109);
            this.lblBHYT.Name = "lblBHYT";
            this.lblBHYT.Size = new System.Drawing.Size(98, 24);
            this.lblBHYT.TabIndex = 337;
            this.lblBHYT.Text = "Thông tin BHYT:";
            this.lblBHYT.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label30
            // 
            this.label30.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label30.Location = new System.Drawing.Point(8, 34);
            this.label30.Name = "label30";
            this.label30.Size = new System.Drawing.Size(90, 24);
            this.label30.TabIndex = 37;
            this.label30.Text = "Ngày tiếp đón:";
            this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtSoBHYT
            // 
            this.txtSoBHYT.BackColor = System.Drawing.Color.White;
            this.txtSoBHYT.BorderStyle = Janus.Windows.GridEX.BorderStyle.Flat;
            this.txtSoBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSoBHYT.Location = new System.Drawing.Point(105, 111);
            this.txtSoBHYT.Name = "txtSoBHYT";
            this.txtSoBHYT.ReadOnly = true;
            this.txtSoBHYT.Size = new System.Drawing.Size(125, 21);
            this.txtSoBHYT.TabIndex = 336;
            this.txtSoBHYT.Text = "HT3010100100009";
            this.txtSoBHYT.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // txtPatientName
            // 
            this.txtPatientName.BackColor = System.Drawing.Color.White;
            this.txtPatientName.BorderStyle = Janus.Windows.GridEX.BorderStyle.Flat;
            this.txtPatientName.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPatientName.Location = new System.Drawing.Point(105, 62);
            this.txtPatientName.Name = "txtPatientName";
            this.txtPatientName.ReadOnly = true;
            this.txtPatientName.Size = new System.Drawing.Size(252, 21);
            this.txtPatientName.TabIndex = 334;
            this.txtPatientName.Text = "Nguyễn Thanh Hải";
            this.txtPatientName.TextAlignment = Janus.Windows.GridEX.TextAlignment.Near;
            // 
            // grdList
            // 
            this.grdList.AlternatingRowFormatStyle.BackColor = System.Drawing.Color.LightGray;
            this.grdList.BackColor = System.Drawing.Color.Silver;
            this.grdList.BuiltInTextsData = resources.GetString("grdList.BuiltInTextsData");
            grdList_DesignTimeLayout_Reference_0.Instance = ((object)(resources.GetObject("grdList_DesignTimeLayout_Reference_0.Instance")));
            grdList_DesignTimeLayout.LayoutReferences.AddRange(new Janus.Windows.Common.Layouts.JanusLayoutReference[] {
            grdList_DesignTimeLayout_Reference_0});
            grdList_DesignTimeLayout.LayoutString = resources.GetString("grdList_DesignTimeLayout.LayoutString");
            this.grdList.DesignTimeLayout = grdList_DesignTimeLayout;
            this.grdList.Dock = System.Windows.Forms.DockStyle.Top;
            this.grdList.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdList.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdList.FilterRowFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
            this.grdList.FilterRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdList.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdList.FocusCellFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.grdList.Font = new System.Drawing.Font("Arial", 9F);
            this.grdList.FrozenColumns = 2;
            this.grdList.GridLines = Janus.Windows.GridEX.GridLines.Default;
            this.grdList.GroupByBoxVisible = false;
            this.grdList.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdList.Location = new System.Drawing.Point(0, 102);
            this.grdList.Name = "grdList";
            this.grdList.RecordNavigator = true;
            this.grdList.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdList.ScrollBars = Janus.Windows.GridEX.ScrollBars.Both;
            this.grdList.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdList.Size = new System.Drawing.Size(365, 300);
            this.grdList.TabIndex = 286;
            this.grdList.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdList.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // pnlTimkiem
            // 
            this.pnlTimkiem.Controls.Add(this.uiComboBox1);
            this.pnlTimkiem.Controls.Add(this.label39);
            this.pnlTimkiem.Controls.Add(this.cmdSearch);
            this.pnlTimkiem.Controls.Add(this.chkCreateDate);
            this.pnlTimkiem.Controls.Add(this.txtTenBenhNhan);
            this.pnlTimkiem.Controls.Add(this.dtFromDate);
            this.pnlTimkiem.Controls.Add(this.txtMaLanKham);
            this.pnlTimkiem.Controls.Add(this.dtToDate);
            this.pnlTimkiem.Controls.Add(this.label1);
            this.pnlTimkiem.Controls.Add(this.label3);
            this.pnlTimkiem.Controls.Add(this.cboObjectType_ID);
            this.pnlTimkiem.Controls.Add(this.label32);
            this.pnlTimkiem.Controls.Add(this.label6);
            this.pnlTimkiem.Dock = System.Windows.Forms.DockStyle.Top;
            this.pnlTimkiem.Location = new System.Drawing.Point(0, 0);
            this.pnlTimkiem.Name = "pnlTimkiem";
            this.pnlTimkiem.Size = new System.Drawing.Size(365, 102);
            this.pnlTimkiem.TabIndex = 30;
            // 
            // uiComboBox1
            // 
            this.uiComboBox1.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 = "Tất cả";
            uiComboBoxItem1.Value = "-1";
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "Chưa thanh toán";
            uiComboBoxItem2.Value = "0";
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "Đã thanh toán";
            uiComboBoxItem3.Value = "1";
            uiComboBoxItem4.FormatStyle.Alpha = 0;
            uiComboBoxItem4.IsSeparator = false;
            uiComboBoxItem4.Text = "Chưa thanh toán hết";
            uiComboBoxItem4.Value = "2";
            this.uiComboBox1.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3,
            uiComboBoxItem4});
            this.uiComboBox1.Location = new System.Drawing.Point(89, 99);
            this.uiComboBox1.Name = "uiComboBox1";
            this.uiComboBox1.SelectedIndex = 0;
            this.uiComboBox1.Size = new System.Drawing.Size(177, 21);
            this.uiComboBox1.TabIndex = 281;
            this.uiComboBox1.Text = "Tất cả";
            this.uiComboBox1.Visible = false;
            // 
            // label39
            // 
            this.label39.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label39.Location = new System.Drawing.Point(9, 99);
            this.label39.Name = "label39";
            this.label39.Size = new System.Drawing.Size(80, 23);
            this.label39.TabIndex = 280;
            this.label39.Text = "Trạng thái:";
            this.label39.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.label39.Visible = false;
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.tabThongTinThanhToan);
            this.panel2.Controls.Add(this.tabThongTinCanThanhToan);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(365, 0);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(643, 707);
            this.panel2.TabIndex = 30;
            // 
            // tabThongTinThanhToan
            // 
            this.tabThongTinThanhToan.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabThongTinThanhToan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tabThongTinThanhToan.Location = new System.Drawing.Point(0, 549);
            this.tabThongTinThanhToan.Name = "tabThongTinThanhToan";
            this.tabThongTinThanhToan.Size = new System.Drawing.Size(643, 158);
            this.tabThongTinThanhToan.TabIndex = 116;
            this.tabThongTinThanhToan.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
            this.tabPagePayment,
            this.tabPagePhieuChi});
            this.tabThongTinThanhToan.TabStop = false;
            this.tabThongTinThanhToan.VisualStyle = Janus.Windows.UI.Tab.TabVisualStyle.Flat;
            // 
            // tabPagePayment
            // 
            this.tabPagePayment.Controls.Add(this.grdPayment);
            this.tabPagePayment.Location = new System.Drawing.Point(1, 23);
            this.tabPagePayment.Name = "tabPagePayment";
            this.tabPagePayment.Size = new System.Drawing.Size(639, 132);
            this.tabPagePayment.TabStop = true;
            this.tabPagePayment.Text = "Thông tin thanh toán (Alt +1)";
            // 
            // grdPayment
            // 
            this.grdPayment.AlternatingColors = true;
            this.grdPayment.AlternatingRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.grdPayment.ContextMenuStrip = this.ctxBienlai;
            grdPayment_DesignTimeLayout_Reference_0.Instance = ((object)(resources.GetObject("grdPayment_DesignTimeLayout_Reference_0.Instance")));
            grdPayment_DesignTimeLayout_Reference_1.Instance = ((object)(resources.GetObject("grdPayment_DesignTimeLayout_Reference_1.Instance")));
            grdPayment_DesignTimeLayout.LayoutReferences.AddRange(new Janus.Windows.Common.Layouts.JanusLayoutReference[] {
            grdPayment_DesignTimeLayout_Reference_0,
            grdPayment_DesignTimeLayout_Reference_1});
            grdPayment_DesignTimeLayout.LayoutString = resources.GetString("grdPayment_DesignTimeLayout.LayoutString");
            this.grdPayment.DesignTimeLayout = grdPayment_DesignTimeLayout;
            this.grdPayment.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdPayment.EnterKeyBehavior = Janus.Windows.GridEX.EnterKeyBehavior.None;
            this.grdPayment.Font = new System.Drawing.Font("Arial", 9F);
            this.grdPayment.GroupByBoxVisible = false;
            this.grdPayment.GroupRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdPayment.GroupRowFormatStyle.ForeColor = System.Drawing.Color.Navy;
            this.grdPayment.GroupTotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdPayment.GroupTotals = Janus.Windows.GridEX.GroupTotals.Always;
            this.grdPayment.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdPayment.Location = new System.Drawing.Point(0, 0);
            this.grdPayment.Name = "grdPayment";
            this.grdPayment.RecordNavigator = true;
            this.grdPayment.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdPayment.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdPayment.SelectedInactiveFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdPayment.Size = new System.Drawing.Size(639, 132);
            this.grdPayment.TabIndex = 8;
            this.grdPayment.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdPayment.TotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdPayment.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdPayment.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdPayment.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // ctxBienlai
            // 
            this.ctxBienlai.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuSuaSoBienLai,
            this.mnuInLaiBienLai,
            this.mnuHuyHoaDon,
            this.serperator1,
            this.mnuLayhoadondo,
            this.serperator2,
            this.mnuCapnhatPTTT});
            this.ctxBienlai.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
            this.ctxBienlai.Name = "contextMenuStrip1";
            this.ctxBienlai.Size = new System.Drawing.Size(320, 126);
            // 
            // mnuSuaSoBienLai
            // 
            this.mnuSuaSoBienLai.Name = "mnuSuaSoBienLai";
            this.mnuSuaSoBienLai.Size = new System.Drawing.Size(319, 22);
            this.mnuSuaSoBienLai.Text = "Sửa số biên lai";
            // 
            // mnuInLaiBienLai
            // 
            this.mnuInLaiBienLai.Name = "mnuInLaiBienLai";
            this.mnuInLaiBienLai.Size = new System.Drawing.Size(319, 22);
            this.mnuInLaiBienLai.Text = "In lại hóa đơn";
            // 
            // mnuHuyHoaDon
            // 
            this.mnuHuyHoaDon.Name = "mnuHuyHoaDon";
            this.mnuHuyHoaDon.Size = new System.Drawing.Size(319, 22);
            this.mnuHuyHoaDon.Text = "Hủy serie hóa đơn đã in";
            // 
            // serperator1
            // 
            this.serperator1.Name = "serperator1";
            this.serperator1.Size = new System.Drawing.Size(316, 6);
            // 
            // mnuLayhoadondo
            // 
            this.mnuLayhoadondo.Name = "mnuLayhoadondo";
            this.mnuLayhoadondo.Size = new System.Drawing.Size(319, 22);
            this.mnuLayhoadondo.Tag = "1";
            this.mnuLayhoadondo.Text = "Lấy hóa đơn đỏ cho lần thanh toán đang chọn";
            // 
            // serperator2
            // 
            this.serperator2.Name = "serperator2";
            this.serperator2.Size = new System.Drawing.Size(316, 6);
            // 
            // mnuCapnhatPTTT
            // 
            this.mnuCapnhatPTTT.Name = "mnuCapnhatPTTT";
            this.mnuCapnhatPTTT.Size = new System.Drawing.Size(319, 22);
            this.mnuCapnhatPTTT.Text = "Cập nhật phương thức thanh toán";
            // 
            // tabPagePhieuChi
            // 
            this.tabPagePhieuChi.Controls.Add(this.grdPhieuChi);
            this.tabPagePhieuChi.Location = new System.Drawing.Point(1, 23);
            this.tabPagePhieuChi.Name = "tabPagePhieuChi";
            this.tabPagePhieuChi.Size = new System.Drawing.Size(639, 132);
            this.tabPagePhieuChi.TabStop = true;
            this.tabPagePhieuChi.Text = "Trả lại tiền (Phiếu chi)  (Alt + 2)";
            // 
            // grdPhieuChi
            // 
            this.grdPhieuChi.AlternatingColors = true;
            this.grdPhieuChi.AlternatingRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            grdPhieuChi_DesignTimeLayout_Reference_0.Instance = ((object)(resources.GetObject("grdPhieuChi_DesignTimeLayout_Reference_0.Instance")));
            grdPhieuChi_DesignTimeLayout_Reference_1.Instance = ((object)(resources.GetObject("grdPhieuChi_DesignTimeLayout_Reference_1.Instance")));
            grdPhieuChi_DesignTimeLayout.LayoutReferences.AddRange(new Janus.Windows.Common.Layouts.JanusLayoutReference[] {
            grdPhieuChi_DesignTimeLayout_Reference_0,
            grdPhieuChi_DesignTimeLayout_Reference_1});
            grdPhieuChi_DesignTimeLayout.LayoutString = resources.GetString("grdPhieuChi_DesignTimeLayout.LayoutString");
            this.grdPhieuChi.DesignTimeLayout = grdPhieuChi_DesignTimeLayout;
            this.grdPhieuChi.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdPhieuChi.EnterKeyBehavior = Janus.Windows.GridEX.EnterKeyBehavior.None;
            this.grdPhieuChi.Font = new System.Drawing.Font("Arial", 9F);
            this.grdPhieuChi.GroupByBoxVisible = false;
            this.grdPhieuChi.GroupRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdPhieuChi.GroupRowFormatStyle.ForeColor = System.Drawing.Color.Navy;
            this.grdPhieuChi.GroupTotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdPhieuChi.GroupTotals = Janus.Windows.GridEX.GroupTotals.Always;
            this.grdPhieuChi.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdPhieuChi.Location = new System.Drawing.Point(0, 0);
            this.grdPhieuChi.Name = "grdPhieuChi";
            this.grdPhieuChi.RecordNavigator = true;
            this.grdPhieuChi.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdPhieuChi.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdPhieuChi.SelectedInactiveFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdPhieuChi.Size = new System.Drawing.Size(639, 132);
            this.grdPhieuChi.TabIndex = 10;
            this.grdPhieuChi.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdPhieuChi.TotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdPhieuChi.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdPhieuChi.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdPhieuChi.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // tabThongTinCanThanhToan
            // 
            this.tabThongTinCanThanhToan.Dock = System.Windows.Forms.DockStyle.Top;
            this.tabThongTinCanThanhToan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tabThongTinCanThanhToan.Location = new System.Drawing.Point(0, 0);
            this.tabThongTinCanThanhToan.Name = "tabThongTinCanThanhToan";
            this.tabThongTinCanThanhToan.Size = new System.Drawing.Size(643, 549);
            this.tabThongTinCanThanhToan.TabIndex = 115;
            this.tabThongTinCanThanhToan.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
            this.tabpageThongTinThanhToan,
            this.tabPageThongTinChiTietThanhToan,
            this.uiTabPage1,
            this.tabPageThongTinDaThanhToan,
            this.TabpageCauhinh});
            this.tabThongTinCanThanhToan.TabStop = false;
            this.tabThongTinCanThanhToan.VisualStyle = Janus.Windows.UI.Tab.TabVisualStyle.VS2005;
            // 
            // tabpageThongTinThanhToan
            // 
            this.tabpageThongTinThanhToan.Controls.Add(this.panel4);
            this.tabpageThongTinThanhToan.Controls.Add(this.pnlThongtintien);
            this.tabpageThongTinThanhToan.Controls.Add(this.grpChucNangThanhToan);
            this.tabpageThongTinThanhToan.Location = new System.Drawing.Point(1, 23);
            this.tabpageThongTinThanhToan.Name = "tabpageThongTinThanhToan";
            this.tabpageThongTinThanhToan.Size = new System.Drawing.Size(641, 525);
            this.tabpageThongTinThanhToan.TabStop = true;
            this.tabpageThongTinThanhToan.Text = "Thông tin tổng hợp";
            // 
            // panel4
            // 
            this.panel4.Controls.Add(this.uiTabHoadon_chiphi);
            this.panel4.Controls.Add(this.panel5);
            this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel4.Location = new System.Drawing.Point(0, 0);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(311, 483);
            this.panel4.TabIndex = 363;
            // 
            // uiTabHoadon_chiphi
            // 
            this.uiTabHoadon_chiphi.Dock = System.Windows.Forms.DockStyle.Fill;
            this.uiTabHoadon_chiphi.Location = new System.Drawing.Point(0, 0);
            this.uiTabHoadon_chiphi.Name = "uiTabHoadon_chiphi";
            this.uiTabHoadon_chiphi.Size = new System.Drawing.Size(311, 338);
            this.uiTabHoadon_chiphi.TabIndex = 363;
            this.uiTabHoadon_chiphi.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
            this.tabpageKCB,
            this.tabpageHoaDon});
            this.uiTabHoadon_chiphi.VisualStyle = Janus.Windows.UI.Tab.TabVisualStyle.Flat;
            // 
            // tabpageKCB
            // 
            this.tabpageKCB.Controls.Add(this.grdDSKCB);
            this.tabpageKCB.Controls.Add(this.pnlSeri);
            this.tabpageKCB.Location = new System.Drawing.Point(1, 23);
            this.tabpageKCB.Name = "tabpageKCB";
            this.tabpageKCB.Size = new System.Drawing.Size(307, 312);
            this.tabpageKCB.TabStop = true;
            this.tabpageKCB.Text = "Chi phí";
            this.tabpageKCB.ToolTipText = "Nhấn phím tắt F8 để chọn Thông tin Khám chữa bệnh";
            // 
            // grdDSKCB
            // 
            this.grdDSKCB.AlternatingRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.grdDSKCB.ColumnAutoResize = true;
            grdDSKCB_DesignTimeLayout.LayoutString = resources.GetString("grdDSKCB_DesignTimeLayout.LayoutString");
            this.grdDSKCB.DesignTimeLayout = grdDSKCB_DesignTimeLayout;
            this.grdDSKCB.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdDSKCB.Font = new System.Drawing.Font("Arial", 9F);
            this.grdDSKCB.GridLines = Janus.Windows.GridEX.GridLines.Default;
            this.grdDSKCB.GroupByBoxVisible = false;
            this.grdDSKCB.Location = new System.Drawing.Point(0, 0);
            this.grdDSKCB.Name = "grdDSKCB";
            this.grdDSKCB.Size = new System.Drawing.Size(307, 263);
            this.grdDSKCB.TabIndex = 2;
            this.toolTip1.SetToolTip(this.grdDSKCB, "Danh sách các loại chi phí khám chữa bệnh. Có thể nhấn F2 để xem chi tiết");
            this.grdDSKCB.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdDSKCB.TotalRowFormatStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
            this.grdDSKCB.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdDSKCB.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // pnlSeri
            // 
            this.pnlSeri.Controls.Add(this.txtSerie);
            this.pnlSeri.Controls.Add(this.label44);
            this.pnlSeri.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.pnlSeri.Location = new System.Drawing.Point(0, 263);
            this.pnlSeri.Name = "pnlSeri";
            this.pnlSeri.Size = new System.Drawing.Size(307, 49);
            this.pnlSeri.TabIndex = 1;
            // 
            // txtSerie
            // 
            this.txtSerie.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtSerie.BackColor = System.Drawing.SystemColors.Control;
            this.txtSerie.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold);
            this.txtSerie.Location = new System.Drawing.Point(80, 14);
            this.txtSerie.Name = "txtSerie";
            this.txtSerie.Size = new System.Drawing.Size(215, 29);
            this.txtSerie.TabIndex = 41;
            this.txtSerie.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            this.txtSerie.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
            // 
            // label44
            // 
            this.label44.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label44.AutoSize = true;
            this.label44.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold);
            this.label44.Location = new System.Drawing.Point(4, 16);
            this.label44.Name = "label44";
            this.label44.Size = new System.Drawing.Size(58, 22);
            this.label44.TabIndex = 40;
            this.label44.Text = "Serie";
            // 
            // tabpageHoaDon
            // 
            this.tabpageHoaDon.Controls.Add(this.gpThongTinHoaDon);
            this.tabpageHoaDon.Controls.Add(this.grdHoaDonCapPhat);
            this.tabpageHoaDon.Location = new System.Drawing.Point(1, 23);
            this.tabpageHoaDon.Name = "tabpageHoaDon";
            this.tabpageHoaDon.Size = new System.Drawing.Size(307, 312);
            this.tabpageHoaDon.TabStop = true;
            this.tabpageHoaDon.Text = "Hóa đơn đỏ";
            this.tabpageHoaDon.ToolTipText = "Nhấn phím tắt F7 để chọn Thông tin hóa đơn";
            // 
            // gpThongTinHoaDon
            // 
            this.gpThongTinHoaDon.AutoScroll = true;
            this.gpThongTinHoaDon.Controls.Add(this.cmdKhaibaoHoadondo);
            this.gpThongTinHoaDon.Controls.Add(this.label18);
            this.gpThongTinHoaDon.Controls.Add(this.label22);
            this.gpThongTinHoaDon.Controls.Add(this.txtSerieCuoi);
            this.gpThongTinHoaDon.Controls.Add(this.txtSerieDau);
            this.gpThongTinHoaDon.Controls.Add(this.txtMaQuyen);
            this.gpThongTinHoaDon.Controls.Add(this.label43);
            this.gpThongTinHoaDon.Controls.Add(this.txtKiHieu);
            this.gpThongTinHoaDon.Controls.Add(this.label42);
            this.gpThongTinHoaDon.Controls.Add(this.txtMauHD);
            this.gpThongTinHoaDon.Controls.Add(this.label41);
            this.gpThongTinHoaDon.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gpThongTinHoaDon.Location = new System.Drawing.Point(0, 124);
            this.gpThongTinHoaDon.Name = "gpThongTinHoaDon";
            this.gpThongTinHoaDon.Size = new System.Drawing.Size(307, 188);
            this.gpThongTinHoaDon.TabIndex = 360;
            this.gpThongTinHoaDon.Text = "Thông tin hóa đơn";
            // 
            // cmdKhaibaoHoadondo
            // 
            this.cmdKhaibaoHoadondo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdKhaibaoHoadondo.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdKhaibaoHoadondo.Location = new System.Drawing.Point(144, 148);
            this.cmdKhaibaoHoadondo.Name = "cmdKhaibaoHoadondo";
            this.cmdKhaibaoHoadondo.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdKhaibaoHoadondo.Office2007CustomColor = System.Drawing.Color.White;
            this.cmdKhaibaoHoadondo.Size = new System.Drawing.Size(152, 37);
            this.cmdKhaibaoHoadondo.TabIndex = 360;
            this.cmdKhaibaoHoadondo.Text = "Khai báo hóa đơn đỏ";
            this.cmdKhaibaoHoadondo.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
            // 
            // 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(10, 129);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(79, 15);
            this.label18.TabIndex = 55;
            this.label18.Text = "Serie cuối";
            this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label22
            // 
            this.label22.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label22.Location = new System.Drawing.Point(10, 100);
            this.label22.Name = "label22";
            this.label22.Size = new System.Drawing.Size(79, 15);
            this.label22.TabIndex = 50;
            this.label22.Text = "Serie Đầu";
            this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtSerieCuoi
            // 
            this.txtSerieCuoi.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtSerieCuoi.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSerieCuoi.Location = new System.Drawing.Point(96, 123);
            this.txtSerieCuoi.Name = "txtSerieCuoi";
            this.txtSerieCuoi.ReadOnly = true;
            this.txtSerieCuoi.Size = new System.Drawing.Size(200, 21);
            this.txtSerieCuoi.TabIndex = 49;
            // 
            // txtSerieDau
            // 
            this.txtSerieDau.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtSerieDau.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSerieDau.Location = new System.Drawing.Point(96, 97);
            this.txtSerieDau.Name = "txtSerieDau";
            this.txtSerieDau.ReadOnly = true;
            this.txtSerieDau.Size = new System.Drawing.Size(200, 21);
            this.txtSerieDau.TabIndex = 48;
            // 
            // txtMaQuyen
            // 
            this.txtMaQuyen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtMaQuyen.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaQuyen.Location = new System.Drawing.Point(96, 71);
            this.txtMaQuyen.Name = "txtMaQuyen";
            this.txtMaQuyen.ReadOnly = true;
            this.txtMaQuyen.Size = new System.Drawing.Size(201, 21);
            this.txtMaQuyen.TabIndex = 39;
            // 
            // label43
            // 
            this.label43.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label43.Location = new System.Drawing.Point(10, 74);
            this.label43.Name = "label43";
            this.label43.Size = new System.Drawing.Size(79, 15);
            this.label43.TabIndex = 38;
            this.label43.Text = "Mã quyển";
            this.label43.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtKiHieu
            // 
            this.txtKiHieu.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtKiHieu.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtKiHieu.Location = new System.Drawing.Point(96, 45);
            this.txtKiHieu.Name = "txtKiHieu";
            this.txtKiHieu.ReadOnly = true;
            this.txtKiHieu.Size = new System.Drawing.Size(201, 21);
            this.txtKiHieu.TabIndex = 37;
            // 
            // label42
            // 
            this.label42.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label42.Location = new System.Drawing.Point(10, 48);
            this.label42.Name = "label42";
            this.label42.Size = new System.Drawing.Size(79, 15);
            this.label42.TabIndex = 36;
            this.label42.Text = "Ký hiệu";
            this.label42.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtMauHD
            // 
            this.txtMauHD.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtMauHD.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMauHD.Location = new System.Drawing.Point(96, 19);
            this.txtMauHD.Name = "txtMauHD";
            this.txtMauHD.ReadOnly = true;
            this.txtMauHD.Size = new System.Drawing.Size(201, 21);
            this.txtMauHD.TabIndex = 35;
            // 
            // label41
            // 
            this.label41.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label41.Location = new System.Drawing.Point(10, 22);
            this.label41.Name = "label41";
            this.label41.Size = new System.Drawing.Size(79, 15);
            this.label41.TabIndex = 34;
            this.label41.Text = "Mẫu hóa đơn";
            this.label41.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // grdHoaDonCapPhat
            // 
            this.grdHoaDonCapPhat.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grdHoaDonCapPhat.AlternatingRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            grdHoaDonCapPhat_DesignTimeLayout.LayoutString = resources.GetString("grdHoaDonCapPhat_DesignTimeLayout.LayoutString");
            this.grdHoaDonCapPhat.DesignTimeLayout = grdHoaDonCapPhat_DesignTimeLayout;
            this.grdHoaDonCapPhat.Dock = System.Windows.Forms.DockStyle.Top;
            this.grdHoaDonCapPhat.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdHoaDonCapPhat.GridLines = Janus.Windows.GridEX.GridLines.Default;
            this.grdHoaDonCapPhat.GroupByBoxVisible = false;
            this.grdHoaDonCapPhat.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdHoaDonCapPhat.Location = new System.Drawing.Point(0, 0);
            this.grdHoaDonCapPhat.Name = "grdHoaDonCapPhat";
            this.grdHoaDonCapPhat.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdHoaDonCapPhat.Size = new System.Drawing.Size(307, 124);
            this.grdHoaDonCapPhat.TabIndex = 49;
            this.grdHoaDonCapPhat.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // panel5
            // 
            this.panel5.Controls.Add(this.cmdHoanung);
            this.panel5.Controls.Add(this.pnlBHYT);
            this.panel5.Controls.Add(this.cmdChuyenDT);
            this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel5.Location = new System.Drawing.Point(0, 338);
            this.panel5.Name = "panel5";
            this.panel5.Size = new System.Drawing.Size(311, 145);
            this.panel5.TabIndex = 362;
            // 
            // cmdHoanung
            // 
            this.cmdHoanung.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdHoanung.Image = ((System.Drawing.Image)(resources.GetObject("cmdHoanung.Image")));
            this.cmdHoanung.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdHoanung.Location = new System.Drawing.Point(157, 4);
            this.cmdHoanung.Name = "cmdHoanung";
            this.cmdHoanung.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdHoanung.Office2007CustomColor = System.Drawing.Color.White;
            this.cmdHoanung.Size = new System.Drawing.Size(139, 37);
            this.cmdHoanung.TabIndex = 368;
            this.cmdHoanung.Tag = "0";
            this.cmdHoanung.Text = "Hoàn ứng";
            this.cmdHoanung.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
            // 
            // pnlBHYT
            // 
            this.pnlBHYT.Controls.Add(this.pnlSuangayinphoi);
            this.pnlBHYT.Controls.Add(this.lblMessage);
            this.pnlBHYT.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.pnlBHYT.Location = new System.Drawing.Point(0, 42);
            this.pnlBHYT.Name = "pnlBHYT";
            this.pnlBHYT.Size = new System.Drawing.Size(311, 103);
            this.pnlBHYT.TabIndex = 367;
            // 
            // pnlSuangayinphoi
            // 
            this.pnlSuangayinphoi.Controls.Add(this.label17);
            this.pnlSuangayinphoi.Controls.Add(this.cmdHuyInPhoiBHYT);
            this.pnlSuangayinphoi.Controls.Add(this.dtNgayInPhoi);
            this.pnlSuangayinphoi.Controls.Add(this.cmdCapnhatngayinphoiBHYT);
            this.pnlSuangayinphoi.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlSuangayinphoi.Location = new System.Drawing.Point(0, 0);
            this.pnlSuangayinphoi.Name = "pnlSuangayinphoi";
            this.pnlSuangayinphoi.Size = new System.Drawing.Size(311, 67);
            this.pnlSuangayinphoi.TabIndex = 368;
            // 
            // label17
            // 
            this.label17.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            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(4, 38);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(97, 24);
            this.label17.TabIndex = 358;
            this.label17.Text = "Ngày in phôi:";
            this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cmdHuyInPhoiBHYT
            // 
            this.cmdHuyInPhoiBHYT.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdHuyInPhoiBHYT.Enabled = false;
            this.cmdHuyInPhoiBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdHuyInPhoiBHYT.Image = ((System.Drawing.Image)(resources.GetObject("cmdHuyInPhoiBHYT.Image")));
            this.cmdHuyInPhoiBHYT.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdHuyInPhoiBHYT.Location = new System.Drawing.Point(226, 36);
            this.cmdHuyInPhoiBHYT.Name = "cmdHuyInPhoiBHYT";
            this.cmdHuyInPhoiBHYT.Size = new System.Drawing.Size(38, 27);
            this.cmdHuyInPhoiBHYT.TabIndex = 356;
            this.toolTip1.SetToolTip(this.cmdHuyInPhoiBHYT, "Nhấn vào đây để hủy thông tin in phôi BHYT");
            // 
            // dtNgayInPhoi
            // 
            this.dtNgayInPhoi.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.dtNgayInPhoi.CustomFormat = "dd/MM/yyyy";
            this.dtNgayInPhoi.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtNgayInPhoi.DropDownCalendar.FirstMonth = new System.DateTime(2014, 4, 1, 0, 0, 0, 0);
            this.dtNgayInPhoi.DropDownCalendar.Name = "";
            this.dtNgayInPhoi.DropDownCalendar.Visible = false;
            this.dtNgayInPhoi.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtNgayInPhoi.IsNullDate = true;
            this.dtNgayInPhoi.Location = new System.Drawing.Point(107, 39);
            this.dtNgayInPhoi.Name = "dtNgayInPhoi";
            this.dtNgayInPhoi.Size = new System.Drawing.Size(109, 21);
            this.dtNgayInPhoi.TabIndex = 355;
            // 
            // cmdCapnhatngayinphoiBHYT
            // 
            this.cmdCapnhatngayinphoiBHYT.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdCapnhatngayinphoiBHYT.ButtonStyle = Janus.Windows.EditControls.ButtonStyle.Button;
            this.cmdCapnhatngayinphoiBHYT.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdCapnhatngayinphoiBHYT.Image = ((System.Drawing.Image)(resources.GetObject("cmdCapnhatngayinphoiBHYT.Image")));
            this.cmdCapnhatngayinphoiBHYT.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdCapnhatngayinphoiBHYT.Location = new System.Drawing.Point(266, 36);
            this.cmdCapnhatngayinphoiBHYT.Name = "cmdCapnhatngayinphoiBHYT";
            this.cmdCapnhatngayinphoiBHYT.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdCapnhatngayinphoiBHYT.Office2007CustomColor = System.Drawing.Color.WhiteSmoke;
            this.cmdCapnhatngayinphoiBHYT.Size = new System.Drawing.Size(38, 27);
            this.cmdCapnhatngayinphoiBHYT.TabIndex = 357;
            this.toolTip1.SetToolTip(this.cmdCapnhatngayinphoiBHYT, "Nhấn vào đây để lưu lại thông tin ngày in phôi BHYT");
            this.cmdCapnhatngayinphoiBHYT.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
            // 
            // lblMessage
            // 
            this.lblMessage.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.lblMessage.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.lblMessage.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblMessage.Location = new System.Drawing.Point(0, 67);
            this.lblMessage.Name = "lblMessage";
            this.lblMessage.Size = new System.Drawing.Size(311, 36);
            this.lblMessage.TabIndex = 21;
            this.lblMessage.Text = "In phôi BHYT bởi Nguyễn Thu Hằng lúc 01/01/2050 19:17:26";
            this.lblMessage.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.lblMessage.Visible = false;
            // 
            // cmdChuyenDT
            // 
            this.cmdChuyenDT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdChuyenDT.Location = new System.Drawing.Point(7, 4);
            this.cmdChuyenDT.Name = "cmdChuyenDT";
            this.cmdChuyenDT.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdChuyenDT.Office2007CustomColor = System.Drawing.Color.White;
            this.cmdChuyenDT.Size = new System.Drawing.Size(139, 37);
            this.cmdChuyenDT.TabIndex = 359;
            this.cmdChuyenDT.Text = "Chuyển đối tượng";
            this.cmdChuyenDT.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
            // 
            // pnlThongtintien
            // 
            this.pnlThongtintien.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.pnlThongtintien.Controls.Add(this.linkLabel1);
            this.pnlThongtintien.Controls.Add(this.lblThuathieu);
            this.pnlThongtintien.Controls.Add(this.txtThuathieu);
            this.pnlThongtintien.Controls.Add(this.label5);
            this.pnlThongtintien.Controls.Add(this.label23);
            this.pnlThongtintien.Controls.Add(this.txtPttt);
            this.pnlThongtintien.Controls.Add(this.chkLayHoadon);
            this.pnlThongtintien.Controls.Add(this.cmdHuyThanhToan);
            this.pnlThongtintien.Controls.Add(this.label38);
            this.pnlThongtintien.Controls.Add(this.label2);
            this.pnlThongtintien.Controls.Add(this.txtDachietkhau);
            this.pnlThongtintien.Controls.Add(this.txtTienChietkhau);
            this.pnlThongtintien.Controls.Add(this.chkChietkhauthem);
            this.pnlThongtintien.Controls.Add(this.txtTongtienDCT);
            this.pnlThongtintien.Controls.Add(this.label37);
            this.pnlThongtintien.Controls.Add(this.label9);
            this.pnlThongtintien.Controls.Add(this.txtsotiendathu);
            this.pnlThongtintien.Controls.Add(this.cmdThanhToan);
            this.pnlThongtintien.Controls.Add(this.txtPtramBHChiTra);
            this.pnlThongtintien.Controls.Add(this.label12);
            this.pnlThongtintien.Controls.Add(this.dtPaymentDate);
            this.pnlThongtintien.Controls.Add(this.label8);
            this.pnlThongtintien.Controls.Add(this.txtTongChiPhi);
            this.pnlThongtintien.Controls.Add(this.txtTuTuc);
            this.pnlThongtintien.Controls.Add(this.txtSoTienCanNop);
            this.pnlThongtintien.Controls.Add(this.label11);
            this.pnlThongtintien.Controls.Add(this.label10);
            this.pnlThongtintien.Controls.Add(this.txtBNPhaiTra);
            this.pnlThongtintien.Controls.Add(this.txtPhuThu);
            this.pnlThongtintien.Controls.Add(this.label14);
            this.pnlThongtintien.Controls.Add(this.label13);
            this.pnlThongtintien.Controls.Add(this.txtBHCT);
            this.pnlThongtintien.Controls.Add(this.txtBNCT);
            this.pnlThongtintien.Controls.Add(this.label15);
            this.pnlThongtintien.Dock = System.Windows.Forms.DockStyle.Right;
            this.pnlThongtintien.Location = new System.Drawing.Point(311, 0);
            this.pnlThongtintien.Name = "pnlThongtintien";
            this.pnlThongtintien.Size = new System.Drawing.Size(330, 483);
            this.pnlThongtintien.TabIndex = 362;
            // 
            // linkLabel1
            // 
            this.linkLabel1.AutoSize = true;
            this.linkLabel1.Location = new System.Drawing.Point(17, 412);
            this.linkLabel1.Name = "linkLabel1";
            this.linkLabel1.Size = new System.Drawing.Size(64, 15);
            this.linkLabel1.TabIndex = 386;
            this.linkLabel1.TabStop = true;
            this.linkLabel1.Text = "linkLabel1";
            // 
            // lblThuathieu
            // 
            this.lblThuathieu.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            this.lblThuathieu.ForeColor = System.Drawing.Color.Red;
            this.lblThuathieu.Location = new System.Drawing.Point(0, 330);
            this.lblThuathieu.Name = "lblThuathieu";
            this.lblThuathieu.Size = new System.Drawing.Size(143, 24);
            this.lblThuathieu.TabIndex = 385;
            this.lblThuathieu.Text = "Thừa thiếu:";
            this.lblThuathieu.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.toolTip1.SetToolTip(this.lblThuathieu, "Số tiền thực tế Bệnh nhân phải nộp(Tổng tiền tạm ứng - Tổng tiền Dịch vụ)");
            // 
            // txtThuathieu
            // 
            this.txtThuathieu.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtThuathieu.BackColor = System.Drawing.Color.White;
            this.txtThuathieu.ButtonFont = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            this.txtThuathieu.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            this.txtThuathieu.ForeColor = System.Drawing.Color.Red;
            this.txtThuathieu.Location = new System.Drawing.Point(154, 328);
            this.txtThuathieu.Name = "txtThuathieu";
            this.txtThuathieu.ReadOnly = true;
            this.txtThuathieu.Size = new System.Drawing.Size(167, 26);
            this.txtThuathieu.TabIndex = 384;
            this.txtThuathieu.Tag = "NO";
            this.txtThuathieu.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            this.txtThuathieu.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
            // 
            // label5
            // 
            this.label5.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.label5.Location = new System.Drawing.Point(46, 303);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(97, 24);
            this.label5.TabIndex = 353;
            this.label5.Text = "Tổng tiền DV";
            this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label23
            // 
            this.label23.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label23.Location = new System.Drawing.Point(1, 356);
            this.label23.Name = "label23";
            this.label23.Size = new System.Drawing.Size(143, 24);
            this.label23.TabIndex = 383;
            this.label23.Text = "Phương thức T.Toán";
            this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtPttt
            // 
            this.txtPttt._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtPttt._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPttt.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtPttt.AutoCompleteList")));
            this.txtPttt.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtPttt.CaseSensitive = false;
            this.txtPttt.CompareNoID = true;
            this.txtPttt.DefaultCode = "-1";
            this.txtPttt.DefaultID = "-1";
            this.txtPttt.Drug_ID = null;
            this.txtPttt.ExtraWidth = 0;
            this.txtPttt.FillValueAfterSelect = false;
            this.txtPttt.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPttt.LOAI_DANHMUC = "PHUONGTHUCTHANHTOAN";
            this.txtPttt.Location = new System.Drawing.Point(154, 356);
            this.txtPttt.MaxHeight = -1;
            this.txtPttt.MinTypedCharacters = 2;
            this.txtPttt.MyCode = "-1";
            this.txtPttt.MyID = "-1";
            this.txtPttt.Name = "txtPttt";
            this.txtPttt.RaiseEvent = false;
            this.txtPttt.RaiseEventEnter = false;
            this.txtPttt.RaiseEventEnterWhenEmpty = false;
            this.txtPttt.SelectedIndex = -1;
            this.txtPttt.Size = new System.Drawing.Size(167, 21);
            this.txtPttt.splitChar = '@';
            this.txtPttt.splitCharIDAndCode = '#';
            this.txtPttt.TabIndex = 382;
            this.txtPttt.TakeCode = false;
            this.toolTip1.SetToolTip(this.txtPttt, "Nhấn vào đây để xem và bổ sung thêm danh mục dân tộc");
            this.txtPttt.txtMyCode = null;
            this.txtPttt.txtMyCode_Edit = null;
            this.txtPttt.txtMyID = null;
            this.txtPttt.txtMyID_Edit = null;
            this.txtPttt.txtMyName = null;
            this.txtPttt.txtMyName_Edit = null;
            this.txtPttt.txtNext = null;
            // 
            // chkLayHoadon
            // 
            this.chkLayHoadon.AutoSize = true;
            this.chkLayHoadon.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkLayHoadon.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.chkLayHoadon.Location = new System.Drawing.Point(157, 406);
            this.chkLayHoadon.Name = "chkLayHoadon";
            this.chkLayHoadon.Size = new System.Drawing.Size(135, 20);
            this.chkLayHoadon.TabIndex = 379;
            this.chkLayHoadon.Text = "Lấy hóa đơn đỏ?";
            this.toolTip1.SetToolTip(this.chkLayHoadon, "Nhấn vào đây nếu muốn lấy seri hóa đơn đỏ hiện tại cho lần thanh toán này");
            this.chkLayHoadon.UseVisualStyleBackColor = true;
            // 
            // cmdHuyThanhToan
            // 
            this.cmdHuyThanhToan.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdHuyThanhToan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdHuyThanhToan.Image = ((System.Drawing.Image)(resources.GetObject("cmdHuyThanhToan.Image")));
            this.cmdHuyThanhToan.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdHuyThanhToan.Location = new System.Drawing.Point(5, 443);
            this.cmdHuyThanhToan.Name = "cmdHuyThanhToan";
            this.cmdHuyThanhToan.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdHuyThanhToan.Office2007CustomColor = System.Drawing.Color.Yellow;
            this.cmdHuyThanhToan.Size = new System.Drawing.Size(138, 35);
            this.cmdHuyThanhToan.TabIndex = 18;
            this.cmdHuyThanhToan.Text = "Hủy thanh toán";
            this.toolTip1.SetToolTip(this.cmdHuyThanhToan, "Nhấn vào đây để hủy thanh toán cho phiếu thanh toán đang chọn bên dưới");
            // 
            // label38
            // 
            this.label38.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            this.label38.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label38.Location = new System.Drawing.Point(0, 244);
            this.label38.Name = "label38";
            this.label38.Size = new System.Drawing.Size(148, 24);
            this.label38.TabIndex = 378;
            this.label38.Text = "Đã chiết khấu:";
            this.label38.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label2
            // 
            this.label2.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label2.Location = new System.Drawing.Point(0, 275);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(148, 24);
            this.label2.TabIndex = 375;
            this.label2.Text = "Sẽ chiết khấu:";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtDachietkhau
            // 
            this.txtDachietkhau.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtDachietkhau.BackColor = System.Drawing.Color.White;
            this.txtDachietkhau.ButtonFont = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            this.txtDachietkhau.ContextMenuStrip = this.ctxHuyChietkhau;
            this.txtDachietkhau.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            this.txtDachietkhau.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.txtDachietkhau.Location = new System.Drawing.Point(154, 240);
            this.txtDachietkhau.Name = "txtDachietkhau";
            this.txtDachietkhau.ReadOnly = true;
            this.txtDachietkhau.Size = new System.Drawing.Size(167, 26);
            this.txtDachietkhau.TabIndex = 377;
            this.txtDachietkhau.Tag = "NO";
            this.txtDachietkhau.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            this.toolTip1.SetToolTip(this.txtDachietkhau, "Tổng tiền chiết khấu");
            this.txtDachietkhau.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
            // 
            // ctxHuyChietkhau
            // 
            this.ctxHuyChietkhau.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuHuyChietkhau});
            this.ctxHuyChietkhau.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
            this.ctxHuyChietkhau.Name = "contextMenuStrip1";
            this.ctxHuyChietkhau.Size = new System.Drawing.Size(217, 26);
            // 
            // mnuHuyChietkhau
            // 
            this.mnuHuyChietkhau.Name = "mnuHuyChietkhau";
            this.mnuHuyChietkhau.Size = new System.Drawing.Size(216, 22);
            this.mnuHuyChietkhau.Text = "Hủy tiền chiết khấu chi tiết";
            // 
            // txtTienChietkhau
            // 
            this.txtTienChietkhau.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtTienChietkhau.BackColor = System.Drawing.Color.White;
            this.txtTienChietkhau.ButtonFont = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            this.txtTienChietkhau.ContextMenuStrip = this.ctxHuyChietkhau;
            this.txtTienChietkhau.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            this.txtTienChietkhau.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.txtTienChietkhau.Location = new System.Drawing.Point(154, 270);
            this.txtTienChietkhau.Name = "txtTienChietkhau";
            this.txtTienChietkhau.ReadOnly = true;
            this.txtTienChietkhau.Size = new System.Drawing.Size(167, 26);
            this.txtTienChietkhau.TabIndex = 374;
            this.txtTienChietkhau.Tag = "NO";
            this.txtTienChietkhau.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            this.toolTip1.SetToolTip(this.txtTienChietkhau, "Tổng tiền chiết khấu");
            this.txtTienChietkhau.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
            // 
            // chkChietkhauthem
            // 
            this.chkChietkhauthem.AutoSize = true;
            this.chkChietkhauthem.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkChietkhauthem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.chkChietkhauthem.Location = new System.Drawing.Point(157, 382);
            this.chkChietkhauthem.Name = "chkChietkhauthem";
            this.chkChietkhauthem.Size = new System.Drawing.Size(139, 20);
            this.chkChietkhauthem.TabIndex = 376;
            this.chkChietkhauthem.Text = "Chiết khấu thêm?";
            this.toolTip1.SetToolTip(this.chkChietkhauthem, "Nhấn vào đây nếu muốn chiết khấu theo toàn hóa đơn");
            this.chkChietkhauthem.UseVisualStyleBackColor = true;
            // 
            // txtTongtienDCT
            // 
            this.txtTongtienDCT.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtTongtienDCT.Font = new System.Drawing.Font("Arial", 10.25F, System.Drawing.FontStyle.Bold);
            this.txtTongtienDCT.Location = new System.Drawing.Point(154, 55);
            this.txtTongtienDCT.Name = "txtTongtienDCT";
            this.txtTongtienDCT.Size = new System.Drawing.Size(167, 23);
            this.txtTongtienDCT.TabIndex = 373;
            this.txtTongtienDCT.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            // 
            // label37
            // 
            this.label37.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label37.Location = new System.Drawing.Point(0, 52);
            this.label37.Name = "label37";
            this.label37.Size = new System.Drawing.Size(143, 24);
            this.label37.TabIndex = 372;
            this.label37.Text = "Tổng tiền Đồng chi trả";
            this.label37.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label9
            // 
            this.label9.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            this.label9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label9.Location = new System.Drawing.Point(0, 216);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(143, 24);
            this.label9.TabIndex = 371;
            this.label9.Text = "Đã thu:";
            this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtsotiendathu
            // 
            this.txtsotiendathu.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtsotiendathu.BackColor = System.Drawing.Color.White;
            this.txtsotiendathu.ButtonFont = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            this.txtsotiendathu.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            this.txtsotiendathu.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.txtsotiendathu.Location = new System.Drawing.Point(154, 212);
            this.txtsotiendathu.Name = "txtsotiendathu";
            this.txtsotiendathu.ReadOnly = true;
            this.txtsotiendathu.Size = new System.Drawing.Size(167, 26);
            this.txtsotiendathu.TabIndex = 370;
            this.txtsotiendathu.Tag = "NO";
            this.txtsotiendathu.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            this.txtsotiendathu.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
            // 
            // cmdThanhToan
            // 
            this.cmdThanhToan.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdThanhToan.ButtonStyle = Janus.Windows.EditControls.ButtonStyle.Button;
            this.cmdThanhToan.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdThanhToan.Image = ((System.Drawing.Image)(resources.GetObject("cmdThanhToan.Image")));
            this.cmdThanhToan.Location = new System.Drawing.Point(154, 443);
            this.cmdThanhToan.Name = "cmdThanhToan";
            this.cmdThanhToan.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdThanhToan.Office2007CustomColor = System.Drawing.Color.Red;
            this.cmdThanhToan.Size = new System.Drawing.Size(167, 35);
            this.cmdThanhToan.TabIndex = 369;
            this.cmdThanhToan.Text = "Thanh toán";
            this.cmdThanhToan.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
            // 
            // txtPtramBHChiTra
            // 
            this.txtPtramBHChiTra.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtPtramBHChiTra.BackColor = System.Drawing.Color.White;
            this.txtPtramBHChiTra.BorderStyle = Janus.Windows.GridEX.BorderStyle.Flat;
            this.txtPtramBHChiTra.Font = new System.Drawing.Font("Arial", 10.25F, System.Drawing.FontStyle.Bold);
            this.txtPtramBHChiTra.Location = new System.Drawing.Point(154, 80);
            this.txtPtramBHChiTra.Name = "txtPtramBHChiTra";
            this.txtPtramBHChiTra.ReadOnly = true;
            this.txtPtramBHChiTra.Size = new System.Drawing.Size(56, 23);
            this.txtPtramBHChiTra.TabIndex = 368;
            this.txtPtramBHChiTra.Text = "100%";
            this.txtPtramBHChiTra.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            this.toolTip1.SetToolTip(this.txtPtramBHChiTra, "Đúng tuyền=%Đầu thẻ; Trái tuyến= % Tuyến * % Đầu thẻ");
            // 
            // label12
            // 
            this.label12.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label12.ForeColor = System.Drawing.Color.Navy;
            this.label12.Location = new System.Drawing.Point(0, 5);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(143, 24);
            this.label12.TabIndex = 27;
            this.label12.Text = "Ngày thanh toán:";
            this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtPaymentDate
            // 
            this.dtPaymentDate.CustomFormat = "dd/MM/yyyy HH:mm:ss";
            this.dtPaymentDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtPaymentDate.DropDownCalendar.FirstMonth = new System.DateTime(2014, 4, 1, 0, 0, 0, 0);
            this.dtPaymentDate.DropDownCalendar.Name = "";
            this.dtPaymentDate.Enabled = false;
            this.dtPaymentDate.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtPaymentDate.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.dtPaymentDate.Location = new System.Drawing.Point(154, 6);
            this.dtPaymentDate.Name = "dtPaymentDate";
            this.dtPaymentDate.ShowUpDown = true;
            this.dtPaymentDate.Size = new System.Drawing.Size(168, 22);
            this.dtPaymentDate.TabIndex = 363;
            this.dtPaymentDate.Value = new System.DateTime(2013, 6, 19, 0, 0, 0, 0);
            // 
            // label8
            // 
            this.label8.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label8.Location = new System.Drawing.Point(0, 27);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(143, 24);
            this.label8.TabIndex = 0;
            this.label8.Text = "Tổng tiền ";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtTongChiPhi
            // 
            this.txtTongChiPhi.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtTongChiPhi.Font = new System.Drawing.Font("Arial", 10.25F, System.Drawing.FontStyle.Bold);
            this.txtTongChiPhi.Location = new System.Drawing.Point(154, 30);
            this.txtTongChiPhi.Name = "txtTongChiPhi";
            this.txtTongChiPhi.Size = new System.Drawing.Size(167, 23);
            this.txtTongChiPhi.TabIndex = 337;
            this.txtTongChiPhi.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            // 
            // txtTuTuc
            // 
            this.txtTuTuc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtTuTuc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.txtTuTuc.ButtonFont = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTuTuc.Font = new System.Drawing.Font("Arial", 10.25F, System.Drawing.FontStyle.Bold);
            this.txtTuTuc.Location = new System.Drawing.Point(154, 156);
            this.txtTuTuc.Name = "txtTuTuc";
            this.txtTuTuc.Size = new System.Drawing.Size(167, 23);
            this.txtTuTuc.TabIndex = 343;
            this.txtTuTuc.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            // 
            // txtSoTienCanNop
            // 
            this.txtSoTienCanNop.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtSoTienCanNop.BackColor = System.Drawing.Color.White;
            this.txtSoTienCanNop.ButtonFont = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            this.txtSoTienCanNop.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            this.txtSoTienCanNop.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.txtSoTienCanNop.Location = new System.Drawing.Point(154, 299);
            this.txtSoTienCanNop.Name = "txtSoTienCanNop";
            this.txtSoTienCanNop.ReadOnly = true;
            this.txtSoTienCanNop.Size = new System.Drawing.Size(167, 26);
            this.txtSoTienCanNop.TabIndex = 351;
            this.txtSoTienCanNop.Tag = "NO";
            this.txtSoTienCanNop.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            this.txtSoTienCanNop.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
            // 
            // label11
            // 
            this.label11.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label11.Location = new System.Drawing.Point(0, 156);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(143, 24);
            this.label11.TabIndex = 342;
            this.label11.Text = "Tự túc (3):";
            this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label10
            // 
            this.label10.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label10.Location = new System.Drawing.Point(0, 130);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(143, 24);
            this.label10.TabIndex = 340;
            this.label10.Text = "Phụ thu (2):";
            this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtBNPhaiTra
            // 
            this.txtBNPhaiTra.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtBNPhaiTra.BackColor = System.Drawing.Color.White;
            this.txtBNPhaiTra.ButtonFont = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            this.txtBNPhaiTra.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            this.txtBNPhaiTra.Location = new System.Drawing.Point(154, 182);
            this.txtBNPhaiTra.Name = "txtBNPhaiTra";
            this.txtBNPhaiTra.Size = new System.Drawing.Size(167, 26);
            this.txtBNPhaiTra.TabIndex = 347;
            this.txtBNPhaiTra.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            this.txtBNPhaiTra.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
            // 
            // txtPhuThu
            // 
            this.txtPhuThu.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtPhuThu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.txtPhuThu.ButtonFont = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPhuThu.Font = new System.Drawing.Font("Arial", 10.25F, System.Drawing.FontStyle.Bold);
            this.txtPhuThu.Location = new System.Drawing.Point(154, 130);
            this.txtPhuThu.Name = "txtPhuThu";
            this.txtPhuThu.Size = new System.Drawing.Size(167, 23);
            this.txtPhuThu.TabIndex = 341;
            this.txtPhuThu.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            // 
            // label14
            // 
            this.label14.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
            this.label14.Location = new System.Drawing.Point(0, 182);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(143, 31);
            this.label14.TabIndex = 346;
            this.label14.Text = "Tổng BN phải trả (1+2+3):";
            this.label14.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // label13
            // 
            this.label13.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label13.Location = new System.Drawing.Point(0, 104);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(143, 24);
            this.label13.TabIndex = 344;
            this.label13.Text = "Bệnh nhân chi trả (1):";
            this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtBHCT
            // 
            this.txtBHCT.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtBHCT.Font = new System.Drawing.Font("Arial", 10.25F, System.Drawing.FontStyle.Bold);
            this.txtBHCT.Location = new System.Drawing.Point(216, 80);
            this.txtBHCT.Name = "txtBHCT";
            this.txtBHCT.Size = new System.Drawing.Size(105, 23);
            this.txtBHCT.TabIndex = 349;
            this.txtBHCT.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            // 
            // txtBNCT
            // 
            this.txtBNCT.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtBNCT.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.txtBNCT.ButtonFont = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtBNCT.Font = new System.Drawing.Font("Arial", 10.25F, System.Drawing.FontStyle.Bold);
            this.txtBNCT.Location = new System.Drawing.Point(154, 105);
            this.txtBNCT.Name = "txtBNCT";
            this.txtBNCT.Size = new System.Drawing.Size(167, 23);
            this.txtBNCT.TabIndex = 345;
            this.txtBNCT.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            // 
            // label15
            // 
            this.label15.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label15.Location = new System.Drawing.Point(0, 78);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(143, 24);
            this.label15.TabIndex = 348;
            this.label15.Text = "BHYT chi trả :";
            this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // grpChucNangThanhToan
            // 
            this.grpChucNangThanhToan.Controls.Add(this.cmdCalculator);
            this.grpChucNangThanhToan.Controls.Add(this.flowLayoutPanel1);
            this.grpChucNangThanhToan.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.grpChucNangThanhToan.Location = new System.Drawing.Point(0, 483);
            this.grpChucNangThanhToan.Name = "grpChucNangThanhToan";
            this.grpChucNangThanhToan.Size = new System.Drawing.Size(641, 42);
            this.grpChucNangThanhToan.TabIndex = 355;
            this.grpChucNangThanhToan.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2003;
            // 
            // cmdCalculator
            // 
            this.cmdCalculator.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdCalculator.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdCalculator.Image = ((System.Drawing.Image)(resources.GetObject("cmdCalculator.Image")));
            this.cmdCalculator.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdCalculator.Location = new System.Drawing.Point(2, 13);
            this.cmdCalculator.Name = "cmdCalculator";
            this.cmdCalculator.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdCalculator.Office2007CustomColor = System.Drawing.Color.White;
            this.cmdCalculator.Size = new System.Drawing.Size(36, 25);
            this.cmdCalculator.TabIndex = 24;
            this.toolTip1.SetToolTip(this.cmdCalculator, "Máy tính ");
            this.cmdCalculator.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
            // 
            // flowLayoutPanel1
            // 
            this.flowLayoutPanel1.Controls.Add(this.cmdInhoadon);
            this.flowLayoutPanel1.Controls.Add(this.cmdInBienlai);
            this.flowLayoutPanel1.Controls.Add(this.cmdInBienlaiTonghop);
            this.flowLayoutPanel1.Controls.Add(this.cmdInphieuDCT);
            this.flowLayoutPanel1.Controls.Add(this.cmdInphoiBHYT);
            this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Right;
            this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
            this.flowLayoutPanel1.Location = new System.Drawing.Point(49, 8);
            this.flowLayoutPanel1.Name = "flowLayoutPanel1";
            this.flowLayoutPanel1.Size = new System.Drawing.Size(589, 31);
            this.flowLayoutPanel1.TabIndex = 22;
            // 
            // cmdInhoadon
            // 
            this.cmdInhoadon.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdInhoadon.ButtonStyle = Janus.Windows.EditControls.ButtonStyle.Button;
            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.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdInhoadon.Location = new System.Drawing.Point(479, 3);
            this.cmdInhoadon.Name = "cmdInhoadon";
            this.cmdInhoadon.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdInhoadon.Office2007CustomColor = System.Drawing.Color.WhiteSmoke;
            this.cmdInhoadon.Size = new System.Drawing.Size(107, 27);
            this.cmdInhoadon.TabIndex = 19;
            this.cmdInhoadon.Text = "In hóa đơn";
            this.toolTip1.SetToolTip(this.cmdInhoadon, "Nhấn vào đây để in hóa đơn");
            // 
            // cmdInBienlai
            // 
            this.cmdInBienlai.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdInBienlai.ButtonStyle = Janus.Windows.EditControls.ButtonStyle.Button;
            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.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdInBienlai.Location = new System.Drawing.Point(366, 3);
            this.cmdInBienlai.Name = "cmdInBienlai";
            this.cmdInBienlai.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdInBienlai.Office2007CustomColor = System.Drawing.Color.WhiteSmoke;
            this.cmdInBienlai.Size = new System.Drawing.Size(107, 27);
            this.cmdInBienlai.TabIndex = 21;
            this.cmdInBienlai.Text = "In phiếu";
            this.toolTip1.SetToolTip(this.cmdInBienlai, "Nhấn vào đây để in biên lai của lần thanh toán đang chọn");
            // 
            // cmdInBienlaiTonghop
            // 
            this.cmdInBienlaiTonghop.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdInBienlaiTonghop.ButtonStyle = Janus.Windows.EditControls.ButtonStyle.Button;
            this.cmdInBienlaiTonghop.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdInBienlaiTonghop.Image = ((System.Drawing.Image)(resources.GetObject("cmdInBienlaiTonghop.Image")));
            this.cmdInBienlaiTonghop.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdInBienlaiTonghop.Location = new System.Drawing.Point(253, 3);
            this.cmdInBienlaiTonghop.Name = "cmdInBienlaiTonghop";
            this.cmdInBienlaiTonghop.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdInBienlaiTonghop.Office2007CustomColor = System.Drawing.Color.WhiteSmoke;
            this.cmdInBienlaiTonghop.Size = new System.Drawing.Size(107, 27);
            this.cmdInBienlaiTonghop.TabIndex = 20;
            this.cmdInBienlaiTonghop.Text = "In tổng hợp";
            this.toolTip1.SetToolTip(this.cmdInBienlaiTonghop, "Nhấn vào đây để in biên lai tổng hợp của tất cả các lần thanh toán");
            // 
            // cmdInphieuDCT
            // 
            this.cmdInphieuDCT.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdInphieuDCT.ButtonStyle = Janus.Windows.EditControls.ButtonStyle.Button;
            this.cmdInphieuDCT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdInphieuDCT.Image = ((System.Drawing.Image)(resources.GetObject("cmdInphieuDCT.Image")));
            this.cmdInphieuDCT.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdInphieuDCT.Location = new System.Drawing.Point(130, 3);
            this.cmdInphieuDCT.Name = "cmdInphieuDCT";
            this.cmdInphieuDCT.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdInphieuDCT.Office2007CustomColor = System.Drawing.Color.WhiteSmoke;
            this.cmdInphieuDCT.Size = new System.Drawing.Size(117, 27);
            this.cmdInphieuDCT.TabIndex = 22;
            this.cmdInphieuDCT.Text = "In phiếu ĐCT";
            this.toolTip1.SetToolTip(this.cmdInphieuDCT, "Nhấn vào đây để in phiếu Đồng chi trả cho Bệnh nhân");
            // 
            // cmdInphoiBHYT
            // 
            this.cmdInphoiBHYT.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdInphoiBHYT.ButtonStyle = Janus.Windows.EditControls.ButtonStyle.Button;
            this.cmdInphoiBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdInphoiBHYT.Image = ((System.Drawing.Image)(resources.GetObject("cmdInphoiBHYT.Image")));
            this.cmdInphoiBHYT.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdInphoiBHYT.Location = new System.Drawing.Point(7, 3);
            this.cmdInphoiBHYT.Name = "cmdInphoiBHYT";
            this.cmdInphoiBHYT.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdInphoiBHYT.Office2007CustomColor = System.Drawing.Color.WhiteSmoke;
            this.cmdInphoiBHYT.Size = new System.Drawing.Size(117, 27);
            this.cmdInphoiBHYT.TabIndex = 13;
            this.cmdInphoiBHYT.Text = "In phôi BHYT";
            this.toolTip1.SetToolTip(this.cmdInphoiBHYT, "Nhấn vào đây để in phôi BHYT");
            // 
            // tabPageThongTinChiTietThanhToan
            // 
            this.tabPageThongTinChiTietThanhToan.Controls.Add(this.grdThongTinChuaThanhToan);
            this.tabPageThongTinChiTietThanhToan.Controls.Add(this.panel3);
            this.tabPageThongTinChiTietThanhToan.Location = new System.Drawing.Point(1, 23);
            this.tabPageThongTinChiTietThanhToan.Name = "tabPageThongTinChiTietThanhToan";
            this.tabPageThongTinChiTietThanhToan.Size = new System.Drawing.Size(641, 525);
            this.tabPageThongTinChiTietThanhToan.TabStop = true;
            this.tabPageThongTinChiTietThanhToan.Text = "Thông tin Chi tiết";
            // 
            // grdThongTinChuaThanhToan
            // 
            this.grdThongTinChuaThanhToan.AlternatingRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.grdThongTinChuaThanhToan.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><RecordNavigator>Số bả" +
    "n ghi:|/</RecordNavigator></LocalizableData>";
            this.grdThongTinChuaThanhToan.CellSelectionMode = Janus.Windows.GridEX.CellSelectionMode.SingleCell;
            this.grdThongTinChuaThanhToan.ContextMenuStrip = this.ctxHuyChietkhau;
            grdThongTinChuaThanhToan_DesignTimeLayout.LayoutString = resources.GetString("grdThongTinChuaThanhToan_DesignTimeLayout.LayoutString");
            this.grdThongTinChuaThanhToan.DesignTimeLayout = grdThongTinChuaThanhToan_DesignTimeLayout;
            this.grdThongTinChuaThanhToan.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdThongTinChuaThanhToan.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdThongTinChuaThanhToan.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdThongTinChuaThanhToan.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdThongTinChuaThanhToan.Font = new System.Drawing.Font("Arial", 9F);
            this.grdThongTinChuaThanhToan.FrozenColumns = 10;
            this.grdThongTinChuaThanhToan.GroupByBoxVisible = false;
            this.grdThongTinChuaThanhToan.GroupRowFormatStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
            this.grdThongTinChuaThanhToan.GroupRowFormatStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.grdThongTinChuaThanhToan.GroupTotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdThongTinChuaThanhToan.GroupTotals = Janus.Windows.GridEX.GroupTotals.Always;
            this.grdThongTinChuaThanhToan.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdThongTinChuaThanhToan.Location = new System.Drawing.Point(0, 29);
            this.grdThongTinChuaThanhToan.Name = "grdThongTinChuaThanhToan";
            this.grdThongTinChuaThanhToan.RecordNavigator = true;
            this.grdThongTinChuaThanhToan.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdThongTinChuaThanhToan.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdThongTinChuaThanhToan.Size = new System.Drawing.Size(641, 496);
            this.grdThongTinChuaThanhToan.TabIndex = 117;
            this.grdThongTinChuaThanhToan.TableHeaders = Janus.Windows.GridEX.InheritableBoolean.Default;
            this.grdThongTinChuaThanhToan.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdThongTinChuaThanhToan.TotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdThongTinChuaThanhToan.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdThongTinChuaThanhToan.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdThongTinChuaThanhToan.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // panel3
            // 
            this.panel3.Controls.Add(this.optNgoaitru);
            this.panel3.Controls.Add(this.optNoitru);
            this.panel3.Controls.Add(this.label7);
            this.panel3.Controls.Add(this.optAll);
            this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel3.Location = new System.Drawing.Point(0, 0);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(641, 29);
            this.panel3.TabIndex = 116;
            // 
            // optNgoaitru
            // 
            this.optNgoaitru.AutoSize = true;
            this.optNgoaitru.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.optNgoaitru.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.optNgoaitru.Location = new System.Drawing.Point(351, 6);
            this.optNgoaitru.Name = "optNgoaitru";
            this.optNgoaitru.Size = new System.Drawing.Size(76, 19);
            this.optNgoaitru.TabIndex = 275;
            this.optNgoaitru.Text = "Ngoại trú";
            this.optNgoaitru.UseVisualStyleBackColor = true;
            // 
            // optNoitru
            // 
            this.optNoitru.AutoSize = true;
            this.optNoitru.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.optNoitru.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.optNoitru.Location = new System.Drawing.Point(252, 6);
            this.optNoitru.Name = "optNoitru";
            this.optNoitru.Size = new System.Drawing.Size(62, 19);
            this.optNoitru.TabIndex = 274;
            this.optNoitru.Text = "Nội trú";
            this.optNoitru.UseVisualStyleBackColor = true;
            // 
            // label7
            // 
            this.label7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label7.Location = new System.Drawing.Point(5, 3);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(123, 23);
            this.label7.TabIndex = 273;
            this.label7.Text = "Dữ liệu hiển thị";
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // optAll
            // 
            this.optAll.AutoSize = true;
            this.optAll.Checked = true;
            this.optAll.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.optAll.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.optAll.Location = new System.Drawing.Point(148, 6);
            this.optAll.Name = "optAll";
            this.optAll.Size = new System.Drawing.Size(60, 19);
            this.optAll.TabIndex = 0;
            this.optAll.TabStop = true;
            this.optAll.Text = "Tất cả";
            this.optAll.UseVisualStyleBackColor = true;
            // 
            // uiTabPage1
            // 
            this.uiTabPage1.Controls.Add(this.ucTamung1);
            this.uiTabPage1.Location = new System.Drawing.Point(1, 23);
            this.uiTabPage1.Name = "uiTabPage1";
            this.uiTabPage1.Size = new System.Drawing.Size(641, 525);
            this.uiTabPage1.TabStop = true;
            this.uiTabPage1.Text = "Tạm ứng";
            // 
            // ucTamung1
            // 
            this.ucTamung1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ucTamung1.Location = new System.Drawing.Point(0, 0);
            this.ucTamung1.Name = "ucTamung1";
            this.ucTamung1.Size = new System.Drawing.Size(641, 525);
            this.ucTamung1.TabIndex = 0;
            // 
            // tabPageThongTinDaThanhToan
            // 
            this.tabPageThongTinDaThanhToan.Controls.Add(this.grdThongTinDaThanhToan);
            this.tabPageThongTinDaThanhToan.Controls.Add(this.uiGroupBox7);
            this.tabPageThongTinDaThanhToan.Location = new System.Drawing.Point(1, 23);
            this.tabPageThongTinDaThanhToan.Name = "tabPageThongTinDaThanhToan";
            this.tabPageThongTinDaThanhToan.Size = new System.Drawing.Size(641, 525);
            this.tabPageThongTinDaThanhToan.TabStop = true;
            this.tabPageThongTinDaThanhToan.Text = "Thông tin đã thanh toán (F3)";
            // 
            // grdThongTinDaThanhToan
            // 
            this.grdThongTinDaThanhToan.AlternatingRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            grdThongTinDaThanhToan_DesignTimeLayout.LayoutString = resources.GetString("grdThongTinDaThanhToan_DesignTimeLayout.LayoutString");
            this.grdThongTinDaThanhToan.DesignTimeLayout = grdThongTinDaThanhToan_DesignTimeLayout;
            this.grdThongTinDaThanhToan.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdThongTinDaThanhToan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdThongTinDaThanhToan.GroupByBoxVisible = false;
            this.grdThongTinDaThanhToan.GroupRowFormatStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdThongTinDaThanhToan.GroupRowFormatStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.grdThongTinDaThanhToan.GroupTotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdThongTinDaThanhToan.GroupTotals = Janus.Windows.GridEX.GroupTotals.Always;
            this.grdThongTinDaThanhToan.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdThongTinDaThanhToan.Location = new System.Drawing.Point(0, 0);
            this.grdThongTinDaThanhToan.Name = "grdThongTinDaThanhToan";
            this.grdThongTinDaThanhToan.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdThongTinDaThanhToan.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdThongTinDaThanhToan.Size = new System.Drawing.Size(641, 488);
            this.grdThongTinDaThanhToan.TabIndex = 116;
            this.grdThongTinDaThanhToan.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdThongTinDaThanhToan.TotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdThongTinDaThanhToan.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdThongTinDaThanhToan.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdThongTinDaThanhToan.UseGroupRowSelector = true;
            this.grdThongTinDaThanhToan.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // uiGroupBox7
            // 
            this.uiGroupBox7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.uiGroupBox7.Controls.Add(this.cmdInPhieuChi);
            this.uiGroupBox7.Controls.Add(this.cmdLayThongTinDaThanhToan);
            this.uiGroupBox7.Controls.Add(this.cmdTraLaiTien);
            this.uiGroupBox7.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.uiGroupBox7.Location = new System.Drawing.Point(0, 488);
            this.uiGroupBox7.Name = "uiGroupBox7";
            this.uiGroupBox7.Size = new System.Drawing.Size(641, 37);
            this.uiGroupBox7.TabIndex = 115;
            // 
            // cmdInPhieuChi
            // 
            this.cmdInPhieuChi.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdInPhieuChi.ButtonStyle = Janus.Windows.EditControls.ButtonStyle.Button;
            this.cmdInPhieuChi.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdInPhieuChi.Image = ((System.Drawing.Image)(resources.GetObject("cmdInPhieuChi.Image")));
            this.cmdInPhieuChi.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdInPhieuChi.Location = new System.Drawing.Point(529, 5);
            this.cmdInPhieuChi.Name = "cmdInPhieuChi";
            this.cmdInPhieuChi.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdInPhieuChi.Office2007CustomColor = System.Drawing.Color.WhiteSmoke;
            this.cmdInPhieuChi.Size = new System.Drawing.Size(107, 27);
            this.cmdInPhieuChi.TabIndex = 25;
            this.cmdInPhieuChi.Text = "In phiếu";
            this.toolTip1.SetToolTip(this.cmdInPhieuChi, "Nhấn vào đây để in biên lai của lần thanh toán đang chọn");
            // 
            // cmdLayThongTinDaThanhToan
            // 
            this.cmdLayThongTinDaThanhToan.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdLayThongTinDaThanhToan.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdLayThongTinDaThanhToan.Image = ((System.Drawing.Image)(resources.GetObject("cmdLayThongTinDaThanhToan.Image")));
            this.cmdLayThongTinDaThanhToan.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdLayThongTinDaThanhToan.Location = new System.Drawing.Point(4, 5);
            this.cmdLayThongTinDaThanhToan.Name = "cmdLayThongTinDaThanhToan";
            this.cmdLayThongTinDaThanhToan.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdLayThongTinDaThanhToan.Office2007CustomColor = System.Drawing.Color.LightGreen;
            this.cmdLayThongTinDaThanhToan.Size = new System.Drawing.Size(107, 27);
            this.cmdLayThongTinDaThanhToan.TabIndex = 24;
            this.cmdLayThongTinDaThanhToan.Text = "Refresh";
            this.cmdLayThongTinDaThanhToan.Visible = false;
            // 
            // cmdTraLaiTien
            // 
            this.cmdTraLaiTien.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdTraLaiTien.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdTraLaiTien.Image = ((System.Drawing.Image)(resources.GetObject("cmdTraLaiTien.Image")));
            this.cmdTraLaiTien.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdTraLaiTien.Location = new System.Drawing.Point(416, 5);
            this.cmdTraLaiTien.Name = "cmdTraLaiTien";
            this.cmdTraLaiTien.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdTraLaiTien.Size = new System.Drawing.Size(107, 27);
            this.cmdTraLaiTien.TabIndex = 23;
            this.cmdTraLaiTien.Text = "Trả lại tiền";
            // 
            // TabpageCauhinh
            // 
            this.TabpageCauhinh.Controls.Add(this.cmdPrintProperties);
            this.TabpageCauhinh.Controls.Add(this.cmdCauHinh);
            this.TabpageCauhinh.Controls.Add(this.chkPreviewHoadon);
            this.TabpageCauhinh.Controls.Add(this.chkPreviewInBienlai);
            this.TabpageCauhinh.Controls.Add(this.chkHienthiDichvusaukhinhannutthanhtoan);
            this.TabpageCauhinh.Controls.Add(this.cmdSaveforNext);
            this.TabpageCauhinh.Controls.Add(this.chkPreviewInphoiBHYT);
            this.TabpageCauhinh.Controls.Add(this.vbLine4);
            this.TabpageCauhinh.Controls.Add(this.chkTudonginhoadonsauthanhtoan);
            this.TabpageCauhinh.Controls.Add(this.cbomayinhoadon);
            this.TabpageCauhinh.Controls.Add(this.label21);
            this.TabpageCauhinh.Controls.Add(this.chkHoixacnhanthanhtoan);
            this.TabpageCauhinh.Controls.Add(this.chkHoixacnhanhuythanhtoan);
            this.TabpageCauhinh.Controls.Add(this.chkViewtruockhihuythanhtoan);
            this.TabpageCauhinh.Controls.Add(this.vbLine3);
            this.TabpageCauhinh.Controls.Add(this.vbLine1);
            this.TabpageCauhinh.Controls.Add(this.cmdLuuLai);
            this.TabpageCauhinh.Controls.Add(this.chkChanBenhNhan);
            this.TabpageCauhinh.Controls.Add(this.lblwarningMsg);
            this.TabpageCauhinh.Controls.Add(this.cmdxoa);
            this.TabpageCauhinh.Controls.Add(this.cbomayinphoiBHYT);
            this.TabpageCauhinh.Controls.Add(this.label48);
            this.TabpageCauhinh.Controls.Add(this.label49);
            this.TabpageCauhinh.Controls.Add(this.cmdsave);
            this.TabpageCauhinh.Controls.Add(this.txtCanhbao);
            this.TabpageCauhinh.Controls.Add(this.vbLine2);
            this.TabpageCauhinh.Location = new System.Drawing.Point(1, 23);
            this.TabpageCauhinh.Name = "TabpageCauhinh";
            this.TabpageCauhinh.Size = new System.Drawing.Size(641, 525);
            this.TabpageCauhinh.TabStop = true;
            this.TabpageCauhinh.Text = "Cấu hình";
            // 
            // cmdPrintProperties
            // 
            this.cmdPrintProperties.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdPrintProperties.Image = ((System.Drawing.Image)(resources.GetObject("cmdPrintProperties.Image")));
            this.cmdPrintProperties.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdPrintProperties.Location = new System.Drawing.Point(519, 495);
            this.cmdPrintProperties.Name = "cmdPrintProperties";
            this.cmdPrintProperties.Size = new System.Drawing.Size(113, 27);
            this.cmdPrintProperties.TabIndex = 388;
            this.cmdPrintProperties.Text = "Cấu hình in";
            // 
            // chkPreviewHoadon
            // 
            this.chkPreviewHoadon.BackColor = System.Drawing.Color.Transparent;
            this.chkPreviewHoadon.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkPreviewHoadon.Location = new System.Drawing.Point(301, 113);
            this.chkPreviewHoadon.Name = "chkPreviewHoadon";
            this.chkPreviewHoadon.Size = new System.Drawing.Size(174, 23);
            this.chkPreviewHoadon.TabIndex = 357;
            this.chkPreviewHoadon.Text = "Xem trước khi in hóa đơn?";
            // 
            // chkPreviewInBienlai
            // 
            this.chkPreviewInBienlai.BackColor = System.Drawing.Color.Transparent;
            this.chkPreviewInBienlai.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkPreviewInBienlai.Location = new System.Drawing.Point(481, 113);
            this.chkPreviewInBienlai.Name = "chkPreviewInBienlai";
            this.chkPreviewInBienlai.Size = new System.Drawing.Size(155, 23);
            this.chkPreviewInBienlai.TabIndex = 374;
            this.chkPreviewInBienlai.Text = "Xem trước khi in biên lai?";
            // 
            // chkHienthiDichvusaukhinhannutthanhtoan
            // 
            this.chkHienthiDichvusaukhinhannutthanhtoan.BackColor = System.Drawing.Color.Transparent;
            this.chkHienthiDichvusaukhinhannutthanhtoan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkHienthiDichvusaukhinhannutthanhtoan.Location = new System.Drawing.Point(118, 162);
            this.chkHienthiDichvusaukhinhannutthanhtoan.Name = "chkHienthiDichvusaukhinhannutthanhtoan";
            this.chkHienthiDichvusaukhinhannutthanhtoan.Size = new System.Drawing.Size(489, 23);
            this.chkHienthiDichvusaukhinhannutthanhtoan.TabIndex = 373;
            this.chkHienthiDichvusaukhinhannutthanhtoan.Text = "Hiển thị danh sách các dịch vụ vừa được thanh toán?";
            this.toolTip1.SetToolTip(this.chkHienthiDichvusaukhinhannutthanhtoan, "Chọn mục này nếu muốn sau khi nhấn nút thanh toán, hệ thống sẽ hiển thị danh sách" +
        " các dịch vụ vừa được thanh toán");
            // 
            // cmdSaveforNext
            // 
            this.cmdSaveforNext.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdSaveforNext.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdSaveforNext.Image = ((System.Drawing.Image)(resources.GetObject("cmdSaveforNext.Image")));
            this.cmdSaveforNext.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdSaveforNext.Location = new System.Drawing.Point(550, 382);
            this.cmdSaveforNext.Name = "cmdSaveforNext";
            this.cmdSaveforNext.Office2007ColorScheme = Janus.Windows.UI.Office2007ColorScheme.Custom;
            this.cmdSaveforNext.Office2007CustomColor = System.Drawing.Color.White;
            this.cmdSaveforNext.Size = new System.Drawing.Size(82, 27);
            this.cmdSaveforNext.TabIndex = 372;
            this.cmdSaveforNext.Text = "Lưu";
            this.cmdSaveforNext.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
            // 
            // chkPreviewInphoiBHYT
            // 
            this.chkPreviewInphoiBHYT.BackColor = System.Drawing.Color.Transparent;
            this.chkPreviewInphoiBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkPreviewInphoiBHYT.Location = new System.Drawing.Point(120, 113);
            this.chkPreviewInphoiBHYT.Name = "chkPreviewInphoiBHYT";
            this.chkPreviewInphoiBHYT.Size = new System.Drawing.Size(197, 23);
            this.chkPreviewInphoiBHYT.TabIndex = 356;
            this.chkPreviewInphoiBHYT.Text = "Xem trước khi in phôi BHYT?";
            // 
            // vbLine4
            // 
            this.vbLine4._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.vbLine4.BackColor = System.Drawing.Color.Transparent;
            this.vbLine4.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine4.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine4.Location = new System.Drawing.Point(4, 270);
            this.vbLine4.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine4.Name = "vbLine4";
            this.vbLine4.Size = new System.Drawing.Size(637, 21);
            this.vbLine4.TabIndex = 355;
            this.vbLine4.TabStop = false;
            this.vbLine4.YourText = "Cấu hình hủy thanh toán";
            // 
            // chkTudonginhoadonsauthanhtoan
            // 
            this.chkTudonginhoadonsauthanhtoan.BackColor = System.Drawing.Color.Transparent;
            this.chkTudonginhoadonsauthanhtoan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkTudonginhoadonsauthanhtoan.Location = new System.Drawing.Point(118, 210);
            this.chkTudonginhoadonsauthanhtoan.Name = "chkTudonginhoadonsauthanhtoan";
            this.chkTudonginhoadonsauthanhtoan.Size = new System.Drawing.Size(489, 23);
            this.chkTudonginhoadonsauthanhtoan.TabIndex = 354;
            this.chkTudonginhoadonsauthanhtoan.Text = "Tự động in Hóa đơn(Biên lai thu tiền) ngay sau khi thực hiện thanh toán?";
            // 
            // cbomayinhoadon
            // 
            this.cbomayinhoadon.FormattingEnabled = true;
            this.cbomayinhoadon.Location = new System.Drawing.Point(442, 84);
            this.cbomayinhoadon.Name = "cbomayinhoadon";
            this.cbomayinhoadon.Size = new System.Drawing.Size(197, 23);
            this.cbomayinhoadon.TabIndex = 352;
            // 
            // label21
            // 
            this.label21.BackColor = System.Drawing.Color.Transparent;
            this.label21.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label21.Location = new System.Drawing.Point(326, 83);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(110, 23);
            this.label21.TabIndex = 353;
            this.label21.Text = "Máy in hóa đơn:";
            this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // chkHoixacnhanthanhtoan
            // 
            this.chkHoixacnhanthanhtoan.BackColor = System.Drawing.Color.Transparent;
            this.chkHoixacnhanthanhtoan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkHoixacnhanthanhtoan.Location = new System.Drawing.Point(118, 187);
            this.chkHoixacnhanthanhtoan.Name = "chkHoixacnhanthanhtoan";
            this.chkHoixacnhanthanhtoan.Size = new System.Drawing.Size(489, 23);
            this.chkHoixacnhanthanhtoan.TabIndex = 351;
            this.chkHoixacnhanthanhtoan.Text = "Hỏi xác nhận trước khi thực hiện thanh toán?";
            this.toolTip1.SetToolTip(this.chkHoixacnhanthanhtoan, "Nếu chọn mục này, hệ thống sẽ hiển thị hỏi xác nhận khi bạn nhấn nút thanh toán");
            // 
            // chkHoixacnhanhuythanhtoan
            // 
            this.chkHoixacnhanhuythanhtoan.BackColor = System.Drawing.Color.Transparent;
            this.chkHoixacnhanhuythanhtoan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkHoixacnhanhuythanhtoan.Location = new System.Drawing.Point(383, 298);
            this.chkHoixacnhanhuythanhtoan.Name = "chkHoixacnhanhuythanhtoan";
            this.chkHoixacnhanhuythanhtoan.Size = new System.Drawing.Size(245, 23);
            this.chkHoixacnhanhuythanhtoan.TabIndex = 350;
            this.chkHoixacnhanhuythanhtoan.Text = "Hỏi xác nhận trước khi hủy thanh toán?";
            this.toolTip1.SetToolTip(this.chkHoixacnhanhuythanhtoan, "Nếu chọn mục này, hệ thống luôn hiển thị bước hỏi xác nhận khi bạn thực hiện tính" +
        " năng hủy thanh toán");
            // 
            // chkViewtruockhihuythanhtoan
            // 
            this.chkViewtruockhihuythanhtoan.BackColor = System.Drawing.Color.Transparent;
            this.chkViewtruockhihuythanhtoan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkViewtruockhihuythanhtoan.Location = new System.Drawing.Point(118, 298);
            this.chkViewtruockhihuythanhtoan.Name = "chkViewtruockhihuythanhtoan";
            this.chkViewtruockhihuythanhtoan.Size = new System.Drawing.Size(259, 23);
            this.chkViewtruockhihuythanhtoan.TabIndex = 349;
            this.chkViewtruockhihuythanhtoan.Text = "Hiển thị thông tin thanh toán trước khi hủy?";
            this.toolTip1.SetToolTip(this.chkViewtruockhihuythanhtoan, "Khi chọn mục này, nếu bạn hủy thanh toán. Hệ thống sẽ hiển thị màn hình chi tiết " +
        "của lần thanh toán đó cho bạn xem");
            // 
            // vbLine3
            // 
            this.vbLine3._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.vbLine3.BackColor = System.Drawing.Color.Transparent;
            this.vbLine3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine3.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine3.Location = new System.Drawing.Point(2, 139);
            this.vbLine3.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine3.Name = "vbLine3";
            this.vbLine3.Size = new System.Drawing.Size(637, 21);
            this.vbLine3.TabIndex = 348;
            this.vbLine3.TabStop = false;
            this.vbLine3.YourText = "Cấu hình thanh toán";
            // 
            // vbLine1
            // 
            this.vbLine1._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.vbLine1.BackColor = System.Drawing.Color.Transparent;
            this.vbLine1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine1.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine1.Location = new System.Drawing.Point(5, 4);
            this.vbLine1.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine1.Name = "vbLine1";
            this.vbLine1.Size = new System.Drawing.Size(637, 21);
            this.vbLine1.TabIndex = 346;
            this.vbLine1.TabStop = false;
            this.vbLine1.YourText = "Nhắn bệnh nhân";
            // 
            // cmdLuuLai
            // 
            this.cmdLuuLai.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdLuuLai.Location = new System.Drawing.Point(69, 448);
            this.cmdLuuLai.Name = "cmdLuuLai";
            this.cmdLuuLai.Size = new System.Drawing.Size(23, 23);
            this.cmdLuuLai.TabIndex = 344;
            this.cmdLuuLai.Text = "&Lưu lại";
            this.cmdLuuLai.Visible = false;
            // 
            // chkChanBenhNhan
            // 
            this.chkChanBenhNhan.BackColor = System.Drawing.Color.Transparent;
            this.chkChanBenhNhan.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkChanBenhNhan.Location = new System.Drawing.Point(17, 450);
            this.chkChanBenhNhan.Name = "chkChanBenhNhan";
            this.chkChanBenhNhan.Size = new System.Drawing.Size(41, 23);
            this.chkChanBenhNhan.TabIndex = 343;
            this.chkChanBenhNhan.Text = "&Khóa bệnh nhân lại";
            this.chkChanBenhNhan.Visible = false;
            // 
            // lblwarningMsg
            // 
            this.lblwarningMsg.AutoSize = true;
            this.lblwarningMsg.BackColor = System.Drawing.Color.Transparent;
            this.lblwarningMsg.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblwarningMsg.Location = new System.Drawing.Point(108, 52);
            this.lblwarningMsg.Name = "lblwarningMsg";
            this.lblwarningMsg.Size = new System.Drawing.Size(0, 13);
            this.lblwarningMsg.TabIndex = 339;
            // 
            // cmdxoa
            // 
            this.cmdxoa.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdxoa.Location = new System.Drawing.Point(534, 26);
            this.cmdxoa.Name = "cmdxoa";
            this.cmdxoa.Size = new System.Drawing.Size(75, 23);
            this.cmdxoa.TabIndex = 342;
            this.cmdxoa.Text = "Xóa";
            this.cmdxoa.UseVisualStyleBackColor = true;
            // 
            // cbomayinphoiBHYT
            // 
            this.cbomayinphoiBHYT.FormattingEnabled = true;
            this.cbomayinphoiBHYT.Location = new System.Drawing.Point(120, 84);
            this.cbomayinphoiBHYT.Name = "cbomayinphoiBHYT";
            this.cbomayinphoiBHYT.Size = new System.Drawing.Size(197, 23);
            this.cbomayinphoiBHYT.TabIndex = 340;
            // 
            // label48
            // 
            this.label48.BackColor = System.Drawing.Color.Transparent;
            this.label48.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label48.Location = new System.Drawing.Point(4, 26);
            this.label48.Name = "label48";
            this.label48.Size = new System.Drawing.Size(110, 23);
            this.label48.TabIndex = 339;
            this.label48.Text = "Nhắn Bệnh nhân:";
            this.label48.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label49
            // 
            this.label49.BackColor = System.Drawing.Color.Transparent;
            this.label49.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label49.Location = new System.Drawing.Point(4, 85);
            this.label49.Name = "label49";
            this.label49.Size = new System.Drawing.Size(110, 23);
            this.label49.TabIndex = 341;
            this.label49.Text = "Máy in phôi BHYT";
            this.label49.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cmdsave
            // 
            this.cmdsave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdsave.Location = new System.Drawing.Point(453, 26);
            this.cmdsave.Name = "cmdsave";
            this.cmdsave.Size = new System.Drawing.Size(75, 23);
            this.cmdsave.TabIndex = 341;
            this.cmdsave.Text = "Lưu";
            this.cmdsave.UseVisualStyleBackColor = true;
            // 
            // txtCanhbao
            // 
            this.txtCanhbao.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtCanhbao.ButtonFont = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtCanhbao.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtCanhbao.Location = new System.Drawing.Point(120, 26);
            this.txtCanhbao.MaxLength = 2500;
            this.txtCanhbao.Name = "txtCanhbao";
            this.txtCanhbao.Size = new System.Drawing.Size(327, 23);
            this.txtCanhbao.TabIndex = 340;
            this.txtCanhbao.TextAlignment = Janus.Windows.GridEX.TextAlignment.Near;
            this.txtCanhbao.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
            // 
            // vbLine2
            // 
            this.vbLine2._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.vbLine2.BackColor = System.Drawing.Color.Transparent;
            this.vbLine2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine2.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine2.Location = new System.Drawing.Point(5, 58);
            this.vbLine2.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine2.Name = "vbLine2";
            this.vbLine2.Size = new System.Drawing.Size(637, 21);
            this.vbLine2.TabIndex = 347;
            this.vbLine2.TabStop = false;
            this.vbLine2.YourText = "Cấu hình in ấn";
            // 
            // toolTip1
            // 
            this.toolTip1.IsBalloon = true;
            this.toolTip1.ToolTipTitle = "Trợ giúp nhanh:";
            // 
            // frm_THANHTOAN_NOITRU
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
            this.ClientSize = new System.Drawing.Size(1008, 730);
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.uiStatusBar1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frm_THANHTOAN_NOITRU";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Thanh toán khám chữa bệnh ngoại trú";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
            this.panel1.ResumeLayout(false);
            this.pnlThongtinBN.ResumeLayout(false);
            this.pnlThongtinBN.PerformLayout();
            this.ctxUpdatePrice.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
            this.pnlTimkiem.ResumeLayout(false);
            this.pnlTimkiem.PerformLayout();
            this.panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.tabThongTinThanhToan)).EndInit();
            this.tabThongTinThanhToan.ResumeLayout(false);
            this.tabPagePayment.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdPayment)).EndInit();
            this.ctxBienlai.ResumeLayout(false);
            this.tabPagePhieuChi.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdPhieuChi)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tabThongTinCanThanhToan)).EndInit();
            this.tabThongTinCanThanhToan.ResumeLayout(false);
            this.tabpageThongTinThanhToan.ResumeLayout(false);
            this.panel4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiTabHoadon_chiphi)).EndInit();
            this.uiTabHoadon_chiphi.ResumeLayout(false);
            this.tabpageKCB.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdDSKCB)).EndInit();
            this.pnlSeri.ResumeLayout(false);
            this.pnlSeri.PerformLayout();
            this.tabpageHoaDon.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gpThongTinHoaDon)).EndInit();
            this.gpThongTinHoaDon.ResumeLayout(false);
            this.gpThongTinHoaDon.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdHoaDonCapPhat)).EndInit();
            this.panel5.ResumeLayout(false);
            this.pnlBHYT.ResumeLayout(false);
            this.pnlSuangayinphoi.ResumeLayout(false);
            this.pnlSuangayinphoi.PerformLayout();
            this.pnlThongtintien.ResumeLayout(false);
            this.pnlThongtintien.PerformLayout();
            this.ctxHuyChietkhau.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grpChucNangThanhToan)).EndInit();
            this.grpChucNangThanhToan.ResumeLayout(false);
            this.flowLayoutPanel1.ResumeLayout(false);
            this.tabPageThongTinChiTietThanhToan.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdThongTinChuaThanhToan)).EndInit();
            this.panel3.ResumeLayout(false);
            this.panel3.PerformLayout();
            this.uiTabPage1.ResumeLayout(false);
            this.tabPageThongTinDaThanhToan.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdThongTinDaThanhToan)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox7)).EndInit();
            this.uiGroupBox7.ResumeLayout(false);
            this.TabpageCauhinh.ResumeLayout(false);
            this.TabpageCauhinh.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();
     System.ComponentModel.ComponentResourceManager resources          = new System.ComponentModel.ComponentResourceManager(typeof(frm_Sochitietvatlieu));
     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.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.EditControls.UIComboBoxItem      uiComboBoxItem10   = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem11   = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem12   = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem13   = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem14   = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem15   = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem16   = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.GridEX.GridEXLayout grdListChitiet_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     this.panel1           = new System.Windows.Forms.Panel();
     this.baocaO_TIEUDE1   = new VNS.HIS.UI.FORMs.BAOCAO.BHYT.UserControls.BAOCAO_TIEUDE();
     this.label1           = new System.Windows.Forms.Label();
     this.dtNgayIn         = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.cmdBaoCao        = new Janus.Windows.EditControls.UIButton();
     this.cmdExit          = new Janus.Windows.EditControls.UIButton();
     this.uiGroupBox1      = new Janus.Windows.EditControls.UIGroupBox();
     this.optNgay          = new System.Windows.Forms.RadioButton();
     this.dtpNam           = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.optNam           = new System.Windows.Forms.RadioButton();
     this.cboQuy           = new Janus.Windows.EditControls.UIComboBox();
     this.optQuy           = new System.Windows.Forms.RadioButton();
     this.cboThang         = new Janus.Windows.EditControls.UIComboBox();
     this.optThang         = new System.Windows.Forms.RadioButton();
     this.label2           = new System.Windows.Forms.Label();
     this.lblLoaikho       = new System.Windows.Forms.Label();
     this.panel2           = new System.Windows.Forms.Panel();
     this.grdListChitiet   = new Janus.Windows.GridEX.GridEX();
     this.txtthuoc         = new VNS.HIS.UCs.AutoCompleteTextbox_Thuoc();
     this.txtLoaithuoc     = new VNS.HIS.UCs.AutoCompleteTextbox();
     this.label6           = new System.Windows.Forms.Label();
     this.label7           = new System.Windows.Forms.Label();
     this.chkBiendong      = new Janus.Windows.EditControls.UICheckBox();
     this.label3           = new System.Windows.Forms.Label();
     this.cboKho           = new Janus.Windows.EditControls.UIComboBox();
     this.dtToDate         = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtFromDate       = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.cmdExportToExcel = new Janus.Windows.EditControls.UIButton();
     this.saveFileDialog1  = new System.Windows.Forms.SaveFileDialog();
     this.gridEXExporter1  = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
     this.printDialog1     = new System.Windows.Forms.PrintDialog();
     this.toolTip1         = new System.Windows.Forms.ToolTip(this.components);
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
     this.uiGroupBox1.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdListChitiet)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.Control;
     this.panel1.Controls.Add(this.baocaO_TIEUDE1);
     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(779, 66);
     this.panel1.TabIndex = 1;
     //
     // baocaO_TIEUDE1
     //
     this.baocaO_TIEUDE1.BackColor         = System.Drawing.SystemColors.Control;
     this.baocaO_TIEUDE1.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.baocaO_TIEUDE1.Location          = new System.Drawing.Point(0, 0);
     this.baocaO_TIEUDE1.MA_BAOCAO         = "THUOC_SOCHITIETVATLIEU";
     this.baocaO_TIEUDE1.Name              = "baocaO_TIEUDE1";
     this.baocaO_TIEUDE1.Phimtat           = "Bạn có thể sử dụng phím tắt";
     this.baocaO_TIEUDE1.PicImg            = ((System.Drawing.Image)(resources.GetObject("baocaO_TIEUDE1.PicImg")));
     this.baocaO_TIEUDE1.ShortcutAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.baocaO_TIEUDE1.ShortcutFont      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.baocaO_TIEUDE1.showHelp          = false;
     this.baocaO_TIEUDE1.Size              = new System.Drawing.Size(779, 66);
     this.baocaO_TIEUDE1.TabIndex          = 1;
     this.baocaO_TIEUDE1.TIEUDE            = "SỔ CHI TIẾT VẬT LIỆU";
     this.baocaO_TIEUDE1.TitleFont         = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     //
     // label1
     //
     this.label1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     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.Location = new System.Drawing.Point(6, 636);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(51, 15);
     this.label1.TabIndex = 7;
     this.label1.Text     = "Ngày in ";
     //
     // dtNgayIn
     //
     this.dtNgayIn.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.dtNgayIn.CustomFormat = "dd/MM/yyyy";
     this.dtNgayIn.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtNgayIn.DropDownCalendar.Name = "";
     this.dtNgayIn.Font       = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtNgayIn.Location   = new System.Drawing.Point(69, 634);
     this.dtNgayIn.Name       = "dtNgayIn";
     this.dtNgayIn.ShowUpDown = true;
     this.dtNgayIn.Size       = new System.Drawing.Size(134, 21);
     this.dtNgayIn.TabIndex   = 13;
     //
     // cmdBaoCao
     //
     this.cmdBaoCao.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdBaoCao.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdBaoCao.Image     = ((System.Drawing.Image)(resources.GetObject("cmdBaoCao.Image")));
     this.cmdBaoCao.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdBaoCao.Location  = new System.Drawing.Point(513, 628);
     this.cmdBaoCao.Name      = "cmdBaoCao";
     this.cmdBaoCao.Size      = new System.Drawing.Size(124, 30);
     this.cmdBaoCao.TabIndex  = 16;
     this.cmdBaoCao.Text      = "In báo cáo";
     this.cmdBaoCao.Click    += new System.EventHandler(this.cmdBaoCao_Click_1);
     //
     // cmdExit
     //
     this.cmdExit.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     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.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdExit.Location  = new System.Drawing.Point(643, 628);
     this.cmdExit.Name      = "cmdExit";
     this.cmdExit.Size      = new System.Drawing.Size(124, 30);
     this.cmdExit.TabIndex  = 18;
     this.cmdExit.Text      = "Thoát ";
     //
     // uiGroupBox1
     //
     this.uiGroupBox1.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.uiGroupBox1.Controls.Add(this.optNgay);
     this.uiGroupBox1.Controls.Add(this.dtpNam);
     this.uiGroupBox1.Controls.Add(this.optNam);
     this.uiGroupBox1.Controls.Add(this.cboQuy);
     this.uiGroupBox1.Controls.Add(this.optQuy);
     this.uiGroupBox1.Controls.Add(this.cboThang);
     this.uiGroupBox1.Controls.Add(this.optThang);
     this.uiGroupBox1.Controls.Add(this.label2);
     this.uiGroupBox1.Controls.Add(this.lblLoaikho);
     this.uiGroupBox1.Controls.Add(this.panel2);
     this.uiGroupBox1.Controls.Add(this.txtthuoc);
     this.uiGroupBox1.Controls.Add(this.txtLoaithuoc);
     this.uiGroupBox1.Controls.Add(this.label6);
     this.uiGroupBox1.Controls.Add(this.label7);
     this.uiGroupBox1.Controls.Add(this.chkBiendong);
     this.uiGroupBox1.Controls.Add(this.label3);
     this.uiGroupBox1.Controls.Add(this.cboKho);
     this.uiGroupBox1.Controls.Add(this.dtToDate);
     this.uiGroupBox1.Controls.Add(this.dtFromDate);
     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, 64);
     this.uiGroupBox1.Name     = "uiGroupBox1";
     this.uiGroupBox1.Size     = new System.Drawing.Size(779, 555);
     this.uiGroupBox1.TabIndex = 0;
     this.uiGroupBox1.Text     = "Thông tin báo cáo";
     //
     // optNgay
     //
     this.optNgay.AutoSize = true;
     this.optNgay.Location = new System.Drawing.Point(39, 106);
     this.optNgay.Name     = "optNgay";
     this.optNgay.Size     = new System.Drawing.Size(72, 19);
     this.optNgay.TabIndex = 8;
     this.optNgay.Text     = "Từ ngày:";
     this.optNgay.UseVisualStyleBackColor = true;
     //
     // dtpNam
     //
     this.dtpNam.CustomFormat = "yyyy ";
     this.dtpNam.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtpNam.DropDownCalendar.Name = "";
     this.dtpNam.Font       = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtpNam.Location   = new System.Drawing.Point(609, 77);
     this.dtpNam.Name       = "dtpNam";
     this.dtpNam.ShowUpDown = true;
     this.dtpNam.Size       = new System.Drawing.Size(113, 21);
     this.dtpNam.TabIndex   = 7;
     this.dtpNam.Value      = new System.DateTime(2014, 9, 11, 0, 0, 0, 0);
     //
     // optNam
     //
     this.optNam.AutoSize = true;
     this.optNam.Location = new System.Drawing.Point(517, 80);
     this.optNam.Name     = "optNam";
     this.optNam.Size     = new System.Drawing.Size(86, 19);
     this.optNam.TabIndex = 6;
     this.optNam.Text     = "Theo Năm:";
     this.optNam.UseVisualStyleBackColor = true;
     //
     // cboQuy
     //
     this.cboQuy.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              = "Quý 1";
     uiComboBoxItem1.Value             = ((byte)(1));
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator       = false;
     uiComboBoxItem2.Text              = "Quý 2";
     uiComboBoxItem2.Value             = ((byte)(2));
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator       = false;
     uiComboBoxItem3.Text              = "Quý 3";
     uiComboBoxItem3.Value             = ((byte)(3));
     uiComboBoxItem4.FormatStyle.Alpha = 0;
     uiComboBoxItem4.IsSeparator       = false;
     uiComboBoxItem4.Text              = "Quý 4";
     uiComboBoxItem4.Value             = ((byte)(4));
     this.cboQuy.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2,
         uiComboBoxItem3,
         uiComboBoxItem4
     });
     this.cboQuy.Location = new System.Drawing.Point(372, 79);
     this.cboQuy.Name     = "cboQuy";
     this.cboQuy.Size     = new System.Drawing.Size(139, 21);
     this.cboQuy.TabIndex = 5;
     this.cboQuy.Text     = "Chọn Quý";
     //
     // optQuy
     //
     this.optQuy.AutoSize = true;
     this.optQuy.Location = new System.Drawing.Point(286, 79);
     this.optQuy.Name     = "optQuy";
     this.optQuy.Size     = new System.Drawing.Size(80, 19);
     this.optQuy.TabIndex = 4;
     this.optQuy.Text     = "Theo Quý:";
     this.optQuy.UseVisualStyleBackColor = true;
     //
     // cboThang
     //
     this.cboThang.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     uiComboBoxItem5.FormatStyle.Alpha = 0;
     uiComboBoxItem5.IsSeparator       = false;
     uiComboBoxItem5.Text               = "Tháng 1";
     uiComboBoxItem5.Value              = "1";
     uiComboBoxItem6.FormatStyle.Alpha  = 0;
     uiComboBoxItem6.IsSeparator        = false;
     uiComboBoxItem6.Text               = "Tháng 2";
     uiComboBoxItem6.Value              = "2";
     uiComboBoxItem7.FormatStyle.Alpha  = 0;
     uiComboBoxItem7.IsSeparator        = false;
     uiComboBoxItem7.Text               = "Tháng 3";
     uiComboBoxItem7.Value              = "3";
     uiComboBoxItem8.FormatStyle.Alpha  = 0;
     uiComboBoxItem8.IsSeparator        = false;
     uiComboBoxItem8.Text               = "Tháng 4";
     uiComboBoxItem8.Value              = "4";
     uiComboBoxItem9.FormatStyle.Alpha  = 0;
     uiComboBoxItem9.IsSeparator        = false;
     uiComboBoxItem9.Text               = "Tháng 5";
     uiComboBoxItem9.Value              = "5";
     uiComboBoxItem10.FormatStyle.Alpha = 0;
     uiComboBoxItem10.IsSeparator       = false;
     uiComboBoxItem10.Text              = "Tháng 6";
     uiComboBoxItem10.Value             = "6";
     uiComboBoxItem11.FormatStyle.Alpha = 0;
     uiComboBoxItem11.IsSeparator       = false;
     uiComboBoxItem11.Text              = "Tháng 7";
     uiComboBoxItem11.Value             = "7";
     uiComboBoxItem12.FormatStyle.Alpha = 0;
     uiComboBoxItem12.IsSeparator       = false;
     uiComboBoxItem12.Text              = "Tháng 8";
     uiComboBoxItem12.Value             = "8";
     uiComboBoxItem13.FormatStyle.Alpha = 0;
     uiComboBoxItem13.IsSeparator       = false;
     uiComboBoxItem13.Text              = "Tháng 9";
     uiComboBoxItem13.Value             = "9";
     uiComboBoxItem14.FormatStyle.Alpha = 0;
     uiComboBoxItem14.IsSeparator       = false;
     uiComboBoxItem14.Text              = "Tháng 10";
     uiComboBoxItem14.Value             = "10";
     uiComboBoxItem15.FormatStyle.Alpha = 0;
     uiComboBoxItem15.IsSeparator       = false;
     uiComboBoxItem15.Text              = "Tháng 11";
     uiComboBoxItem15.Value             = "11";
     uiComboBoxItem16.FormatStyle.Alpha = 0;
     uiComboBoxItem16.IsSeparator       = false;
     uiComboBoxItem16.Text              = "Tháng 12";
     uiComboBoxItem16.Value             = "12";
     this.cboThang.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem5,
         uiComboBoxItem6,
         uiComboBoxItem7,
         uiComboBoxItem8,
         uiComboBoxItem9,
         uiComboBoxItem10,
         uiComboBoxItem11,
         uiComboBoxItem12,
         uiComboBoxItem13,
         uiComboBoxItem14,
         uiComboBoxItem15,
         uiComboBoxItem16
     });
     this.cboThang.Location = new System.Drawing.Point(141, 79);
     this.cboThang.Name     = "cboThang";
     this.cboThang.Size     = new System.Drawing.Size(139, 21);
     this.cboThang.TabIndex = 3;
     this.cboThang.Text     = "Chọn tháng";
     //
     // optThang
     //
     this.optThang.AutoSize = true;
     this.optThang.Checked  = true;
     this.optThang.Location = new System.Drawing.Point(39, 79);
     this.optThang.Name     = "optThang";
     this.optThang.Size     = new System.Drawing.Size(94, 19);
     this.optThang.TabIndex = 2;
     this.optThang.TabStop  = true;
     this.optThang.Text     = "Theo Tháng:";
     this.optThang.UseVisualStyleBackColor = true;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(314, 106);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(52, 20);
     this.label2.TabIndex  = 40;
     this.label2.Text      = "đến";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblLoaikho
     //
     this.lblLoaikho.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLoaikho.ForeColor = System.Drawing.Color.Navy;
     this.lblLoaikho.Location  = new System.Drawing.Point(517, 28);
     this.lblLoaikho.Name      = "lblLoaikho";
     this.lblLoaikho.Size      = new System.Drawing.Size(238, 20);
     this.lblLoaikho.TabIndex  = 39;
     this.lblLoaikho.Text      = "(Kho chẵn)";
     this.lblLoaikho.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // panel2
     //
     this.panel2.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.panel2.Controls.Add(this.grdListChitiet);
     this.panel2.Location = new System.Drawing.Point(6, 160);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(769, 388);
     this.panel2.TabIndex = 37;
     //
     // grdListChitiet
     //
     this.grdListChitiet.AlternatingColors        = true;
     grdListChitiet_DesignTimeLayout.LayoutString = resources.GetString("grdListChitiet_DesignTimeLayout.LayoutString");
     this.grdListChitiet.DesignTimeLayout         = grdListChitiet_DesignTimeLayout;
     this.grdListChitiet.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdListChitiet.GroupByBoxVisible = false;
     this.grdListChitiet.HideSelection     = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdListChitiet.Location          = new System.Drawing.Point(0, 0);
     this.grdListChitiet.Name             = "grdListChitiet";
     this.grdListChitiet.RowHeaders       = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdListChitiet.Size             = new System.Drawing.Size(769, 388);
     this.grdListChitiet.TabIndex         = 12;
     this.grdListChitiet.TabStop          = false;
     this.grdListChitiet.TotalRow         = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdListChitiet.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdListChitiet.VisualStyle      = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // txtthuoc
     //
     this.txtthuoc._backcolor           = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.txtthuoc._Font                = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtthuoc.AllowedSelectPrice   = false;
     this.txtthuoc.AutoCompleteList     = ((System.Collections.Generic.List <string>)(resources.GetObject("txtthuoc.AutoCompleteList")));
     this.txtthuoc.BorderStyle          = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtthuoc.CaseSensitive        = false;
     this.txtthuoc.CompareNoID          = true;
     this.txtthuoc.DefaultCode          = "-1";
     this.txtthuoc.DefaultID            = "-1";
     this.txtthuoc.Drug_ID              = null;
     this.txtthuoc.ExtraWidth           = 0;
     this.txtthuoc.ExtraWidth_Pre       = 0;
     this.txtthuoc.FillValueAfterSelect = false;
     this.txtthuoc.GridView             = false;
     this.txtthuoc.Location             = new System.Drawing.Point(141, 54);
     this.txtthuoc.MaxHeight            = -1;
     this.txtthuoc.MinTypedCharacters   = 2;
     this.txtthuoc.MyCode               = "-1";
     this.txtthuoc.MyID                     = "-1";
     this.txtthuoc.MyText                   = "";
     this.txtthuoc.Name                     = "txtthuoc";
     this.txtthuoc.RaiseEvent               = false;
     this.txtthuoc.RaiseEventEnter          = false;
     this.txtthuoc.RaiseEventEnterWhenEmpty = false;
     this.txtthuoc.SelectedIndex            = -1;
     this.txtthuoc.Size                     = new System.Drawing.Size(370, 21);
     this.txtthuoc.splitChar                = '@';
     this.txtthuoc.splitCharIDAndCode       = '#';
     this.txtthuoc.TabIndex                 = 1;
     this.txtthuoc.TakeCode                 = false;
     this.toolTip1.SetToolTip(this.txtthuoc, "Chọn thuốc cần báo cáo");
     this.txtthuoc.txtMyCode      = null;
     this.txtthuoc.txtMyCode_Edit = null;
     this.txtthuoc.txtMyID        = null;
     this.txtthuoc.txtMyID_Edit   = null;
     this.txtthuoc.txtMyName      = null;
     this.txtthuoc.txtMyName_Edit = null;
     this.txtthuoc.txtNext        = null;
     //
     // 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.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtLoaithuoc._TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     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           = 0;
     this.txtLoaithuoc.FillValueAfterSelect = false;
     this.txtLoaithuoc.Location             = new System.Drawing.Point(754, 60);
     this.txtLoaithuoc.MaxHeight            = -1;
     this.txtLoaithuoc.MinTypedCharacters   = 2;
     this.txtLoaithuoc.MyCode               = "-1";
     this.txtLoaithuoc.MyID                     = "-1";
     this.txtLoaithuoc.MyText                   = "";
     this.txtLoaithuoc.Name                     = "txtLoaithuoc";
     this.txtLoaithuoc.RaiseEvent               = true;
     this.txtLoaithuoc.RaiseEventEnter          = true;
     this.txtLoaithuoc.RaiseEventEnterWhenEmpty = true;
     this.txtLoaithuoc.SelectedIndex            = -1;
     this.txtLoaithuoc.Size                     = new System.Drawing.Size(10, 21);
     this.txtLoaithuoc.splitChar                = '@';
     this.txtLoaithuoc.splitCharIDAndCode       = '#';
     this.txtLoaithuoc.TabIndex                 = 1;
     this.txtLoaithuoc.TakeCode                 = false;
     this.toolTip1.SetToolTip(this.txtLoaithuoc, "Chọn nhóm thuốc(Có thể nhấn phím space(cách) để hiển thị tất cả các nhóm)");
     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;
     this.txtLoaithuoc.Visible        = false;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(5, 55);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(130, 20);
     this.label6.TabIndex  = 33;
     this.label6.Text      = "Tên thuốc:";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label7
     //
     this.label7.Location  = new System.Drawing.Point(725, 60);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(23, 20);
     this.label7.TabIndex  = 32;
     this.label7.Text      = "Nhóm thuốc";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.label7.Visible   = false;
     //
     // chkBiendong
     //
     this.chkBiendong.Location = new System.Drawing.Point(141, 131);
     this.chkBiendong.Name     = "chkBiendong";
     this.chkBiendong.Size     = new System.Drawing.Size(220, 23);
     this.chkBiendong.TabIndex = 15;
     this.chkBiendong.TabStop  = false;
     this.chkBiendong.Text     = "Chỉ lấy dữ liệu thuốc có biến động?";
     this.toolTip1.SetToolTip(this.chkBiendong, "Nhấn vào đây nếu chỉ muốn lấy các thuốc có biến động: Nhập hoặc Xuất. Không check" +
                              " sẽ lấy tất cả các thuốc trong kho");
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(6, 27);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(130, 20);
     this.label3.TabIndex  = 8;
     this.label3.Text      = "Chọn Kho:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboKho
     //
     this.cboKho.Location = new System.Drawing.Point(141, 27);
     this.cboKho.Name     = "cboKho";
     this.cboKho.Size     = new System.Drawing.Size(370, 21);
     this.cboKho.TabIndex = 0;
     this.cboKho.Text     = "Kho";
     this.toolTip1.SetToolTip(this.cboKho, "Chọn kho để báo cáo");
     //
     // dtToDate
     //
     this.dtToDate.CustomFormat = "dd/MM/yyyy ";
     this.dtToDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtToDate.DropDownCalendar.Name = "";
     this.dtToDate.Location   = new System.Drawing.Point(372, 105);
     this.dtToDate.Name       = "dtToDate";
     this.dtToDate.ShowUpDown = true;
     this.dtToDate.Size       = new System.Drawing.Size(139, 21);
     this.dtToDate.TabIndex   = 10;
     //
     // dtFromDate
     //
     this.dtFromDate.CustomFormat = "dd/MM/yyyy ";
     this.dtFromDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtFromDate.DropDownCalendar.Name = "";
     this.dtFromDate.Location   = new System.Drawing.Point(141, 104);
     this.dtFromDate.Name       = "dtFromDate";
     this.dtFromDate.ShowUpDown = true;
     this.dtFromDate.Size       = new System.Drawing.Size(139, 21);
     this.dtFromDate.TabIndex   = 9;
     //
     // cmdExportToExcel
     //
     this.cmdExportToExcel.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdExportToExcel.Font        = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdExportToExcel.Image       = ((System.Drawing.Image)(resources.GetObject("cmdExportToExcel.Image")));
     this.cmdExportToExcel.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdExportToExcel.Location    = new System.Drawing.Point(380, 628);
     this.cmdExportToExcel.Name        = "cmdExportToExcel";
     this.cmdExportToExcel.Size        = new System.Drawing.Size(124, 30);
     this.cmdExportToExcel.TabIndex    = 17;
     this.cmdExportToExcel.Text        = "Xuất Excel";
     this.cmdExportToExcel.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
     this.cmdExportToExcel.Click      += new System.EventHandler(this.cmdExportToExcel_Click);
     //
     // printDialog1
     //
     this.printDialog1.UseEXDialog = true;
     //
     // toolTip1
     //
     this.toolTip1.IsBalloon    = true;
     this.toolTip1.ToolTipTitle = "Trợ giúp";
     //
     // frm_Sochitietvatlieu
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize    = new System.Drawing.Size(779, 667);
     this.Controls.Add(this.cmdExportToExcel);
     this.Controls.Add(this.uiGroupBox1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.dtNgayIn);
     this.Controls.Add(this.cmdBaoCao);
     this.Controls.Add(this.cmdExit);
     this.Controls.Add(this.panel1);
     this.KeyPreview    = true;
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "frm_Sochitietvatlieu";
     this.ShowIcon      = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "SỔ CHI TIẾT VẬT LIỆU";
     this.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.frm_Sochitietvatlieu_KeyDown_1);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
     this.uiGroupBox1.ResumeLayout(false);
     this.uiGroupBox1.PerformLayout();
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdListChitiet)).EndInit();
     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_tonghopkhamchuabenh));
            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.GridEX.GridEXLayout grdChitiet_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            this.gridEXExporter1 = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
            this.printDialog1 = new System.Windows.Forms.PrintDialog();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.cmdExportToExcel = new Janus.Windows.EditControls.UIButton();
            this.dtNgayInPhieu = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label3 = new System.Windows.Forms.Label();
            this.cmdPrint = new Janus.Windows.EditControls.UIButton();
            this.cmdExit = new Janus.Windows.EditControls.UIButton();
            this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
            this.cboGT = new Janus.Windows.EditControls.UIComboBox();
            this.label6 = new System.Windows.Forms.Label();
            this.txtNhanvien = new VNS.HIS.UCs.AutoCompleteTextbox_Nhanvien();
            this.label8 = new System.Windows.Forms.Label();
            this.chkLoaitimkiem = new Janus.Windows.EditControls.UICheckBox();
            this.label2 = new System.Windows.Forms.Label();
            this.panel1 = new System.Windows.Forms.Panel();
            this.grdChitiet = new Janus.Windows.GridEX.GridEX();
            this.cboDoituongKCB = new Janus.Windows.EditControls.UIComboBox();
            this.label10 = new System.Windows.Forms.Label();
            this.cbokhoa = new Janus.Windows.EditControls.UIComboBox();
            this.label11 = new System.Windows.Forms.Label();
            this.dtToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.dtFromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.chkByDate = new Janus.Windows.EditControls.UICheckBox();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.panel2 = new System.Windows.Forms.Panel();
            this.baocaO_TIEUDE1 = new VNS.HIS.UI.FORMs.BAOCAO.BHYT.UserControls.BAOCAO_TIEUDE();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
            this.uiGroupBox2.SuspendLayout();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).BeginInit();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.SuspendLayout();
            // 
            // printDialog1
            // 
            this.printDialog1.UseEXDialog = true;
            // 
            // cmdExportToExcel
            // 
            this.cmdExportToExcel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdExportToExcel.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdExportToExcel.Image = ((System.Drawing.Image)(resources.GetObject("cmdExportToExcel.Image")));
            this.cmdExportToExcel.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdExportToExcel.Location = new System.Drawing.Point(389, 13);
            this.cmdExportToExcel.Name = "cmdExportToExcel";
            this.cmdExportToExcel.Size = new System.Drawing.Size(119, 30);
            this.cmdExportToExcel.TabIndex = 10;
            this.cmdExportToExcel.Text = "Xuất Excel";
            this.cmdExportToExcel.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
            // 
            // dtNgayInPhieu
            // 
            this.dtNgayInPhieu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.dtNgayInPhieu.CustomFormat = "dd/MM/yyyy";
            this.dtNgayInPhieu.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtNgayInPhieu.DropDownCalendar.Name = "";
            this.dtNgayInPhieu.Font = new System.Drawing.Font("Arial", 9F);
            this.dtNgayInPhieu.Location = new System.Drawing.Point(88, 19);
            this.dtNgayInPhieu.Name = "dtNgayInPhieu";
            this.dtNgayInPhieu.ShowUpDown = true;
            this.dtNgayInPhieu.Size = new System.Drawing.Size(200, 21);
            this.dtNgayInPhieu.TabIndex = 12;
            this.dtNgayInPhieu.Value = new System.DateTime(2014, 9, 27, 0, 0, 0, 0);
            // 
            // label3
            // 
            this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label3.AutoSize = true;
            this.label3.Font = new System.Drawing.Font("Arial", 9F);
            this.label3.Location = new System.Drawing.Point(10, 23);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(48, 15);
            this.label3.TabIndex = 88;
            this.label3.Text = "Ngày in";
            // 
            // cmdPrint
            // 
            this.cmdPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdPrint.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdPrint.Image = ((System.Drawing.Image)(resources.GetObject("cmdPrint.Image")));
            this.cmdPrint.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdPrint.Location = new System.Drawing.Point(514, 13);
            this.cmdPrint.Name = "cmdPrint";
            this.cmdPrint.Size = new System.Drawing.Size(119, 30);
            this.cmdPrint.TabIndex = 9;
            this.cmdPrint.Text = "In báo cáo";
            this.cmdPrint.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
            // 
            // cmdExit
            // 
            this.cmdExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdExit.Font = new System.Drawing.Font("Arial", 9F);
            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(639, 13);
            this.cmdExit.Name = "cmdExit";
            this.cmdExit.Size = new System.Drawing.Size(119, 30);
            this.cmdExit.TabIndex = 11;
            this.cmdExit.Text = "&Thoát(Esc)";
            // 
            // uiGroupBox2
            // 
            this.uiGroupBox2.Controls.Add(this.cboGT);
            this.uiGroupBox2.Controls.Add(this.label6);
            this.uiGroupBox2.Controls.Add(this.txtNhanvien);
            this.uiGroupBox2.Controls.Add(this.label8);
            this.uiGroupBox2.Controls.Add(this.chkLoaitimkiem);
            this.uiGroupBox2.Controls.Add(this.label2);
            this.uiGroupBox2.Controls.Add(this.panel1);
            this.uiGroupBox2.Controls.Add(this.cboDoituongKCB);
            this.uiGroupBox2.Controls.Add(this.label10);
            this.uiGroupBox2.Controls.Add(this.cbokhoa);
            this.uiGroupBox2.Controls.Add(this.label11);
            this.uiGroupBox2.Controls.Add(this.dtToDate);
            this.uiGroupBox2.Controls.Add(this.dtFromDate);
            this.uiGroupBox2.Controls.Add(this.chkByDate);
            this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.uiGroupBox2.Font = new System.Drawing.Font("Arial", 9F);
            this.uiGroupBox2.Location = new System.Drawing.Point(3, 56);
            this.uiGroupBox2.Name = "uiGroupBox2";
            this.uiGroupBox2.Size = new System.Drawing.Size(762, 488);
            this.uiGroupBox2.TabIndex = 115;
            this.uiGroupBox2.Text = "Thông tin tìm kiếm";
            // 
            // cboGT
            // 
            this.cboGT.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 = "Giới tính";
            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 = "Nữ";
            uiComboBoxItem3.Value = 1;
            this.cboGT.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3});
            this.cboGT.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cboGT.Location = new System.Drawing.Point(541, 77);
            this.cboGT.Name = "cboGT";
            this.cboGT.SelectedIndex = 0;
            this.cboGT.SelectInDataSource = true;
            this.cboGT.Size = new System.Drawing.Size(92, 21);
            this.cboGT.TabIndex = 128;
            this.cboGT.Text = "Giới tính";
            // 
            // label6
            // 
            this.label6.Location = new System.Drawing.Point(459, 76);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(75, 22);
            this.label6.TabIndex = 127;
            this.label6.Text = "Giới tính: ";
            this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtNhanvien
            // 
            this.txtNhanvien._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtNhanvien._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNhanvien.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtNhanvien.AutoCompleteList")));
            this.txtNhanvien.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNhanvien.CaseSensitive = false;
            this.txtNhanvien.CompareNoID = true;
            this.txtNhanvien.DefaultCode = "-1";
            this.txtNhanvien.DefaultID = "-1";
            this.txtNhanvien.Drug_ID = null;
            this.txtNhanvien.ExtraWidth = 0;
            this.txtNhanvien.FillValueAfterSelect = false;
            this.txtNhanvien.LOAI_NHANVIEN = null;
            this.txtNhanvien.Location = new System.Drawing.Point(138, 76);
            this.txtNhanvien.MaxHeight = -1;
            this.txtNhanvien.MinTypedCharacters = 2;
            this.txtNhanvien.MyCode = "-1";
            this.txtNhanvien.MyID = "-1";
            this.txtNhanvien.Name = "txtNhanvien";
            this.txtNhanvien.RaiseEvent = false;
            this.txtNhanvien.RaiseEventEnter = false;
            this.txtNhanvien.RaiseEventEnterWhenEmpty = false;
            this.txtNhanvien.SelectedIndex = -1;
            this.txtNhanvien.Size = new System.Drawing.Size(315, 21);
            this.txtNhanvien.splitChar = '@';
            this.txtNhanvien.splitCharIDAndCode = '#';
            this.txtNhanvien.TabIndex = 59;
            this.txtNhanvien.TakeCode = false;
            this.txtNhanvien.txtMyCode = null;
            this.txtNhanvien.txtMyCode_Edit = null;
            this.txtNhanvien.txtMyID = null;
            this.txtNhanvien.txtMyID_Edit = null;
            this.txtNhanvien.txtMyName = null;
            this.txtNhanvien.txtMyName_Edit = null;
            this.txtNhanvien.txtNext = null;
            // 
            // label8
            // 
            this.label8.Location = new System.Drawing.Point(11, 81);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(121, 15);
            this.label8.TabIndex = 60;
            this.label8.Text = "Thu ngân viên:";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // chkLoaitimkiem
            // 
            this.chkLoaitimkiem.Checked = true;
            this.chkLoaitimkiem.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkLoaitimkiem.ForeColor = System.Drawing.Color.Navy;
            this.chkLoaitimkiem.Location = new System.Drawing.Point(477, 100);
            this.chkLoaitimkiem.Name = "chkLoaitimkiem";
            this.chkLoaitimkiem.Size = new System.Drawing.Size(183, 23);
            this.chkLoaitimkiem.TabIndex = 8;
            this.chkLoaitimkiem.Text = "Dịch vụ chưa thanh toán";
            this.toolTip1.SetToolTip(this.chkLoaitimkiem, "Bỏ check sẽ tìm theo ngày chốt viện phí");
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(270, 108);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(28, 15);
            this.label2.TabIndex = 58;
            this.label2.Text = "đến";
            // 
            // panel1
            // 
            this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.panel1.Controls.Add(this.grdChitiet);
            this.panel1.Location = new System.Drawing.Point(6, 147);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(758, 335);
            this.panel1.TabIndex = 56;
            // 
            // grdChitiet
            // 
            this.grdChitiet.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            grdChitiet_DesignTimeLayout.LayoutString = resources.GetString("grdChitiet_DesignTimeLayout.LayoutString");
            this.grdChitiet.DesignTimeLayout = grdChitiet_DesignTimeLayout;
            this.grdChitiet.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdChitiet.Font = new System.Drawing.Font("Arial", 9F);
            this.grdChitiet.GroupByBoxVisible = false;
            this.grdChitiet.GroupRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdChitiet.GroupTotalRowFormatStyle.FontItalic = Janus.Windows.GridEX.TriState.True;
            this.grdChitiet.GroupTotalRowFormatStyle.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            this.grdChitiet.GroupTotals = Janus.Windows.GridEX.GroupTotals.Always;
            this.grdChitiet.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdChitiet.Location = new System.Drawing.Point(0, 0);
            this.grdChitiet.Name = "grdChitiet";
            this.grdChitiet.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdChitiet.Size = new System.Drawing.Size(758, 335);
            this.grdChitiet.TabIndex = 21;
            this.grdChitiet.TabStop = false;
            this.grdChitiet.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdChitiet.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdChitiet.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdChitiet.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // cboDoituongKCB
            // 
            this.cboDoituongKCB.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboDoituongKCB.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cboDoituongKCB.Location = new System.Drawing.Point(138, 49);
            this.cboDoituongKCB.Name = "cboDoituongKCB";
            this.cboDoituongKCB.SelectInDataSource = true;
            this.cboDoituongKCB.Size = new System.Drawing.Size(315, 21);
            this.cboDoituongKCB.TabIndex = 2;
            this.cboDoituongKCB.Text = "Chọn loại đối tượng KCB";
            // 
            // label10
            // 
            this.label10.Location = new System.Drawing.Point(11, 53);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(121, 15);
            this.label10.TabIndex = 54;
            this.label10.Text = "Đối tượng KCB:";
            this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cbokhoa
            // 
            this.cbokhoa.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cbokhoa.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cbokhoa.Location = new System.Drawing.Point(138, 22);
            this.cbokhoa.Name = "cbokhoa";
            this.cbokhoa.SelectInDataSource = true;
            this.cbokhoa.Size = new System.Drawing.Size(600, 21);
            this.cbokhoa.TabIndex = 0;
            this.cbokhoa.Text = "Chọn khoa KCB";
            // 
            // label11
            // 
            this.label11.Location = new System.Drawing.Point(11, 25);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(121, 15);
            this.label11.TabIndex = 52;
            this.label11.Text = "Khoa KCB:";
            this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtToDate
            // 
            this.dtToDate.CustomFormat = "dd/MM/yyyy";
            this.dtToDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtToDate.DropDownCalendar.Name = "";
            this.dtToDate.Location = new System.Drawing.Point(304, 106);
            this.dtToDate.Name = "dtToDate";
            this.dtToDate.ShowUpDown = true;
            this.dtToDate.Size = new System.Drawing.Size(113, 21);
            this.dtToDate.TabIndex = 7;
            this.dtToDate.Value = new System.DateTime(2014, 9, 27, 0, 0, 0, 0);
            // 
            // dtFromDate
            // 
            this.dtFromDate.CustomFormat = "dd/MM/yyyy";
            this.dtFromDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtFromDate.DropDownCalendar.Name = "";
            this.dtFromDate.Location = new System.Drawing.Point(138, 106);
            this.dtFromDate.Name = "dtFromDate";
            this.dtFromDate.ShowUpDown = true;
            this.dtFromDate.Size = new System.Drawing.Size(126, 21);
            this.dtFromDate.TabIndex = 6;
            this.dtFromDate.Value = new System.DateTime(2014, 9, 27, 0, 0, 0, 0);
            // 
            // chkByDate
            // 
            this.chkByDate.Checked = true;
            this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkByDate.ForeColor = System.Drawing.Color.Navy;
            this.chkByDate.Location = new System.Drawing.Point(67, 106);
            this.chkByDate.Name = "chkByDate";
            this.chkByDate.Size = new System.Drawing.Size(65, 23);
            this.chkByDate.TabIndex = 5;
            this.chkByDate.Text = "Từ ngày";
            // 
            // toolTip1
            // 
            this.toolTip1.IsBalloon = true;
            this.toolTip1.ToolTipTitle = "Trợ giúp";
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Location = new System.Drawing.Point(0, 0);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(776, 573);
            this.tabControl1.TabIndex = 116;
            // 
            // tabPage1
            // 
            this.tabPage1.BackColor = System.Drawing.SystemColors.Control;
            this.tabPage1.Controls.Add(this.panel2);
            this.tabPage1.Controls.Add(this.uiGroupBox2);
            this.tabPage1.Controls.Add(this.baocaO_TIEUDE1);
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(768, 547);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "Báo cáo thu viện phí";
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.cmdExportToExcel);
            this.panel2.Controls.Add(this.dtNgayInPhieu);
            this.panel2.Controls.Add(this.label3);
            this.panel2.Controls.Add(this.cmdExit);
            this.panel2.Controls.Add(this.cmdPrint);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel2.Location = new System.Drawing.Point(3, 492);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(762, 52);
            this.panel2.TabIndex = 115;
            // 
            // baocaO_TIEUDE1
            // 
            this.baocaO_TIEUDE1.BackColor = System.Drawing.SystemColors.Control;
            this.baocaO_TIEUDE1.Dock = System.Windows.Forms.DockStyle.Top;
            this.baocaO_TIEUDE1.Location = new System.Drawing.Point(3, 3);
            this.baocaO_TIEUDE1.MA_BAOCAO = "THUOC_BCDSACH_BNHANLINHTHUOC";
            this.baocaO_TIEUDE1.Name = "baocaO_TIEUDE1";
            this.baocaO_TIEUDE1.Phimtat = "Bạn có thể sử dụng phím tắt";
            this.baocaO_TIEUDE1.PicImg = ((System.Drawing.Image)(resources.GetObject("baocaO_TIEUDE1.PicImg")));
            this.baocaO_TIEUDE1.ShortcutAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.baocaO_TIEUDE1.ShortcutFont = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.baocaO_TIEUDE1.showHelp = false;
            this.baocaO_TIEUDE1.Size = new System.Drawing.Size(762, 53);
            this.baocaO_TIEUDE1.TabIndex = 114;
            this.baocaO_TIEUDE1.TIEUDE = "BÁO CÁO THỐNG KÊ KHÁM CHỮA BỆNH";
            this.baocaO_TIEUDE1.TitleFont = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            // 
            // frm_tonghopkhamchuabenh
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(776, 573);
            this.Controls.Add(this.tabControl1);
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frm_tonghopkhamchuabenh";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Báo cáo thu viện phí";
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
            this.uiGroupBox2.ResumeLayout(false);
            this.uiGroupBox2.PerformLayout();
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).EndInit();
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            this.ResumeLayout(false);

        }
Example #39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Janus.Windows.GridEX.GridEXLayout gridEXLayout1                = new Janus.Windows.GridEX.GridEXLayout();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(DSCuocDuongDai_SanBay));
     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();
     this.label1                = new System.Windows.Forms.Label();
     this.txtSoHieuXe           = new System.Windows.Forms.TextBox();
     this.label2                = new System.Windows.Forms.Label();
     this.btnSearch             = new System.Windows.Forms.Button();
     this.grdCuocSanBayDuongDai = new Janus.Windows.GridEX.GridEX();
     this.cbThoiGian            = new Janus.Windows.EditControls.UIComboBox();
     this.panel1                = new System.Windows.Forms.Panel();
     this.cbGara                = new System.Windows.Forms.ComboBox();
     this.panel2                = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.grdCuocSanBayDuongDai)).BeginInit();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(129, 61);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(60, 13);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Số hiệu xe ";
     //
     // txtSoHieuXe
     //
     this.txtSoHieuXe.Location = new System.Drawing.Point(192, 58);
     this.txtSoHieuXe.Name     = "txtSoHieuXe";
     this.txtSoHieuXe.Size     = new System.Drawing.Size(100, 20);
     this.txtSoHieuXe.TabIndex = 1;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font     = new System.Drawing.Font("Times New Roman", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(298, 17);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(314, 22);
     this.label2.TabIndex = 2;
     this.label2.Text     = "Danh sách các cuốc đường dài sân bay";
     //
     // btnSearch
     //
     this.btnSearch.Location = new System.Drawing.Point(587, 56);
     this.btnSearch.Name     = "btnSearch";
     this.btnSearch.Size     = new System.Drawing.Size(75, 23);
     this.btnSearch.TabIndex = 4;
     this.btnSearch.Text     = "Tìm kiếm";
     this.btnSearch.UseVisualStyleBackColor = true;
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // grdCuocSanBayDuongDai
     //
     gridEXLayout1.LayoutString = resources.GetString("gridEXLayout1.LayoutString");
     this.grdCuocSanBayDuongDai.DesignTimeLayout  = gridEXLayout1;
     this.grdCuocSanBayDuongDai.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.grdCuocSanBayDuongDai.EnterKeyBehavior  = Janus.Windows.GridEX.EnterKeyBehavior.None;
     this.grdCuocSanBayDuongDai.GridLineStyle     = Janus.Windows.GridEX.GridLineStyle.Solid;
     this.grdCuocSanBayDuongDai.GroupByBoxVisible = false;
     this.grdCuocSanBayDuongDai.Location          = new System.Drawing.Point(0, 0);
     this.grdCuocSanBayDuongDai.Name              = "grdCuocSanBayDuongDai";
     this.grdCuocSanBayDuongDai.RowHeaderContent  = Janus.Windows.GridEX.RowHeaderContent.RowIndex;
     this.grdCuocSanBayDuongDai.RowHeaders        = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdCuocSanBayDuongDai.SaveSettings      = false;
     this.grdCuocSanBayDuongDai.Size              = new System.Drawing.Size(927, 284);
     this.grdCuocSanBayDuongDai.TabIndex          = 5;
     this.grdCuocSanBayDuongDai.FormattingRow    += new Janus.Windows.GridEX.RowLoadEventHandler(this.grdCuocSanBayDuongDai_FormattingRow);
     this.grdCuocSanBayDuongDai.KeyDown          += new System.Windows.Forms.KeyEventHandler(this.grdCuocSanBayDuongDai_KeyDown);
     this.grdCuocSanBayDuongDai.DoubleClick      += new System.EventHandler(this.grdCuocSanBayDuongDai_DoubleClick);
     //
     // cbThoiGian
     //
     this.cbThoiGian.ComboStyle        = Janus.Windows.EditControls.ComboStyle.DropDownList;
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.Text              = "1 ngày gần đây";
     uiComboBoxItem1.Value             = 1;
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.Text              = "3 ngày gần đây";
     uiComboBoxItem2.Value             = 3;
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.Text              = "5 ngày gần đây";
     uiComboBoxItem3.Value             = 5;
     uiComboBoxItem4.FormatStyle.Alpha = 0;
     uiComboBoxItem4.Text              = "15 ngày gần đây";
     uiComboBoxItem4.Value             = 15;
     this.cbThoiGian.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2,
         uiComboBoxItem3,
         uiComboBoxItem4
     });
     this.cbThoiGian.Location = new System.Drawing.Point(439, 58);
     this.cbThoiGian.Name     = "cbThoiGian";
     this.cbThoiGian.Size     = new System.Drawing.Size(137, 20);
     this.cbThoiGian.TabIndex = 6;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.cbGara);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.cbThoiGian);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.txtSoHieuXe);
     this.panel1.Controls.Add(this.btnSearch);
     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(927, 84);
     this.panel1.TabIndex = 7;
     //
     // cbGara
     //
     this.cbGara.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.cbGara.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.cbGara.Location           = new System.Drawing.Point(297, 58);
     this.cbGara.Margin             = new System.Windows.Forms.Padding(4);
     this.cbGara.Name     = "cbGara";
     this.cbGara.Size     = new System.Drawing.Size(135, 21);
     this.cbGara.TabIndex = 17;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.grdCuocSanBayDuongDai);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 84);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(927, 284);
     this.panel2.TabIndex = 8;
     //
     // DSCuocDuongDai_SanBay
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(927, 368);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Icon          = TaxiApplication.Properties.Resources.Telephone_01;
     this.Name          = "DSCuocDuongDai_SanBay";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Danh sách các cuốc đường dài sân bay";
     this.Load         += new System.EventHandler(this.DSCuocDuongDai_SanBay_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grdCuocSanBayDuongDai)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.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_TiepDonBN));
            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.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.GridEX.GridEXLayout grdDichVuChiTiet_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdTestInfo_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            this.grpThongTinBN = new Janus.Windows.EditControls.UIGroupBox();
            this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
            this.uiButton5 = new Janus.Windows.EditControls.UIButton();
            this.btnThoat = new Janus.Windows.EditControls.UIButton();
            this.uiButton4 = new Janus.Windows.EditControls.UIButton();
            this.cmdSave = new Janus.Windows.EditControls.UIButton();
            this.label16 = new System.Windows.Forms.Label();
            this.txtCMT = new System.Windows.Forms.TextBox();
            this.label15 = new System.Windows.Forms.Label();
            this.txtEmail = new System.Windows.Forms.TextBox();
            this.cbodoituong = new Janus.Windows.EditControls.UIComboBox();
            this.cboPatientSex = new Janus.Windows.EditControls.UIComboBox();
            this.label14 = new System.Windows.Forms.Label();
            this.txtdiachidaydu = new System.Windows.Forms.TextBox();
            this.label13 = new System.Windows.Forms.Label();
            this.txtTram = new System.Windows.Forms.TextBox();
            this.label12 = new System.Windows.Forms.Label();
            this.txtSoNha = new System.Windows.Forms.TextBox();
            this.label11 = new System.Windows.Forms.Label();
            this.label10 = new System.Windows.Forms.Label();
            this.label9 = new System.Windows.Forms.Label();
            this.txtNguoiLienhe = new System.Windows.Forms.TextBox();
            this.label8 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.txtSodienthoai = new System.Windows.Forms.TextBox();
            this.txtTuoi = new System.Windows.Forms.TextBox();
            this.txtNamsinh = new System.Windows.Forms.TextBox();
            this.dtpngaysinh = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.chkDOB = new Janus.Windows.EditControls.UICheckBox();
            this.label5 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.txtPID = new System.Windows.Forms.TextBox();
            this.dtpngaytiepdon = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label3 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.txtTenbenhnhan = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.panel2 = new System.Windows.Forms.Panel();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.uiStatusBar1 = new Janus.Windows.UI.StatusBar.UIStatusBar();
            this.cbotrangthai = new System.Windows.Forms.ComboBox();
            this.uiButton1 = new Janus.Windows.EditControls.UIButton();
            this.editBox6 = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label22 = new System.Windows.Forms.Label();
            this.editBox2 = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label29 = new System.Windows.Forms.Label();
            this.editBox1 = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label28 = new System.Windows.Forms.Label();
            this.cbotendichvu = new System.Windows.Forms.ComboBox();
            this.label27 = new System.Windows.Forms.Label();
            this.uiCheckBox5 = new Janus.Windows.EditControls.UICheckBox();
            this.label25 = new System.Windows.Forms.Label();
            this.uiCheckBox4 = new Janus.Windows.EditControls.UICheckBox();
            this.uiCheckBox3 = new Janus.Windows.EditControls.UICheckBox();
            this.uiCheckBox2 = new Janus.Windows.EditControls.UICheckBox();
            this.uiCheckBox1 = new Janus.Windows.EditControls.UICheckBox();
            this.label23 = new System.Windows.Forms.Label();
            this.uiButton2 = new Janus.Windows.EditControls.UIButton();
            this.cmdInCLS = new Janus.Windows.EditControls.UIButton();
            this.chkSms = new Janus.Windows.EditControls.UICheckBox();
            this.calendarCombo1 = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label17 = new System.Windows.Forms.Label();
            this.editBox4 = new Janus.Windows.GridEX.EditControls.EditBox();
            this.calendarCombo2 = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label21 = new System.Windows.Forms.Label();
            this.label24 = new System.Windows.Forms.Label();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.grdDichVuChiTiet = new Janus.Windows.GridEX.GridEX();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.grdTestInfo = new Janus.Windows.GridEX.GridEX();
            this.panel1 = new System.Windows.Forms.Panel();
            this.flpTestType = new System.Windows.Forms.FlowLayoutPanel();
            this.txtTrieuChung = new System.Windows.Forms.TextBox();
            this.label18 = new System.Windows.Forms.Label();
            this.cboTram = new System.Windows.Forms.ComboBox();
            this.txtNghe = new VXIS.BetterTextbox();
            this.txtDiaChi = new VXIS.BetterTextbox();
            ((System.ComponentModel.ISupportInitialize)(this.grpThongTinBN)).BeginInit();
            this.grpThongTinBN.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
            this.uiGroupBox1.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage2.SuspendLayout();
            this.panel2.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.groupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdDichVuChiTiet)).BeginInit();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdTestInfo)).BeginInit();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // grpThongTinBN
            // 
            this.grpThongTinBN.Controls.Add(this.cboTram);
            this.grpThongTinBN.Controls.Add(this.txtTrieuChung);
            this.grpThongTinBN.Controls.Add(this.label18);
            this.grpThongTinBN.Controls.Add(this.uiGroupBox1);
            this.grpThongTinBN.Controls.Add(this.txtNghe);
            this.grpThongTinBN.Controls.Add(this.label16);
            this.grpThongTinBN.Controls.Add(this.txtCMT);
            this.grpThongTinBN.Controls.Add(this.txtdiachidaydu);
            this.grpThongTinBN.Controls.Add(this.label15);
            this.grpThongTinBN.Controls.Add(this.txtEmail);
            this.grpThongTinBN.Controls.Add(this.cbodoituong);
            this.grpThongTinBN.Controls.Add(this.cboPatientSex);
            this.grpThongTinBN.Controls.Add(this.label14);
            this.grpThongTinBN.Controls.Add(this.label13);
            this.grpThongTinBN.Controls.Add(this.txtTram);
            this.grpThongTinBN.Controls.Add(this.label12);
            this.grpThongTinBN.Controls.Add(this.txtSoNha);
            this.grpThongTinBN.Controls.Add(this.label11);
            this.grpThongTinBN.Controls.Add(this.label10);
            this.grpThongTinBN.Controls.Add(this.label9);
            this.grpThongTinBN.Controls.Add(this.txtNguoiLienhe);
            this.grpThongTinBN.Controls.Add(this.label8);
            this.grpThongTinBN.Controls.Add(this.label7);
            this.grpThongTinBN.Controls.Add(this.txtSodienthoai);
            this.grpThongTinBN.Controls.Add(this.txtTuoi);
            this.grpThongTinBN.Controls.Add(this.txtNamsinh);
            this.grpThongTinBN.Controls.Add(this.dtpngaysinh);
            this.grpThongTinBN.Controls.Add(this.chkDOB);
            this.grpThongTinBN.Controls.Add(this.label5);
            this.grpThongTinBN.Controls.Add(this.label6);
            this.grpThongTinBN.Controls.Add(this.label4);
            this.grpThongTinBN.Controls.Add(this.txtPID);
            this.grpThongTinBN.Controls.Add(this.dtpngaytiepdon);
            this.grpThongTinBN.Controls.Add(this.label3);
            this.grpThongTinBN.Controls.Add(this.label2);
            this.grpThongTinBN.Controls.Add(this.txtTenbenhnhan);
            this.grpThongTinBN.Controls.Add(this.txtDiaChi);
            this.grpThongTinBN.Controls.Add(this.label1);
            this.grpThongTinBN.Dock = System.Windows.Forms.DockStyle.Top;
            this.grpThongTinBN.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grpThongTinBN.ForeColor = System.Drawing.Color.Black;
            this.grpThongTinBN.Image = ((System.Drawing.Image)(resources.GetObject("grpThongTinBN.Image")));
            this.grpThongTinBN.Location = new System.Drawing.Point(0, 0);
            this.grpThongTinBN.Name = "grpThongTinBN";
            this.grpThongTinBN.Size = new System.Drawing.Size(1001, 315);
            this.grpThongTinBN.TabIndex = 2;
            this.grpThongTinBN.Text = "Thông tin bệnh nhân";
            // 
            // uiGroupBox1
            // 
            this.uiGroupBox1.Controls.Add(this.uiButton5);
            this.uiGroupBox1.Controls.Add(this.btnThoat);
            this.uiGroupBox1.Controls.Add(this.uiButton4);
            this.uiGroupBox1.Controls.Add(this.cmdSave);
            this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.uiGroupBox1.Location = new System.Drawing.Point(3, 256);
            this.uiGroupBox1.Name = "uiGroupBox1";
            this.uiGroupBox1.Size = new System.Drawing.Size(995, 56);
            this.uiGroupBox1.TabIndex = 515;
            // 
            // uiButton5
            // 
            this.uiButton5.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiButton5.Image = ((System.Drawing.Image)(resources.GetObject("uiButton5.Image")));
            this.uiButton5.ImageSize = new System.Drawing.Size(24, 24);
            this.uiButton5.Location = new System.Drawing.Point(512, 18);
            this.uiButton5.Name = "uiButton5";
            this.uiButton5.Size = new System.Drawing.Size(113, 35);
            this.uiButton5.TabIndex = 516;
            this.uiButton5.Text = "Thêm mới";
            // 
            // btnThoat
            // 
            this.btnThoat.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnThoat.Image = ((System.Drawing.Image)(resources.GetObject("btnThoat.Image")));
            this.btnThoat.Location = new System.Drawing.Point(867, 18);
            this.btnThoat.Name = "btnThoat";
            this.btnThoat.Size = new System.Drawing.Size(113, 35);
            this.btnThoat.TabIndex = 515;
            this.btnThoat.Text = "Thoát";
            // 
            // uiButton4
            // 
            this.uiButton4.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiButton4.Image = ((System.Drawing.Image)(resources.GetObject("uiButton4.Image")));
            this.uiButton4.Location = new System.Drawing.Point(748, 18);
            this.uiButton4.Name = "uiButton4";
            this.uiButton4.Size = new System.Drawing.Size(113, 35);
            this.uiButton4.TabIndex = 513;
            this.uiButton4.Text = "Sửa thông tin";
            // 
            // cmdSave
            // 
            this.cmdSave.Font = new System.Drawing.Font("Times New Roman", 11.25F, 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(628, 18);
            this.cmdSave.Name = "cmdSave";
            this.cmdSave.Size = new System.Drawing.Size(113, 35);
            this.cmdSave.TabIndex = 514;
            this.cmdSave.Text = "&Lưu thông tin(Ctrl+S)";
            this.cmdSave.Click += new System.EventHandler(this.cmdSave_Click);
            // 
            // label16
            // 
            this.label16.AutoSize = true;
            this.label16.Location = new System.Drawing.Point(378, 167);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(43, 17);
            this.label16.TabIndex = 36;
            this.label16.Text = "CMT:";
            // 
            // txtCMT
            // 
            this.txtCMT.Location = new System.Drawing.Point(427, 161);
            this.txtCMT.Name = "txtCMT";
            this.txtCMT.Size = new System.Drawing.Size(203, 25);
            this.txtCMT.TabIndex = 35;
            // 
            // label15
            // 
            this.label15.AutoSize = true;
            this.label15.Location = new System.Drawing.Point(650, 130);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(44, 17);
            this.label15.TabIndex = 34;
            this.label15.Text = "Email:";
            // 
            // txtEmail
            // 
            this.txtEmail.Location = new System.Drawing.Point(701, 126);
            this.txtEmail.Name = "txtEmail";
            this.txtEmail.Size = new System.Drawing.Size(272, 25);
            this.txtEmail.TabIndex = 33;
            // 
            // cbodoituong
            // 
            this.cbodoituong.Location = new System.Drawing.Point(129, 132);
            this.cbodoituong.Name = "cbodoituong";
            this.cbodoituong.Size = new System.Drawing.Size(203, 25);
            this.cbodoituong.TabIndex = 31;
            this.cbodoituong.Text = "Dịch vụ";
            // 
            // cboPatientSex
            // 
            this.cboPatientSex.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboPatientSex.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "Nam";
            uiComboBoxItem1.Value = 0;
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "Nữ";
            uiComboBoxItem2.Value = 1;
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "Khác";
            uiComboBoxItem3.Value = 2;
            this.cboPatientSex.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3});
            this.cboPatientSex.Location = new System.Drawing.Point(494, 60);
            this.cboPatientSex.Name = "cboPatientSex";
            this.cboPatientSex.Size = new System.Drawing.Size(84, 21);
            this.cboPatientSex.TabIndex = 30;
            this.cboPatientSex.Text = "Giới tính";
            // 
            // label14
            // 
            this.label14.AutoSize = true;
            this.label14.Location = new System.Drawing.Point(28, 192);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(97, 17);
            this.label14.TabIndex = 29;
            this.label14.Text = "Phường/ Quận:";
            // 
            // txtdiachidaydu
            // 
            this.txtdiachidaydu.BackColor = System.Drawing.SystemColors.Info;
            this.txtdiachidaydu.Enabled = false;
            this.txtdiachidaydu.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtdiachidaydu.Location = new System.Drawing.Point(500, 192);
            this.txtdiachidaydu.Name = "txtdiachidaydu";
            this.txtdiachidaydu.Size = new System.Drawing.Size(473, 25);
            this.txtdiachidaydu.TabIndex = 28;
            // 
            // label13
            // 
            this.label13.AutoSize = true;
            this.label13.Location = new System.Drawing.Point(651, 163);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(43, 17);
            this.label13.TabIndex = 27;
            this.label13.Text = "Trạm:";
            // 
            // txtTram
            // 
            this.txtTram.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtTram.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTram.Location = new System.Drawing.Point(697, 161);
            this.txtTram.Name = "txtTram";
            this.txtTram.Size = new System.Drawing.Size(67, 25);
            this.txtTram.TabIndex = 26;
            this.txtTram.TextChanged += new System.EventHandler(this.txtTram_TextChanged);
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.Location = new System.Drawing.Point(74, 161);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(51, 17);
            this.label12.TabIndex = 25;
            this.label12.Text = "Số nhà:";
            // 
            // txtSoNha
            // 
            this.txtSoNha.Location = new System.Drawing.Point(129, 161);
            this.txtSoNha.Name = "txtSoNha";
            this.txtSoNha.Size = new System.Drawing.Size(203, 25);
            this.txtSoNha.TabIndex = 24;
            this.txtSoNha.TextChanged += new System.EventHandler(this.txtSoNha_TextChanged);
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.Location = new System.Drawing.Point(437, 195);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(53, 17);
            this.label11.TabIndex = 23;
            this.label11.Text = "Địa chỉ:";
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.Location = new System.Drawing.Point(336, 135);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(85, 17);
            this.label10.TabIndex = 22;
            this.label10.Text = "Nghề nghiệp:";
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Location = new System.Drawing.Point(604, 62);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(90, 17);
            this.label9.TabIndex = 20;
            this.label9.Text = "Người liên hệ:";
            // 
            // txtNguoiLienhe
            // 
            this.txtNguoiLienhe.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNguoiLienhe.Location = new System.Drawing.Point(698, 59);
            this.txtNguoiLienhe.Name = "txtNguoiLienhe";
            this.txtNguoiLienhe.Size = new System.Drawing.Size(272, 26);
            this.txtNguoiLienhe.TabIndex = 19;
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(55, 129);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(70, 17);
            this.label8.TabIndex = 18;
            this.label8.Text = "Đối tượng:";
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(607, 94);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(87, 17);
            this.label7.TabIndex = 16;
            this.label7.Text = "Số điện thoại:";
            // 
            // txtSodienthoai
            // 
            this.txtSodienthoai.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSodienthoai.Location = new System.Drawing.Point(701, 93);
            this.txtSodienthoai.Name = "txtSodienthoai";
            this.txtSodienthoai.Size = new System.Drawing.Size(272, 25);
            this.txtSodienthoai.TabIndex = 15;
            // 
            // txtTuoi
            // 
            this.txtTuoi.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTuoi.Location = new System.Drawing.Point(494, 93);
            this.txtTuoi.Name = "txtTuoi";
            this.txtTuoi.Size = new System.Drawing.Size(35, 25);
            this.txtTuoi.TabIndex = 14;
            this.txtTuoi.TextChanged += new System.EventHandler(this.txtTuoi_TextChanged);
            // 
            // txtNamsinh
            // 
            this.txtNamsinh.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNamsinh.Location = new System.Drawing.Point(427, 93);
            this.txtNamsinh.Name = "txtNamsinh";
            this.txtNamsinh.Size = new System.Drawing.Size(63, 25);
            this.txtNamsinh.TabIndex = 13;
            this.txtNamsinh.TextChanged += new System.EventHandler(this.txtNamsinh_TextChanged);
            // 
            // dtpngaysinh
            // 
            // 
            // 
            // 
            this.dtpngaysinh.DropDownCalendar.Name = "";
            this.dtpngaysinh.Location = new System.Drawing.Point(129, 89);
            this.dtpngaysinh.Name = "dtpngaysinh";
            this.dtpngaysinh.Size = new System.Drawing.Size(203, 25);
            this.dtpngaysinh.TabIndex = 12;
            // 
            // chkDOB
            // 
            this.chkDOB.Location = new System.Drawing.Point(41, 91);
            this.chkDOB.Name = "chkDOB";
            this.chkDOB.Size = new System.Drawing.Size(84, 23);
            this.chkDOB.TabIndex = 11;
            this.chkDOB.Text = "Ngày sinh:";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(536, 96);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(34, 17);
            this.label5.TabIndex = 10;
            this.label5.Text = "Tuổi";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(354, 99);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(67, 17);
            this.label6.TabIndex = 9;
            this.label6.Text = "Năm sinh:";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(428, 64);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(60, 17);
            this.label4.TabIndex = 7;
            this.label4.Text = "Giới tính:";
            // 
            // txtPID
            // 
            this.txtPID.BackColor = System.Drawing.SystemColors.Info;
            this.txtPID.Enabled = false;
            this.txtPID.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPID.Location = new System.Drawing.Point(427, 22);
            this.txtPID.Name = "txtPID";
            this.txtPID.Size = new System.Drawing.Size(149, 25);
            this.txtPID.TabIndex = 6;
            // 
            // dtpngaytiepdon
            // 
            // 
            // 
            // 
            this.dtpngaytiepdon.DropDownCalendar.Name = "";
            this.dtpngaytiepdon.Location = new System.Drawing.Point(129, 22);
            this.dtpngaytiepdon.Name = "dtpngaytiepdon";
            this.dtpngaytiepdon.Size = new System.Drawing.Size(203, 25);
            this.dtpngaytiepdon.TabIndex = 5;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(361, 25);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(60, 17);
            this.label3.TabIndex = 4;
            this.label3.Text = "Mã PID:";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(74, 57);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(51, 17);
            this.label2.TabIndex = 3;
            this.label2.Text = "Họ tên:";
            // 
            // txtTenbenhnhan
            // 
            this.txtTenbenhnhan.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTenbenhnhan.Location = new System.Drawing.Point(129, 57);
            this.txtTenbenhnhan.Name = "txtTenbenhnhan";
            this.txtTenbenhnhan.Size = new System.Drawing.Size(293, 26);
            this.txtTenbenhnhan.TabIndex = 2;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(25, 22);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(100, 17);
            this.label1.TabIndex = 0;
            this.label1.Text = "Ngày tiếp nhận:";
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Location = new System.Drawing.Point(0, 315);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(1001, 495);
            this.tabControl1.TabIndex = 3;
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.panel2);
            this.tabPage2.Controls.Add(this.panel1);
            this.tabPage2.Location = new System.Drawing.Point(4, 22);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage2.Size = new System.Drawing.Size(993, 469);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "Chỉ định dịch vụ";
            this.tabPage2.UseVisualStyleBackColor = true;
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.groupBox3);
            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(791, 463);
            this.panel2.TabIndex = 1;
            // 
            // groupBox3
            // 
            this.groupBox3.Controls.Add(this.uiStatusBar1);
            this.groupBox3.Controls.Add(this.cbotrangthai);
            this.groupBox3.Controls.Add(this.uiButton1);
            this.groupBox3.Controls.Add(this.editBox6);
            this.groupBox3.Controls.Add(this.label22);
            this.groupBox3.Controls.Add(this.editBox2);
            this.groupBox3.Controls.Add(this.label29);
            this.groupBox3.Controls.Add(this.editBox1);
            this.groupBox3.Controls.Add(this.label28);
            this.groupBox3.Controls.Add(this.cbotendichvu);
            this.groupBox3.Controls.Add(this.label27);
            this.groupBox3.Controls.Add(this.uiCheckBox5);
            this.groupBox3.Controls.Add(this.label25);
            this.groupBox3.Controls.Add(this.uiCheckBox4);
            this.groupBox3.Controls.Add(this.uiCheckBox3);
            this.groupBox3.Controls.Add(this.uiCheckBox2);
            this.groupBox3.Controls.Add(this.uiCheckBox1);
            this.groupBox3.Controls.Add(this.label23);
            this.groupBox3.Controls.Add(this.uiButton2);
            this.groupBox3.Controls.Add(this.cmdInCLS);
            this.groupBox3.Controls.Add(this.chkSms);
            this.groupBox3.Controls.Add(this.calendarCombo1);
            this.groupBox3.Controls.Add(this.label17);
            this.groupBox3.Controls.Add(this.editBox4);
            this.groupBox3.Controls.Add(this.calendarCombo2);
            this.groupBox3.Controls.Add(this.label21);
            this.groupBox3.Controls.Add(this.label24);
            this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox3.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupBox3.Location = new System.Drawing.Point(0, 280);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(791, 183);
            this.groupBox3.TabIndex = 486;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "Thông tin chi tiết dịch vụ";
            // 
            // 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(3, 157);
            this.uiStatusBar1.Name = "uiStatusBar1";
            uiStatusBarPanel1.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel1.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel1.FormatStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            uiStatusBarPanel1.Key = "";
            uiStatusBarPanel1.ProgressBarValue = 0;
            uiStatusBarPanel1.Text = "Ctrl+N: Thêm mới BN";
            uiStatusBarPanel1.Width = 133;
            uiStatusBarPanel2.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel2.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel2.FormatStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            uiStatusBarPanel2.Key = "";
            uiStatusBarPanel2.ProgressBarValue = 0;
            uiStatusBarPanel2.Text = "Ctrl+S: Lưu lại";
            uiStatusBarPanel2.Width = 93;
            uiStatusBarPanel3.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel3.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel3.FormatStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            uiStatusBarPanel3.Key = "";
            uiStatusBarPanel3.ProgressBarValue = 0;
            uiStatusBarPanel3.Text = "Esc: Thoát Form";
            uiStatusBarPanel3.Width = 105;
            uiStatusBarPanel4.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel4.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel4.FormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            uiStatusBarPanel4.FormatStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            uiStatusBarPanel4.Key = "MSG";
            uiStatusBarPanel4.ProgressBarValue = 0;
            uiStatusBarPanel4.Text = "Thông báo:";
            uiStatusBarPanel4.Width = 77;
            this.uiStatusBar1.Panels.AddRange(new Janus.Windows.UI.StatusBar.UIStatusBarPanel[] {
            uiStatusBarPanel1,
            uiStatusBarPanel2,
            uiStatusBarPanel3,
            uiStatusBarPanel4});
            this.uiStatusBar1.Size = new System.Drawing.Size(785, 23);
            this.uiStatusBar1.TabIndex = 514;
            this.uiStatusBar1.TabStop = false;
            this.uiStatusBar1.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
            // 
            // cbotrangthai
            // 
            this.cbotrangthai.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cbotrangthai.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cbotrangthai.FormattingEnabled = true;
            this.cbotrangthai.Location = new System.Drawing.Point(138, 111);
            this.cbotrangthai.Name = "cbotrangthai";
            this.cbotrangthai.Size = new System.Drawing.Size(191, 25);
            this.cbotrangthai.TabIndex = 513;
            // 
            // uiButton1
            // 
            this.uiButton1.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiButton1.Image = ((System.Drawing.Image)(resources.GetObject("uiButton1.Image")));
            this.uiButton1.ImageSize = new System.Drawing.Size(24, 24);
            this.uiButton1.Location = new System.Drawing.Point(667, 60);
            this.uiButton1.Name = "uiButton1";
            this.uiButton1.Size = new System.Drawing.Size(113, 35);
            this.uiButton1.TabIndex = 512;
            this.uiButton1.Text = "&Lưu thông tin(Ctrl+S)";
            // 
            // editBox6
            // 
            this.editBox6.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.editBox6.Location = new System.Drawing.Point(138, 138);
            this.editBox6.Name = "editBox6";
            this.editBox6.ReadOnly = true;
            this.editBox6.Size = new System.Drawing.Size(495, 25);
            this.editBox6.TabIndex = 510;
            // 
            // label22
            // 
            this.label22.AutoSize = true;
            this.label22.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label22.ForeColor = System.Drawing.Color.Black;
            this.label22.Location = new System.Drawing.Point(12, 109);
            this.label22.Name = "label22";
            this.label22.Size = new System.Drawing.Size(124, 17);
            this.label22.TabIndex = 505;
            this.label22.Text = "Trạng thái sau tiêm:";
            // 
            // editBox2
            // 
            this.editBox2.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.editBox2.Location = new System.Drawing.Point(561, 83);
            this.editBox2.Name = "editBox2";
            this.editBox2.Size = new System.Drawing.Size(70, 25);
            this.editBox2.TabIndex = 503;
            // 
            // label29
            // 
            this.label29.AutoSize = true;
            this.label29.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label29.ForeColor = System.Drawing.Color.Black;
            this.label29.Location = new System.Drawing.Point(491, 83);
            this.label29.Name = "label29";
            this.label29.Size = new System.Drawing.Size(72, 17);
            this.label29.TabIndex = 502;
            this.label29.Text = "Tuần thai:";
            // 
            // editBox1
            // 
            this.editBox1.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.editBox1.Location = new System.Drawing.Point(415, 81);
            this.editBox1.Name = "editBox1";
            this.editBox1.Size = new System.Drawing.Size(70, 25);
            this.editBox1.TabIndex = 501;
            // 
            // label28
            // 
            this.label28.AutoSize = true;
            this.label28.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label28.ForeColor = System.Drawing.Color.Black;
            this.label28.Location = new System.Drawing.Point(336, 83);
            this.label28.Name = "label28";
            this.label28.Size = new System.Drawing.Size(80, 17);
            this.label28.TabIndex = 500;
            this.label28.Text = "Tháng thai:";
            // 
            // cbotendichvu
            // 
            this.cbotendichvu.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cbotendichvu.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cbotendichvu.FormattingEnabled = true;
            this.cbotendichvu.Location = new System.Drawing.Point(138, 82);
            this.cbotendichvu.Name = "cbotendichvu";
            this.cbotendichvu.Size = new System.Drawing.Size(191, 25);
            this.cbotendichvu.TabIndex = 499;
            // 
            // label27
            // 
            this.label27.AutoSize = true;
            this.label27.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label27.ForeColor = System.Drawing.Color.Black;
            this.label27.Location = new System.Drawing.Point(80, 139);
            this.label27.Name = "label27";
            this.label27.Size = new System.Drawing.Size(56, 17);
            this.label27.TabIndex = 498;
            this.label27.Text = "Ghi chú:";
            // 
            // uiCheckBox5
            // 
            this.uiCheckBox5.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiCheckBox5.Location = new System.Drawing.Point(521, 57);
            this.uiCheckBox5.Name = "uiCheckBox5";
            this.uiCheckBox5.Size = new System.Drawing.Size(39, 23);
            this.uiCheckBox5.TabIndex = 496;
            this.uiCheckBox5.Text = "5";
            // 
            // label25
            // 
            this.label25.AutoSize = true;
            this.label25.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label25.ForeColor = System.Drawing.Color.Black;
            this.label25.Location = new System.Drawing.Point(13, 83);
            this.label25.Name = "label25";
            this.label25.Size = new System.Drawing.Size(123, 17);
            this.label25.TabIndex = 495;
            this.label25.Text = "Mũi tiêm tiếp theo:";
            // 
            // uiCheckBox4
            // 
            this.uiCheckBox4.Location = new System.Drawing.Point(491, 57);
            this.uiCheckBox4.Name = "uiCheckBox4";
            this.uiCheckBox4.Size = new System.Drawing.Size(39, 23);
            this.uiCheckBox4.TabIndex = 493;
            this.uiCheckBox4.Text = "4";
            // 
            // uiCheckBox3
            // 
            this.uiCheckBox3.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiCheckBox3.Location = new System.Drawing.Point(458, 57);
            this.uiCheckBox3.Name = "uiCheckBox3";
            this.uiCheckBox3.Size = new System.Drawing.Size(39, 23);
            this.uiCheckBox3.TabIndex = 492;
            this.uiCheckBox3.Text = "3";
            // 
            // uiCheckBox2
            // 
            this.uiCheckBox2.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiCheckBox2.Location = new System.Drawing.Point(423, 57);
            this.uiCheckBox2.Name = "uiCheckBox2";
            this.uiCheckBox2.Size = new System.Drawing.Size(39, 23);
            this.uiCheckBox2.TabIndex = 491;
            this.uiCheckBox2.Text = "2";
            // 
            // uiCheckBox1
            // 
            this.uiCheckBox1.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiCheckBox1.Location = new System.Drawing.Point(391, 57);
            this.uiCheckBox1.Name = "uiCheckBox1";
            this.uiCheckBox1.Size = new System.Drawing.Size(39, 23);
            this.uiCheckBox1.TabIndex = 490;
            this.uiCheckBox1.Text = "1";
            // 
            // label23
            // 
            this.label23.AutoSize = true;
            this.label23.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label23.ForeColor = System.Drawing.Color.Black;
            this.label23.Location = new System.Drawing.Point(309, 59);
            this.label23.Name = "label23";
            this.label23.Size = new System.Drawing.Size(80, 17);
            this.label23.TabIndex = 489;
            this.label23.Text = "Số mũi tiêm:";
            // 
            // uiButton2
            // 
            this.uiButton2.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiButton2.Image = ((System.Drawing.Image)(resources.GetObject("uiButton2.Image")));
            this.uiButton2.Location = new System.Drawing.Point(667, 101);
            this.uiButton2.Name = "uiButton2";
            this.uiButton2.Size = new System.Drawing.Size(113, 35);
            this.uiButton2.TabIndex = 488;
            this.uiButton2.Text = "Sửa thông tin";
            // 
            // cmdInCLS
            // 
            this.cmdInCLS.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdInCLS.Image = ((System.Drawing.Image)(resources.GetObject("cmdInCLS.Image")));
            this.cmdInCLS.Location = new System.Drawing.Point(667, 19);
            this.cmdInCLS.Name = "cmdInCLS";
            this.cmdInCLS.Size = new System.Drawing.Size(113, 35);
            this.cmdInCLS.TabIndex = 486;
            this.cmdInCLS.Text = "In phiếu TT";
            // 
            // chkSms
            // 
            this.chkSms.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkSms.Location = new System.Drawing.Point(221, 56);
            this.chkSms.Name = "chkSms";
            this.chkSms.Size = new System.Drawing.Size(104, 23);
            this.chkSms.TabIndex = 485;
            this.chkSms.Text = "Gửi SMS";
            // 
            // calendarCombo1
            // 
            this.calendarCombo1.CustomFormat = "dd/MM/yyyy";
            this.calendarCombo1.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.calendarCombo1.DropDownCalendar.Name = "";
            this.calendarCombo1.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.calendarCombo1.Location = new System.Drawing.Point(138, 28);
            this.calendarCombo1.Name = "calendarCombo1";
            this.calendarCombo1.ShowUpDown = true;
            this.calendarCombo1.Size = new System.Drawing.Size(189, 25);
            this.calendarCombo1.TabIndex = 50;
            this.calendarCombo1.TabStop = false;
            this.calendarCombo1.Value = new System.DateTime(2012, 2, 10, 0, 0, 0, 0);
            // 
            // label17
            // 
            this.label17.AutoSize = true;
            this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label17.ForeColor = System.Drawing.Color.Black;
            this.label17.Location = new System.Drawing.Point(61, 28);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(75, 17);
            this.label17.TabIndex = 105;
            this.label17.Text = "Ngày tiêm:";
            // 
            // editBox4
            // 
            this.editBox4.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.editBox4.Location = new System.Drawing.Point(138, 56);
            this.editBox4.Name = "editBox4";
            this.editBox4.Size = new System.Drawing.Size(70, 25);
            this.editBox4.TabIndex = 484;
            // 
            // calendarCombo2
            // 
            this.calendarCombo2.CustomFormat = "dd/MM/yyyy";
            this.calendarCombo2.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.calendarCombo2.DropDownCalendar.Name = "";
            this.calendarCombo2.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.calendarCombo2.Location = new System.Drawing.Point(447, 28);
            this.calendarCombo2.Name = "calendarCombo2";
            this.calendarCombo2.ShowUpDown = true;
            this.calendarCombo2.Size = new System.Drawing.Size(187, 25);
            this.calendarCombo2.TabIndex = 106;
            this.calendarCombo2.TabStop = false;
            this.calendarCombo2.Value = new System.DateTime(2012, 2, 10, 0, 0, 0, 0);
            // 
            // label21
            // 
            this.label21.AutoSize = true;
            this.label21.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label21.ForeColor = System.Drawing.Color.Black;
            this.label21.Location = new System.Drawing.Point(332, 28);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(110, 17);
            this.label21.TabIndex = 107;
            this.label21.Text = "Ngày nhắc tiêm:";
            // 
            // label24
            // 
            this.label24.AutoSize = true;
            this.label24.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label24.ForeColor = System.Drawing.Color.Black;
            this.label24.Location = new System.Drawing.Point(37, 57);
            this.label24.Name = "label24";
            this.label24.Size = new System.Drawing.Size(99, 17);
            this.label24.TabIndex = 483;
            this.label24.Text = "Số ngày nhắc:";
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.grdDichVuChiTiet);
            this.groupBox2.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupBox2.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupBox2.Location = new System.Drawing.Point(0, 136);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(791, 144);
            this.groupBox2.TabIndex = 1;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "Thông tin chi tiết dịch vụ";
            // 
            // grdDichVuChiTiet
            // 
            grdDichVuChiTiet_DesignTimeLayout.LayoutString = resources.GetString("grdDichVuChiTiet_DesignTimeLayout.LayoutString");
            this.grdDichVuChiTiet.DesignTimeLayout = grdDichVuChiTiet_DesignTimeLayout;
            this.grdDichVuChiTiet.Dock = System.Windows.Forms.DockStyle.Top;
            this.grdDichVuChiTiet.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdDichVuChiTiet.FilterRowButtonStyle = Janus.Windows.GridEX.FilterRowButtonStyle.ConditionOperatorDropDown;
            this.grdDichVuChiTiet.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdDichVuChiTiet.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdDichVuChiTiet.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
            this.grdDichVuChiTiet.GroupByBoxVisible = false;
            this.grdDichVuChiTiet.Location = new System.Drawing.Point(3, 21);
            this.grdDichVuChiTiet.Name = "grdDichVuChiTiet";
            this.grdDichVuChiTiet.RecordNavigator = true;
            this.grdDichVuChiTiet.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdDichVuChiTiet.Size = new System.Drawing.Size(785, 121);
            this.grdDichVuChiTiet.TabIndex = 10;
            this.grdDichVuChiTiet.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.grdTestInfo);
            this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupBox1.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupBox1.Location = new System.Drawing.Point(0, 0);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(791, 136);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Thông tin dịch vụ đã đăng ký";
            // 
            // grdTestInfo
            // 
            grdTestInfo_DesignTimeLayout.LayoutString = resources.GetString("grdTestInfo_DesignTimeLayout.LayoutString");
            this.grdTestInfo.DesignTimeLayout = grdTestInfo_DesignTimeLayout;
            this.grdTestInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdTestInfo.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdTestInfo.FilterRowButtonStyle = Janus.Windows.GridEX.FilterRowButtonStyle.ConditionOperatorDropDown;
            this.grdTestInfo.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdTestInfo.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdTestInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
            this.grdTestInfo.GroupByBoxVisible = false;
            this.grdTestInfo.Location = new System.Drawing.Point(3, 21);
            this.grdTestInfo.Name = "grdTestInfo";
            this.grdTestInfo.RecordNavigator = true;
            this.grdTestInfo.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdTestInfo.Size = new System.Drawing.Size(785, 112);
            this.grdTestInfo.TabIndex = 11;
            this.grdTestInfo.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.flpTestType);
            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, 463);
            this.panel1.TabIndex = 0;
            // 
            // flpTestType
            // 
            this.flpTestType.AutoScroll = true;
            this.flpTestType.Dock = System.Windows.Forms.DockStyle.Fill;
            this.flpTestType.Location = new System.Drawing.Point(0, 0);
            this.flpTestType.Name = "flpTestType";
            this.flpTestType.Size = new System.Drawing.Size(196, 463);
            this.flpTestType.TabIndex = 1;
            // 
            // txtTrieuChung
            // 
            this.txtTrieuChung.Location = new System.Drawing.Point(129, 220);
            this.txtTrieuChung.Name = "txtTrieuChung";
            this.txtTrieuChung.Size = new System.Drawing.Size(844, 25);
            this.txtTrieuChung.TabIndex = 517;
            // 
            // label18
            // 
            this.label18.AutoSize = true;
            this.label18.Location = new System.Drawing.Point(48, 223);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(77, 17);
            this.label18.TabIndex = 516;
            this.label18.Text = "Triệu trứng:";
            // 
            // cboTram
            // 
            this.cboTram.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboTram.FormattingEnabled = true;
            this.cboTram.Location = new System.Drawing.Point(770, 162);
            this.cboTram.Name = "cboTram";
            this.cboTram.Size = new System.Drawing.Size(200, 25);
            this.cboTram.TabIndex = 518;
            // 
            // txtNghe
            // 
            this.txtNghe.BackColor = System.Drawing.SystemColors.Info;
            this.txtNghe.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNghe.Location = new System.Drawing.Point(427, 129);
            this.txtNghe.Name = "txtNghe";
            this.txtNghe.Size = new System.Drawing.Size(204, 25);
            this.txtNghe.TabIndex = 37;
            // 
            // txtDiaChi
            // 
            this.txtDiaChi.BackColor = System.Drawing.SystemColors.Info;
            this.txtDiaChi.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDiaChi.ForeColor = System.Drawing.Color.Black;
            this.txtDiaChi.Location = new System.Drawing.Point(129, 189);
            this.txtDiaChi.Name = "txtDiaChi";
            this.txtDiaChi.Size = new System.Drawing.Size(290, 25);
            this.txtDiaChi.TabIndex = 1;
            this.txtDiaChi.TextChanged += new System.EventHandler(this.txtDiaChi_TextChanged);
            // 
            // Frm_TiepDonBN
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1001, 810);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.grpThongTinBN);
            this.Name = "Frm_TiepDonBN";
            this.Text = "FrmTiepDonBN";
            this.Load += new System.EventHandler(this.FrmTiepDonBN_Load);
            ((System.ComponentModel.ISupportInitialize)(this.grpThongTinBN)).EndInit();
            this.grpThongTinBN.ResumeLayout(false);
            this.grpThongTinBN.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
            this.uiGroupBox1.ResumeLayout(false);
            this.tabControl1.ResumeLayout(false);
            this.tabPage2.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdDichVuChiTiet)).EndInit();
            this.groupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdTestInfo)).EndInit();
            this.panel1.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()
 {
     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();
     this.xGroupBox2          = new MMIS.Component.XGroupBox();
     this.txtVerifyedDesc     = new MMIS.Component.XEditBox();
     this.xLabel7             = new MMIS.Component.XLabel();
     this.dtVerifyedDate      = new MMIS.Component.XDateTimePicker();
     this.xLabel6             = new MMIS.Component.XLabel();
     this.txtSignUserId       = new MMIS.UI.XSelectStaffInfoEditBox();
     this.lblDetectUserId     = new MMIS.Component.XLabel();
     this.txtCheckedUserName  = new MMIS.Component.XEditBox();
     this.xLabel4             = new MMIS.Component.XLabel();
     this.txtCheckedDesc      = new MMIS.Component.XEditBox();
     this.xLabel5             = new MMIS.Component.XLabel();
     this.txtReceiveUser      = new MMIS.Component.XEditBox();
     this.xLabel2             = new MMIS.Component.XLabel();
     this.txtReceiveDesc      = new MMIS.Component.XEditBox();
     this.xLabel3             = new MMIS.Component.XLabel();
     this.xGroupBox1          = new MMIS.Component.XGroupBox();
     this.dtCheckedDate       = new MMIS.Component.XDateTimePicker();
     this.xLabel8             = new MMIS.Component.XLabel();
     this.txtCheckAccord      = new MMIS.Component.XEditBox();
     this.lblCheckAccord      = new MMIS.Component.XLabel();
     this.txtFactoryNo        = new MMIS.Component.XEditBox();
     this.lblFactoryNo        = new MMIS.Component.XLabel();
     this.txtFactoryName      = new MMIS.Component.XEditBox();
     this.lblFactoryName      = new MMIS.Component.XLabel();
     this.nebQuanlity         = new MMIS.Component.XNumberEditBox();
     this.lblQuanlity         = new MMIS.Component.XLabel();
     this.txtEquipmentCustId  = new MMIS.Component.XEditBox();
     this.txtEquipmentNo      = new MMIS.Component.XEditBox();
     this.xLabel1             = new MMIS.Component.XLabel();
     this.cboSourceTypeId     = new MMIS.Component.XCombobox();
     this.cboEquipmentType    = new MMIS.Component.XCombobox();
     this.txtSpec             = new MMIS.Component.XEditBox();
     this.txtModel            = new MMIS.Component.XEditBox();
     this.dtSourceTime        = new MMIS.Component.XDateTimePicker();
     this.lblEquipmentType    = new MMIS.Component.XLabel();
     this.lblEquipmentCustId  = new MMIS.Component.XLabel();
     this.lblSpec             = new MMIS.Component.XLabel();
     this.lblModel            = new MMIS.Component.XLabel();
     this.lblSourceTime       = new MMIS.Component.XLabel();
     this.lblSourceTypeId     = new MMIS.Component.XLabel();
     this.txtEquipmentCheckId = new MMIS.UI.XSelectEquipmentCheckEditBox();
     this.lblEquipmentCheckId = new MMIS.Component.XLabel();
     this.xGroupBox3          = new MMIS.Component.XGroupBox();
     this.txtBackReason       = new MMIS.Component.XEditBox();
     this.chkIsBack           = new MMIS.Component.XCheckBox();
     this.btnPrint            = new MMIS.Component.XButton();
     ((System.ComponentModel.ISupportInitialize)(this.xGroupBox2)).BeginInit();
     this.xGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xGroupBox1)).BeginInit();
     this.xGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xGroupBox3)).BeginInit();
     this.xGroupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // btnOk
     //
     this.btnOk.Location = new System.Drawing.Point(655, 435);
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(742, 435);
     //
     // xGroupBox2
     //
     this.xGroupBox2.Controls.Add(this.txtVerifyedDesc);
     this.xGroupBox2.Controls.Add(this.xLabel7);
     this.xGroupBox2.Controls.Add(this.dtVerifyedDate);
     this.xGroupBox2.Controls.Add(this.xLabel6);
     this.xGroupBox2.Controls.Add(this.txtSignUserId);
     this.xGroupBox2.Controls.Add(this.lblDetectUserId);
     this.xGroupBox2.Controls.Add(this.txtCheckedUserName);
     this.xGroupBox2.Controls.Add(this.xLabel4);
     this.xGroupBox2.Controls.Add(this.txtCheckedDesc);
     this.xGroupBox2.Controls.Add(this.xLabel5);
     this.xGroupBox2.Controls.Add(this.txtReceiveUser);
     this.xGroupBox2.Controls.Add(this.xLabel2);
     this.xGroupBox2.Controls.Add(this.txtReceiveDesc);
     this.xGroupBox2.Controls.Add(this.xLabel3);
     this.xGroupBox2.Location    = new System.Drawing.Point(12, 126);
     this.xGroupBox2.Name        = "xGroupBox2";
     this.xGroupBox2.Size        = new System.Drawing.Size(805, 247);
     this.xGroupBox2.TabIndex    = 1;
     this.xGroupBox2.Text        = "核验信息";
     this.xGroupBox2.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2007;
     //
     // txtVerifyedDesc
     //
     this.txtVerifyedDesc.IsAllowEmpty = true;
     this.txtVerifyedDesc.Location     = new System.Drawing.Point(76, 195);
     this.txtVerifyedDesc.Multiline    = true;
     this.txtVerifyedDesc.Name         = "txtVerifyedDesc";
     this.txtVerifyedDesc.Size         = new System.Drawing.Size(716, 45);
     this.txtVerifyedDesc.TabIndex     = 7;
     this.txtVerifyedDesc.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // xLabel7
     //
     this.xLabel7.AutoSize  = true;
     this.xLabel7.Font      = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xLabel7.ForeColor = System.Drawing.Color.Blue;
     this.xLabel7.Location  = new System.Drawing.Point(14, 198);
     this.xLabel7.Name      = "xLabel7";
     this.xLabel7.Size      = new System.Drawing.Size(56, 17);
     this.xLabel7.TabIndex  = 168;
     this.xLabel7.Text      = "核验描述";
     //
     // dtVerifyedDate
     //
     //
     //
     //
     this.dtVerifyedDate.DropDownCalendar.Name        = "";
     this.dtVerifyedDate.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
     this.dtVerifyedDate.Location    = new System.Drawing.Point(229, 168);
     this.dtVerifyedDate.Name        = "dtVerifyedDate";
     this.dtVerifyedDate.Size        = new System.Drawing.Size(106, 23);
     this.dtVerifyedDate.TabIndex    = 6;
     this.dtVerifyedDate.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
     //
     // xLabel6
     //
     this.xLabel6.AutoSize  = true;
     this.xLabel6.Font      = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xLabel6.ForeColor = System.Drawing.Color.Blue;
     this.xLabel6.Location  = new System.Drawing.Point(167, 171);
     this.xLabel6.Name      = "xLabel6";
     this.xLabel6.Size      = new System.Drawing.Size(56, 17);
     this.xLabel6.TabIndex  = 166;
     this.xLabel6.Text      = "核验时间";
     //
     // txtSignUserId
     //
     this.txtSignUserId.ButtonStyle      = Janus.Windows.GridEX.EditControls.EditButtonStyle.Ellipsis;
     this.txtSignUserId.DisplayMember    = "";
     this.txtSignUserId.IsAllowEmpty     = true;
     this.txtSignUserId.Location         = new System.Drawing.Point(76, 168);
     this.txtSignUserId.Name             = "txtSignUserId";
     this.txtSignUserId.QueryCheckBox    = null;
     this.txtSignUserId.QueryFieldName   = null;
     this.txtSignUserId.QueryOperateType = MMIS.Component.XQueryOperateType.Equal;
     this.txtSignUserId.ReadOnly         = true;
     this.txtSignUserId.SelectedModel    = null;
     this.txtSignUserId.Size             = new System.Drawing.Size(85, 23);
     this.txtSignUserId.TabIndex         = 5;
     this.txtSignUserId.ValueMember      = "";
     this.txtSignUserId.VisualStyle      = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // lblDetectUserId
     //
     this.lblDetectUserId.AutoSize  = true;
     this.lblDetectUserId.Font      = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblDetectUserId.ForeColor = System.Drawing.Color.Blue;
     this.lblDetectUserId.Location  = new System.Drawing.Point(4, 171);
     this.lblDetectUserId.Name      = "lblDetectUserId";
     this.lblDetectUserId.Size      = new System.Drawing.Size(68, 17);
     this.lblDetectUserId.TabIndex  = 164;
     this.lblDetectUserId.Text      = "指定签发员";
     //
     // txtCheckedUserName
     //
     this.txtCheckedUserName.IsAllowEmpty = true;
     this.txtCheckedUserName.Location     = new System.Drawing.Point(76, 94);
     this.txtCheckedUserName.Name         = "txtCheckedUserName";
     this.txtCheckedUserName.ReadOnly     = true;
     this.txtCheckedUserName.Size         = new System.Drawing.Size(185, 23);
     this.txtCheckedUserName.TabIndex     = 3;
     this.txtCheckedUserName.TabStop      = false;
     this.txtCheckedUserName.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // xLabel4
     //
     this.xLabel4.AutoSize  = true;
     this.xLabel4.ForeColor = System.Drawing.Color.Black;
     this.xLabel4.Location  = new System.Drawing.Point(26, 97);
     this.xLabel4.Name      = "xLabel4";
     this.xLabel4.Size      = new System.Drawing.Size(44, 17);
     this.xLabel4.TabIndex  = 161;
     this.xLabel4.Text      = "检定员";
     //
     // txtCheckedDesc
     //
     this.txtCheckedDesc.IsAllowEmpty = true;
     this.txtCheckedDesc.Location     = new System.Drawing.Point(76, 120);
     this.txtCheckedDesc.Multiline    = true;
     this.txtCheckedDesc.Name         = "txtCheckedDesc";
     this.txtCheckedDesc.ReadOnly     = true;
     this.txtCheckedDesc.Size         = new System.Drawing.Size(716, 45);
     this.txtCheckedDesc.TabIndex     = 4;
     this.txtCheckedDesc.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // xLabel5
     //
     this.xLabel5.AutoSize  = true;
     this.xLabel5.Font      = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xLabel5.ForeColor = System.Drawing.Color.Black;
     this.xLabel5.Location  = new System.Drawing.Point(14, 123);
     this.xLabel5.Name      = "xLabel5";
     this.xLabel5.Size      = new System.Drawing.Size(56, 17);
     this.xLabel5.TabIndex  = 158;
     this.xLabel5.Text      = "检定描述";
     //
     // txtReceiveUser
     //
     this.txtReceiveUser.IsAllowEmpty = true;
     this.txtReceiveUser.Location     = new System.Drawing.Point(76, 19);
     this.txtReceiveUser.Name         = "txtReceiveUser";
     this.txtReceiveUser.ReadOnly     = true;
     this.txtReceiveUser.Size         = new System.Drawing.Size(185, 23);
     this.txtReceiveUser.TabIndex     = 1;
     this.txtReceiveUser.TabStop      = false;
     this.txtReceiveUser.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // xLabel2
     //
     this.xLabel2.AutoSize  = true;
     this.xLabel2.ForeColor = System.Drawing.Color.Black;
     this.xLabel2.Location  = new System.Drawing.Point(26, 22);
     this.xLabel2.Name      = "xLabel2";
     this.xLabel2.Size      = new System.Drawing.Size(44, 17);
     this.xLabel2.TabIndex  = 0;
     this.xLabel2.Text      = "接收人";
     //
     // txtReceiveDesc
     //
     this.txtReceiveDesc.IsAllowEmpty = true;
     this.txtReceiveDesc.Location     = new System.Drawing.Point(76, 46);
     this.txtReceiveDesc.Multiline    = true;
     this.txtReceiveDesc.Name         = "txtReceiveDesc";
     this.txtReceiveDesc.ReadOnly     = true;
     this.txtReceiveDesc.Size         = new System.Drawing.Size(716, 45);
     this.txtReceiveDesc.TabIndex     = 2;
     this.txtReceiveDesc.TabStop      = false;
     this.txtReceiveDesc.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // xLabel3
     //
     this.xLabel3.AutoSize  = true;
     this.xLabel3.ForeColor = System.Drawing.Color.Black;
     this.xLabel3.Location  = new System.Drawing.Point(14, 49);
     this.xLabel3.Name      = "xLabel3";
     this.xLabel3.Size      = new System.Drawing.Size(56, 17);
     this.xLabel3.TabIndex  = 15;
     this.xLabel3.Text      = "接收描述";
     //
     // xGroupBox1
     //
     this.xGroupBox1.Controls.Add(this.dtCheckedDate);
     this.xGroupBox1.Controls.Add(this.xLabel8);
     this.xGroupBox1.Controls.Add(this.txtCheckAccord);
     this.xGroupBox1.Controls.Add(this.lblCheckAccord);
     this.xGroupBox1.Controls.Add(this.txtFactoryNo);
     this.xGroupBox1.Controls.Add(this.lblFactoryNo);
     this.xGroupBox1.Controls.Add(this.txtFactoryName);
     this.xGroupBox1.Controls.Add(this.lblFactoryName);
     this.xGroupBox1.Controls.Add(this.nebQuanlity);
     this.xGroupBox1.Controls.Add(this.lblQuanlity);
     this.xGroupBox1.Controls.Add(this.txtEquipmentCustId);
     this.xGroupBox1.Controls.Add(this.txtEquipmentNo);
     this.xGroupBox1.Controls.Add(this.xLabel1);
     this.xGroupBox1.Controls.Add(this.cboSourceTypeId);
     this.xGroupBox1.Controls.Add(this.cboEquipmentType);
     this.xGroupBox1.Controls.Add(this.txtSpec);
     this.xGroupBox1.Controls.Add(this.txtModel);
     this.xGroupBox1.Controls.Add(this.dtSourceTime);
     this.xGroupBox1.Controls.Add(this.lblEquipmentType);
     this.xGroupBox1.Controls.Add(this.lblEquipmentCustId);
     this.xGroupBox1.Controls.Add(this.lblSpec);
     this.xGroupBox1.Controls.Add(this.lblModel);
     this.xGroupBox1.Controls.Add(this.lblSourceTime);
     this.xGroupBox1.Controls.Add(this.lblSourceTypeId);
     this.xGroupBox1.Controls.Add(this.txtEquipmentCheckId);
     this.xGroupBox1.Controls.Add(this.lblEquipmentCheckId);
     this.xGroupBox1.Location    = new System.Drawing.Point(12, -1);
     this.xGroupBox1.Name        = "xGroupBox1";
     this.xGroupBox1.Size        = new System.Drawing.Size(806, 126);
     this.xGroupBox1.TabIndex    = 0;
     this.xGroupBox1.Text        = "设备信息";
     this.xGroupBox1.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2007;
     //
     // dtCheckedDate
     //
     this.dtCheckedDate.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     //
     //
     //
     this.dtCheckedDate.DropDownCalendar.Name        = "";
     this.dtCheckedDate.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
     this.dtCheckedDate.Location    = new System.Drawing.Point(592, 97);
     this.dtCheckedDate.Name        = "dtCheckedDate";
     this.dtCheckedDate.ReadOnly    = true;
     this.dtCheckedDate.Size        = new System.Drawing.Size(200, 23);
     this.dtCheckedDate.TabIndex    = 170;
     this.dtCheckedDate.TabStop     = false;
     this.dtCheckedDate.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
     //
     // xLabel8
     //
     this.xLabel8.AutoSize  = true;
     this.xLabel8.ForeColor = System.Drawing.Color.Black;
     this.xLabel8.Location  = new System.Drawing.Point(530, 100);
     this.xLabel8.Name      = "xLabel8";
     this.xLabel8.Size      = new System.Drawing.Size(56, 17);
     this.xLabel8.TabIndex  = 171;
     this.xLabel8.Text      = "检定时间";
     //
     // txtCheckAccord
     //
     this.txtCheckAccord.IsAllowEmpty = true;
     this.txtCheckAccord.Location     = new System.Drawing.Point(592, 118);
     this.txtCheckAccord.Name         = "txtCheckAccord";
     this.txtCheckAccord.ReadOnly     = true;
     this.txtCheckAccord.Size         = new System.Drawing.Size(200, 23);
     this.txtCheckAccord.TabIndex     = 168;
     this.txtCheckAccord.Visible      = false;
     this.txtCheckAccord.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // lblCheckAccord
     //
     this.lblCheckAccord.AutoSize  = true;
     this.lblCheckAccord.ForeColor = System.Drawing.Color.Black;
     this.lblCheckAccord.Location  = new System.Drawing.Point(530, 122);
     this.lblCheckAccord.Name      = "lblCheckAccord";
     this.lblCheckAccord.Size      = new System.Drawing.Size(56, 17);
     this.lblCheckAccord.TabIndex  = 169;
     this.lblCheckAccord.Text      = "检定依据";
     this.lblCheckAccord.Visible   = false;
     //
     // txtFactoryNo
     //
     this.txtFactoryNo.IsAllowEmpty = true;
     this.txtFactoryNo.Location     = new System.Drawing.Point(394, 70);
     this.txtFactoryNo.Name         = "txtFactoryNo";
     this.txtFactoryNo.ReadOnly     = true;
     this.txtFactoryNo.Size         = new System.Drawing.Size(126, 23);
     this.txtFactoryNo.TabIndex     = 166;
     this.txtFactoryNo.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // lblFactoryNo
     //
     this.lblFactoryNo.AutoSize  = true;
     this.lblFactoryNo.ForeColor = System.Drawing.Color.Black;
     this.lblFactoryNo.Location  = new System.Drawing.Point(334, 73);
     this.lblFactoryNo.Name      = "lblFactoryNo";
     this.lblFactoryNo.Size      = new System.Drawing.Size(56, 17);
     this.lblFactoryNo.TabIndex  = 167;
     this.lblFactoryNo.Text      = "出厂编号";
     //
     // txtFactoryName
     //
     this.txtFactoryName.IsAllowEmpty = true;
     this.txtFactoryName.Location     = new System.Drawing.Point(592, 70);
     this.txtFactoryName.Name         = "txtFactoryName";
     this.txtFactoryName.ReadOnly     = true;
     this.txtFactoryName.Size         = new System.Drawing.Size(200, 23);
     this.txtFactoryName.TabIndex     = 164;
     this.txtFactoryName.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // lblFactoryName
     //
     this.lblFactoryName.AutoSize  = true;
     this.lblFactoryName.ForeColor = System.Drawing.Color.Black;
     this.lblFactoryName.Location  = new System.Drawing.Point(530, 73);
     this.lblFactoryName.Name      = "lblFactoryName";
     this.lblFactoryName.Size      = new System.Drawing.Size(56, 17);
     this.lblFactoryName.TabIndex  = 165;
     this.lblFactoryName.Text      = "制造单位";
     //
     // nebQuanlity
     //
     this.nebQuanlity.FormatString        = "0";
     this.nebQuanlity.IsAllowEmpty        = false;
     this.nebQuanlity.IsAllowLessThanZero = false;
     this.nebQuanlity.IsAllowZero         = false;
     this.nebQuanlity.Location            = new System.Drawing.Point(244, 70);
     this.nebQuanlity.Name     = "nebQuanlity";
     this.nebQuanlity.ReadOnly = true;
     this.nebQuanlity.Size     = new System.Drawing.Size(85, 23);
     this.nebQuanlity.TabIndex = 162;
     this.nebQuanlity.TabStop  = false;
     this.nebQuanlity.Text     = "0";
     this.nebQuanlity.Value    = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.nebQuanlity.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // lblQuanlity
     //
     this.lblQuanlity.AutoSize  = true;
     this.lblQuanlity.ForeColor = System.Drawing.Color.Black;
     this.lblQuanlity.Location  = new System.Drawing.Point(206, 73);
     this.lblQuanlity.Name      = "lblQuanlity";
     this.lblQuanlity.Size      = new System.Drawing.Size(32, 17);
     this.lblQuanlity.TabIndex  = 163;
     this.lblQuanlity.Text      = "数量";
     //
     // txtEquipmentCustId
     //
     this.txtEquipmentCustId.IsAllowEmpty = false;
     this.txtEquipmentCustId.Location     = new System.Drawing.Point(76, 44);
     this.txtEquipmentCustId.Name         = "txtEquipmentCustId";
     this.txtEquipmentCustId.ReadOnly     = true;
     this.txtEquipmentCustId.Size         = new System.Drawing.Size(444, 23);
     this.txtEquipmentCustId.TabIndex     = 132;
     this.txtEquipmentCustId.TabStop      = false;
     this.txtEquipmentCustId.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // txtEquipmentNo
     //
     this.txtEquipmentNo.IsAllowEmpty = false;
     this.txtEquipmentNo.Location     = new System.Drawing.Point(592, 18);
     this.txtEquipmentNo.Name         = "txtEquipmentNo";
     this.txtEquipmentNo.ReadOnly     = true;
     this.txtEquipmentNo.Size         = new System.Drawing.Size(200, 23);
     this.txtEquipmentNo.TabIndex     = 131;
     this.txtEquipmentNo.TabStop      = false;
     this.txtEquipmentNo.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // xLabel1
     //
     this.xLabel1.AutoSize  = true;
     this.xLabel1.ForeColor = System.Drawing.Color.Black;
     this.xLabel1.Location  = new System.Drawing.Point(529, 21);
     this.xLabel1.Name      = "xLabel1";
     this.xLabel1.Size      = new System.Drawing.Size(56, 17);
     this.xLabel1.TabIndex  = 149;
     this.xLabel1.Text      = "设备编号";
     //
     // cboSourceTypeId
     //
     this.cboSourceTypeId.ComboStyle   = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.cboSourceTypeId.IsAllowEmpty = false;
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.IsSeparator       = false;
     uiComboBoxItem1.Text              = "检定";
     uiComboBoxItem1.Value             = "检定";
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator       = false;
     uiComboBoxItem2.Text              = "标准";
     uiComboBoxItem2.Value             = "标准";
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator       = false;
     uiComboBoxItem3.Text              = "测试";
     uiComboBoxItem3.Value             = "测试";
     this.cboSourceTypeId.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2,
         uiComboBoxItem3
     });
     this.cboSourceTypeId.Location    = new System.Drawing.Point(335, 97);
     this.cboSourceTypeId.Name        = "cboSourceTypeId";
     this.cboSourceTypeId.ReadOnly    = true;
     this.cboSourceTypeId.Size        = new System.Drawing.Size(185, 23);
     this.cboSourceTypeId.TabIndex    = 138;
     this.cboSourceTypeId.TabStop     = false;
     this.cboSourceTypeId.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
     //
     // cboEquipmentType
     //
     this.cboEquipmentType.ComboStyle   = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.cboEquipmentType.IsAllowEmpty = false;
     uiComboBoxItem4.FormatStyle.Alpha  = 0;
     uiComboBoxItem4.IsSeparator        = false;
     uiComboBoxItem4.Text              = "送检设备";
     uiComboBoxItem4.Value             = "送检设备";
     uiComboBoxItem5.FormatStyle.Alpha = 0;
     uiComboBoxItem5.IsSeparator       = false;
     uiComboBoxItem5.Text              = "标准设备";
     uiComboBoxItem5.Value             = "标准设备";
     this.cboEquipmentType.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem4,
         uiComboBoxItem5
     });
     this.cboEquipmentType.Location    = new System.Drawing.Point(335, 18);
     this.cboEquipmentType.Name        = "cboEquipmentType";
     this.cboEquipmentType.ReadOnly    = true;
     this.cboEquipmentType.Size        = new System.Drawing.Size(185, 23);
     this.cboEquipmentType.TabIndex    = 130;
     this.cboEquipmentType.TabStop     = false;
     this.cboEquipmentType.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
     //
     // txtSpec
     //
     this.txtSpec.IsAllowEmpty = true;
     this.txtSpec.Location     = new System.Drawing.Point(592, 43);
     this.txtSpec.Name         = "txtSpec";
     this.txtSpec.ReadOnly     = true;
     this.txtSpec.Size         = new System.Drawing.Size(200, 23);
     this.txtSpec.TabIndex     = 133;
     this.txtSpec.TabStop      = false;
     this.txtSpec.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // txtModel
     //
     this.txtModel.IsAllowEmpty = true;
     this.txtModel.Location     = new System.Drawing.Point(76, 70);
     this.txtModel.Name         = "txtModel";
     this.txtModel.ReadOnly     = true;
     this.txtModel.Size         = new System.Drawing.Size(124, 23);
     this.txtModel.TabIndex     = 134;
     this.txtModel.TabStop      = false;
     this.txtModel.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // dtSourceTime
     //
     this.dtSourceTime.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     //
     //
     //
     this.dtSourceTime.DropDownCalendar.Name        = "";
     this.dtSourceTime.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
     this.dtSourceTime.Location    = new System.Drawing.Point(76, 97);
     this.dtSourceTime.Name        = "dtSourceTime";
     this.dtSourceTime.ReadOnly    = true;
     this.dtSourceTime.Size        = new System.Drawing.Size(185, 23);
     this.dtSourceTime.TabIndex    = 137;
     this.dtSourceTime.TabStop     = false;
     this.dtSourceTime.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2007;
     //
     // lblEquipmentType
     //
     this.lblEquipmentType.AutoSize  = true;
     this.lblEquipmentType.ForeColor = System.Drawing.Color.Black;
     this.lblEquipmentType.Location  = new System.Drawing.Point(273, 21);
     this.lblEquipmentType.Name      = "lblEquipmentType";
     this.lblEquipmentType.Size      = new System.Drawing.Size(56, 17);
     this.lblEquipmentType.TabIndex  = 140;
     this.lblEquipmentType.Text      = "设备类型";
     //
     // lblEquipmentCustId
     //
     this.lblEquipmentCustId.AutoSize  = true;
     this.lblEquipmentCustId.ForeColor = System.Drawing.Color.Black;
     this.lblEquipmentCustId.Location  = new System.Drawing.Point(9, 46);
     this.lblEquipmentCustId.Name      = "lblEquipmentCustId";
     this.lblEquipmentCustId.Size      = new System.Drawing.Size(56, 17);
     this.lblEquipmentCustId.TabIndex  = 141;
     this.lblEquipmentCustId.Text      = "送检单位";
     //
     // lblSpec
     //
     this.lblSpec.AutoSize  = true;
     this.lblSpec.ForeColor = System.Drawing.Color.Black;
     this.lblSpec.Location  = new System.Drawing.Point(530, 46);
     this.lblSpec.Name      = "lblSpec";
     this.lblSpec.Size      = new System.Drawing.Size(32, 17);
     this.lblSpec.TabIndex  = 142;
     this.lblSpec.Text      = "规格";
     //
     // lblModel
     //
     this.lblModel.AutoSize  = true;
     this.lblModel.ForeColor = System.Drawing.Color.Black;
     this.lblModel.Location  = new System.Drawing.Point(11, 73);
     this.lblModel.Name      = "lblModel";
     this.lblModel.Size      = new System.Drawing.Size(32, 17);
     this.lblModel.TabIndex  = 143;
     this.lblModel.Text      = "型号";
     //
     // lblSourceTime
     //
     this.lblSourceTime.AutoSize  = true;
     this.lblSourceTime.ForeColor = System.Drawing.Color.Black;
     this.lblSourceTime.Location  = new System.Drawing.Point(10, 100);
     this.lblSourceTime.Name      = "lblSourceTime";
     this.lblSourceTime.Size      = new System.Drawing.Size(56, 17);
     this.lblSourceTime.TabIndex  = 144;
     this.lblSourceTime.Text      = "溯源时间";
     //
     // lblSourceTypeId
     //
     this.lblSourceTypeId.AutoSize  = true;
     this.lblSourceTypeId.ForeColor = System.Drawing.Color.Black;
     this.lblSourceTypeId.Location  = new System.Drawing.Point(273, 100);
     this.lblSourceTypeId.Name      = "lblSourceTypeId";
     this.lblSourceTypeId.Size      = new System.Drawing.Size(56, 17);
     this.lblSourceTypeId.TabIndex  = 146;
     this.lblSourceTypeId.Text      = "溯源方式";
     //
     // txtEquipmentCheckId
     //
     this.txtEquipmentCheckId.ButtonStyle      = Janus.Windows.GridEX.EditControls.EditButtonStyle.Ellipsis;
     this.txtEquipmentCheckId.DisplayMember    = "";
     this.txtEquipmentCheckId.Enabled          = false;
     this.txtEquipmentCheckId.IsAllowEmpty     = false;
     this.txtEquipmentCheckId.Location         = new System.Drawing.Point(76, 18);
     this.txtEquipmentCheckId.Name             = "txtEquipmentCheckId";
     this.txtEquipmentCheckId.QueryCheckBox    = null;
     this.txtEquipmentCheckId.QueryFieldName   = null;
     this.txtEquipmentCheckId.QueryOperateType = MMIS.Component.XQueryOperateType.Equal;
     this.txtEquipmentCheckId.ReadOnly         = true;
     this.txtEquipmentCheckId.SelectedModel    = null;
     this.txtEquipmentCheckId.Size             = new System.Drawing.Size(185, 23);
     this.txtEquipmentCheckId.TabIndex         = 128;
     this.txtEquipmentCheckId.TabStop          = false;
     this.txtEquipmentCheckId.ValueMember      = "";
     this.txtEquipmentCheckId.VisualStyle      = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // lblEquipmentCheckId
     //
     this.lblEquipmentCheckId.AutoSize  = true;
     this.lblEquipmentCheckId.Font      = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblEquipmentCheckId.ForeColor = System.Drawing.Color.Black;
     this.lblEquipmentCheckId.Location  = new System.Drawing.Point(9, 20);
     this.lblEquipmentCheckId.Name      = "lblEquipmentCheckId";
     this.lblEquipmentCheckId.Size      = new System.Drawing.Size(56, 17);
     this.lblEquipmentCheckId.TabIndex  = 129;
     this.lblEquipmentCheckId.Text      = "检定设备";
     //
     // xGroupBox3
     //
     this.xGroupBox3.Controls.Add(this.txtBackReason);
     this.xGroupBox3.Controls.Add(this.chkIsBack);
     this.xGroupBox3.Location    = new System.Drawing.Point(8, 376);
     this.xGroupBox3.Name        = "xGroupBox3";
     this.xGroupBox3.Size        = new System.Drawing.Size(806, 51);
     this.xGroupBox3.TabIndex    = 101;
     this.xGroupBox3.Text        = "核验退回";
     this.xGroupBox3.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2007;
     //
     // txtBackReason
     //
     this.txtBackReason.IsAllowEmpty = true;
     this.txtBackReason.Location     = new System.Drawing.Point(115, 18);
     this.txtBackReason.Name         = "txtBackReason";
     this.txtBackReason.Size         = new System.Drawing.Size(678, 23);
     this.txtBackReason.TabIndex     = 172;
     this.txtBackReason.VisualStyle  = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // chkIsBack
     //
     this.chkIsBack.Location    = new System.Drawing.Point(13, 18);
     this.chkIsBack.Model       = null;
     this.chkIsBack.Name        = "chkIsBack";
     this.chkIsBack.Size        = new System.Drawing.Size(96, 23);
     this.chkIsBack.TabIndex    = 171;
     this.chkIsBack.Text        = "退出重新检定";
     this.chkIsBack.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
     //
     // btnPrint
     //
     this.btnPrint.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrint.ImageIndex  = 84;
     this.btnPrint.Location    = new System.Drawing.Point(8, 435);
     this.btnPrint.Name        = "btnPrint";
     this.btnPrint.Size        = new System.Drawing.Size(109, 27);
     this.btnPrint.TabIndex    = 104;
     this.btnPrint.Text        = "预览报告";
     this.btnPrint.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
     this.btnPrint.Click      += new System.EventHandler(this.btnPrint_Click);
     //
     // frmEquipmentVerifyedEdit
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(826, 471);
     this.Controls.Add(this.btnPrint);
     this.Controls.Add(this.xGroupBox3);
     this.Controls.Add(this.xGroupBox2);
     this.Controls.Add(this.xGroupBox1);
     this.Name = "frmEquipmentVerifyedEdit";
     this.Text = "设备核验";
     this.Controls.SetChildIndex(this.btnOk, 0);
     this.Controls.SetChildIndex(this.btnCancel, 0);
     this.Controls.SetChildIndex(this.xGroupBox1, 0);
     this.Controls.SetChildIndex(this.xGroupBox2, 0);
     this.Controls.SetChildIndex(this.xGroupBox3, 0);
     this.Controls.SetChildIndex(this.btnPrint, 0);
     ((System.ComponentModel.ISupportInitialize)(this.xGroupBox2)).EndInit();
     this.xGroupBox2.ResumeLayout(false);
     this.xGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xGroupBox1)).EndInit();
     this.xGroupBox1.ResumeLayout(false);
     this.xGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xGroupBox3)).EndInit();
     this.xGroupBox3.ResumeLayout(false);
     this.xGroupBox3.PerformLayout();
     this.ResumeLayout(false);
 }
Example #42
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </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();
     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.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.EditControls.UIComboBoxItem uiComboBoxItem10 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem11 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem12 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem13 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem14 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem15 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem16 = new Janus.Windows.EditControls.UIComboBoxItem();
     this.label1             = new System.Windows.Forms.Label();
     this.label2             = new System.Windows.Forms.Label();
     this.txtBestMapScale    = new System.Windows.Forms.TextBox();
     this.btnNewMapScale     = new System.Windows.Forms.Button();
     this.btnBestMapScale    = new System.Windows.Forms.Button();
     this.btnCancle          = new System.Windows.Forms.Button();
     this.label3             = new System.Windows.Forms.Label();
     this.txtNowMapScale     = new System.Windows.Forms.TextBox();
     this.textBox3           = new System.Windows.Forms.TextBox();
     this.uiComboBoxMapscale = new Janus.Windows.EditControls.UIComboBox();
     this.officeFormAdorner1 = new Janus.Windows.Ribbon.OfficeFormAdorner(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.officeFormAdorner1)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(12, 62);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(77, 12);
     this.label1.TabIndex = 1;
     this.label1.Text     = "自定义比例尺";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(12, 106);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(77, 12);
     this.label2.TabIndex = 2;
     this.label2.Text     = "最适宜比例尺";
     //
     // txtBestMapScale
     //
     this.txtBestMapScale.Enabled  = false;
     this.txtBestMapScale.Location = new System.Drawing.Point(107, 103);
     this.txtBestMapScale.Name     = "txtBestMapScale";
     this.txtBestMapScale.Size     = new System.Drawing.Size(186, 21);
     this.txtBestMapScale.TabIndex = 3;
     //
     // btnNewMapScale
     //
     this.btnNewMapScale.Location = new System.Drawing.Point(176, 152);
     this.btnNewMapScale.Name     = "btnNewMapScale";
     this.btnNewMapScale.Size     = new System.Drawing.Size(117, 23);
     this.btnNewMapScale.TabIndex = 4;
     this.btnNewMapScale.Text     = "设置为自定义比例";
     this.btnNewMapScale.UseVisualStyleBackColor = true;
     this.btnNewMapScale.Click += new System.EventHandler(this.btnNewMapScale_Click);
     //
     // btnBestMapScale
     //
     this.btnBestMapScale.Location = new System.Drawing.Point(176, 190);
     this.btnBestMapScale.Name     = "btnBestMapScale";
     this.btnBestMapScale.Size     = new System.Drawing.Size(117, 23);
     this.btnBestMapScale.TabIndex = 5;
     this.btnBestMapScale.Text     = "设置为最适宜比例";
     this.btnBestMapScale.UseVisualStyleBackColor = true;
     this.btnBestMapScale.Click += new System.EventHandler(this.btnBestMapScale_Click);
     //
     // btnCancle
     //
     this.btnCancle.Location = new System.Drawing.Point(176, 228);
     this.btnCancle.Name     = "btnCancle";
     this.btnCancle.Size     = new System.Drawing.Size(117, 23);
     this.btnCancle.TabIndex = 6;
     this.btnCancle.Text     = "取  消";
     this.btnCancle.UseVisualStyleBackColor = true;
     this.btnCancle.Click += new System.EventHandler(this.btnCancle_Click);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(14, 24);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(65, 12);
     this.label3.TabIndex = 7;
     this.label3.Text     = "目前比例尺";
     //
     // txtNowMapScale
     //
     this.txtNowMapScale.Location = new System.Drawing.Point(107, 21);
     this.txtNowMapScale.Name     = "txtNowMapScale";
     this.txtNowMapScale.Size     = new System.Drawing.Size(186, 21);
     this.txtNowMapScale.TabIndex = 8;
     //
     // textBox3
     //
     this.textBox3.Enabled   = false;
     this.textBox3.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBox3.Location  = new System.Drawing.Point(12, 152);
     this.textBox3.Multiline = true;
     this.textBox3.Name      = "textBox3";
     this.textBox3.Size      = new System.Drawing.Size(143, 99);
     this.textBox3.TabIndex  = 9;
     this.textBox3.Text      = "这里的最适宜比例尺指的是比例尺为整数,且使要打印的图形区域放大到最清晰化,这样有利于在地图上进行量算。\r\n";
     //
     // uiComboBoxMapscale
     //
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.IsSeparator       = false;
     uiComboBoxItem1.Text = "1:1000";
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator       = false;
     uiComboBoxItem2.Text = "1:5000";
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator       = false;
     uiComboBoxItem3.Text = "1:10000";
     uiComboBoxItem4.FormatStyle.Alpha = 0;
     uiComboBoxItem4.IsSeparator       = false;
     uiComboBoxItem4.Text = "1:20000";
     uiComboBoxItem5.FormatStyle.Alpha = 0;
     uiComboBoxItem5.IsSeparator       = false;
     uiComboBoxItem5.Text = "1:50000";
     uiComboBoxItem6.FormatStyle.Alpha = 0;
     uiComboBoxItem6.IsSeparator       = false;
     uiComboBoxItem6.Text = "1:100000";
     uiComboBoxItem7.FormatStyle.Alpha = 0;
     uiComboBoxItem7.IsSeparator       = false;
     uiComboBoxItem7.Text = "1:200000";
     uiComboBoxItem8.FormatStyle.Alpha = 0;
     uiComboBoxItem8.IsSeparator       = false;
     uiComboBoxItem8.Text = "1:300000";
     uiComboBoxItem9.FormatStyle.Alpha = 0;
     uiComboBoxItem9.IsSeparator       = false;
     uiComboBoxItem9.Text = "1:500000";
     uiComboBoxItem10.FormatStyle.Alpha = 0;
     uiComboBoxItem10.IsSeparator       = false;
     uiComboBoxItem10.Text = "1:600000";
     uiComboBoxItem11.FormatStyle.Alpha = 0;
     uiComboBoxItem11.IsSeparator       = false;
     uiComboBoxItem11.Text = "1:700000";
     uiComboBoxItem12.FormatStyle.Alpha = 0;
     uiComboBoxItem12.IsSeparator       = false;
     uiComboBoxItem12.Text = "1:1000000";
     uiComboBoxItem13.FormatStyle.Alpha = 0;
     uiComboBoxItem13.IsSeparator       = false;
     uiComboBoxItem13.Text = "1:2000000";
     uiComboBoxItem14.FormatStyle.Alpha = 0;
     uiComboBoxItem14.IsSeparator       = false;
     uiComboBoxItem14.Text = "1:3000000";
     uiComboBoxItem15.FormatStyle.Alpha = 0;
     uiComboBoxItem15.IsSeparator       = false;
     uiComboBoxItem15.Text = "1:5000000";
     uiComboBoxItem16.FormatStyle.Alpha = 0;
     uiComboBoxItem16.IsSeparator       = false;
     uiComboBoxItem16.Text = "1:10000000";
     this.uiComboBoxMapscale.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2,
         uiComboBoxItem3,
         uiComboBoxItem4,
         uiComboBoxItem5,
         uiComboBoxItem6,
         uiComboBoxItem7,
         uiComboBoxItem8,
         uiComboBoxItem9,
         uiComboBoxItem10,
         uiComboBoxItem11,
         uiComboBoxItem12,
         uiComboBoxItem13,
         uiComboBoxItem14,
         uiComboBoxItem15,
         uiComboBoxItem16
     });
     this.uiComboBoxMapscale.Location              = new System.Drawing.Point(107, 57);
     this.uiComboBoxMapscale.Name                  = "uiComboBoxMapscale";
     this.uiComboBoxMapscale.Size                  = new System.Drawing.Size(186, 21);
     this.uiComboBoxMapscale.TabIndex              = 10;
     this.uiComboBoxMapscale.VisualStyle           = Janus.Windows.UI.VisualStyle.Office2007;
     this.uiComboBoxMapscale.SelectedIndexChanged += new System.EventHandler(this.uiComboBoxMapscale_SelectedIndexChanged);
     //
     // officeFormAdorner1
     //
     this.officeFormAdorner1.ApplicationName       = "比例尺设置";
     this.officeFormAdorner1.Form                  = this;
     this.officeFormAdorner1.Office2007CustomColor = System.Drawing.Color.Empty;
     //
     // frmSetMapScale
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.AliceBlue;
     this.ClientSize          = new System.Drawing.Size(309, 259);
     this.Controls.Add(this.uiComboBoxMapscale);
     this.Controls.Add(this.textBox3);
     this.Controls.Add(this.txtNowMapScale);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.btnCancle);
     this.Controls.Add(this.btnBestMapScale);
     this.Controls.Add(this.btnNewMapScale);
     this.Controls.Add(this.txtBestMapScale);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.ForeColor       = System.Drawing.SystemColors.Highlight;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox     = false;
     this.Name            = "frmSetMapScale";
     this.ShowInTaskbar   = false;
     this.Load           += new System.EventHandler(this.frmSetMapScale_Load);
     ((System.ComponentModel.ISupportInitialize)(this.officeFormAdorner1)).EndInit();
     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_baocao_thuockedon_theobacsy));
            Janus.Windows.GridEX.GridEXLayout cboBacSyChiDinh_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdList_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();
            this.cmdExportToExcel = new Janus.Windows.EditControls.UIButton();
            this.dtNgayInPhieu = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label3 = new System.Windows.Forms.Label();
            this.cmdInPhieuXN = new Janus.Windows.EditControls.UIButton();
            this.cmdExit = new Janus.Windows.EditControls.UIButton();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.gridEXExporter1 = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
            this.printDialog1 = new System.Windows.Forms.PrintDialog();
            this.pnlHeader = new System.Windows.Forms.Panel();
            this.baocaO_TIEUDE1 = new VNS.HIS.UI.FORMs.BAOCAO.BHYT.UserControls.BAOCAO_TIEUDE();
            this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
            this.txtthuoc = new VNS.HIS.UCs.AutoCompleteTextbox_Thuoc();
            this.label11 = new System.Windows.Forms.Label();
            this.cboBacSyChiDinh = new Janus.Windows.GridEX.EditControls.CheckedComboBox();
            this.label2 = new System.Windows.Forms.Label();
            this.cboStock = new Janus.Windows.EditControls.UIComboBox();
            this.label8 = new System.Windows.Forms.Label();
            this.cboDoiTuong = new Janus.Windows.EditControls.UIComboBox();
            this.grdList = new Janus.Windows.GridEX.GridEX();
            this.label1 = new System.Windows.Forms.Label();
            this.dtToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.dtFromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.chkByDate = new Janus.Windows.EditControls.UICheckBox();
            this.label4 = new System.Windows.Forms.Label();
            this.cboTrangthai = new Janus.Windows.EditControls.UIComboBox();
            this.pnlHeader.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
            this.uiGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
            this.SuspendLayout();
            // 
            // cmdExportToExcel
            // 
            this.cmdExportToExcel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdExportToExcel.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdExportToExcel.Image = ((System.Drawing.Image)(resources.GetObject("cmdExportToExcel.Image")));
            this.cmdExportToExcel.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdExportToExcel.Location = new System.Drawing.Point(362, 520);
            this.cmdExportToExcel.Name = "cmdExportToExcel";
            this.cmdExportToExcel.Size = new System.Drawing.Size(133, 30);
            this.cmdExportToExcel.TabIndex = 9;
            this.cmdExportToExcel.Text = "Xuất Excel";
            this.cmdExportToExcel.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
            this.cmdExportToExcel.Click += new System.EventHandler(this.cmdExportToExcel_Click_1);
            // 
            // dtNgayInPhieu
            // 
            this.dtNgayInPhieu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.dtNgayInPhieu.CustomFormat = "dd/MM/yyyy";
            this.dtNgayInPhieu.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtNgayInPhieu.DropDownCalendar.Name = "";
            this.dtNgayInPhieu.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtNgayInPhieu.Location = new System.Drawing.Point(72, 526);
            this.dtNgayInPhieu.Name = "dtNgayInPhieu";
            this.dtNgayInPhieu.ShowUpDown = true;
            this.dtNgayInPhieu.Size = new System.Drawing.Size(165, 21);
            this.dtNgayInPhieu.TabIndex = 11;
            // 
            // label3
            // 
            this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            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.Location = new System.Drawing.Point(12, 529);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(54, 15);
            this.label3.TabIndex = 115;
            this.label3.Text = "Ngày in :";
            // 
            // cmdInPhieuXN
            // 
            this.cmdInPhieuXN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdInPhieuXN.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdInPhieuXN.Image = ((System.Drawing.Image)(resources.GetObject("cmdInPhieuXN.Image")));
            this.cmdInPhieuXN.Location = new System.Drawing.Point(506, 520);
            this.cmdInPhieuXN.Name = "cmdInPhieuXN";
            this.cmdInPhieuXN.Size = new System.Drawing.Size(133, 30);
            this.cmdInPhieuXN.TabIndex = 8;
            this.cmdInPhieuXN.Text = "In báo cáo";
            this.cmdInPhieuXN.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
            // 
            // cmdExit
            // 
            this.cmdExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            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.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdExit.Location = new System.Drawing.Point(645, 520);
            this.cmdExit.Name = "cmdExit";
            this.cmdExit.Size = new System.Drawing.Size(133, 30);
            this.cmdExit.TabIndex = 10;
            this.cmdExit.Text = "Thoát (Esc)";
            // 
            // printDialog1
            // 
            this.printDialog1.UseEXDialog = true;
            // 
            // pnlHeader
            // 
            this.pnlHeader.Controls.Add(this.baocaO_TIEUDE1);
            this.pnlHeader.Dock = System.Windows.Forms.DockStyle.Top;
            this.pnlHeader.Location = new System.Drawing.Point(0, 0);
            this.pnlHeader.Name = "pnlHeader";
            this.pnlHeader.Size = new System.Drawing.Size(784, 56);
            this.pnlHeader.TabIndex = 120;
            // 
            // baocaO_TIEUDE1
            // 
            this.baocaO_TIEUDE1.Dock = System.Windows.Forms.DockStyle.Top;
            this.baocaO_TIEUDE1.Location = new System.Drawing.Point(0, 0);
            this.baocaO_TIEUDE1.MA_BAOCAO = "BC_BSYKEDON";
            this.baocaO_TIEUDE1.Name = "baocaO_TIEUDE1";
            this.baocaO_TIEUDE1.Phimtat = "";
            this.baocaO_TIEUDE1.PicImg = ((System.Drawing.Image)(resources.GetObject("baocaO_TIEUDE1.PicImg")));
            this.baocaO_TIEUDE1.ShortcutAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.baocaO_TIEUDE1.ShortcutFont = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.baocaO_TIEUDE1.showHelp = false;
            this.baocaO_TIEUDE1.Size = new System.Drawing.Size(784, 54);
            this.baocaO_TIEUDE1.TabIndex = 1;
            this.baocaO_TIEUDE1.TIEUDE = "BÁO CÁO KÊ THUỐC THEO BÁC SỸ";
            this.baocaO_TIEUDE1.TitleFont = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            // 
            // uiGroupBox2
            // 
            this.uiGroupBox2.Controls.Add(this.cboTrangthai);
            this.uiGroupBox2.Controls.Add(this.label4);
            this.uiGroupBox2.Controls.Add(this.txtthuoc);
            this.uiGroupBox2.Controls.Add(this.label11);
            this.uiGroupBox2.Controls.Add(this.cboBacSyChiDinh);
            this.uiGroupBox2.Controls.Add(this.label2);
            this.uiGroupBox2.Controls.Add(this.cboStock);
            this.uiGroupBox2.Controls.Add(this.label8);
            this.uiGroupBox2.Controls.Add(this.cboDoiTuong);
            this.uiGroupBox2.Controls.Add(this.grdList);
            this.uiGroupBox2.Controls.Add(this.label1);
            this.uiGroupBox2.Controls.Add(this.dtToDate);
            this.uiGroupBox2.Controls.Add(this.dtFromDate);
            this.uiGroupBox2.Controls.Add(this.chkByDate);
            this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Top;
            this.uiGroupBox2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiGroupBox2.Location = new System.Drawing.Point(0, 56);
            this.uiGroupBox2.Name = "uiGroupBox2";
            this.uiGroupBox2.Size = new System.Drawing.Size(784, 448);
            this.uiGroupBox2.TabIndex = 121;
            this.uiGroupBox2.Text = "Thông tin tìm kiếm";
            // 
            // txtthuoc
            // 
            this.txtthuoc._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtthuoc._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtthuoc.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtthuoc.AutoCompleteList")));
            this.txtthuoc.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtthuoc.CaseSensitive = false;
            this.txtthuoc.CompareNoID = true;
            this.txtthuoc.DefaultCode = "-1";
            this.txtthuoc.DefaultID = "-1";
            this.txtthuoc.Drug_ID = null;
            this.txtthuoc.ExtraWidth = 0;
            this.txtthuoc.FillValueAfterSelect = true;
            this.txtthuoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtthuoc.GridView = false;
            this.txtthuoc.Location = new System.Drawing.Point(138, 95);
            this.txtthuoc.MaxHeight = 300;
            this.txtthuoc.MinTypedCharacters = 2;
            this.txtthuoc.MyCode = "-1";
            this.txtthuoc.MyID = "-1";
            this.txtthuoc.Name = "txtthuoc";
            this.txtthuoc.RaiseEvent = false;
            this.txtthuoc.RaiseEventEnter = false;
            this.txtthuoc.RaiseEventEnterWhenEmpty = false;
            this.txtthuoc.SelectedIndex = -1;
            this.txtthuoc.Size = new System.Drawing.Size(619, 21);
            this.txtthuoc.splitChar = '@';
            this.txtthuoc.splitCharIDAndCode = '#';
            this.txtthuoc.TabIndex = 4;
            this.txtthuoc.txtMyCode = null;
            this.txtthuoc.txtMyCode_Edit = null;
            this.txtthuoc.txtMyID = null;
            this.txtthuoc.txtMyID_Edit = null;
            this.txtthuoc.txtMyName = null;
            this.txtthuoc.txtMyName_Edit = null;
            this.txtthuoc.txtNext = null;
            // 
            // 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(1, 98);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(131, 15);
            this.label11.TabIndex = 38;
            this.label11.Text = "Tên thuốc:";
            this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cboBacSyChiDinh
            // 
            cboBacSyChiDinh_DesignTimeLayout.LayoutString = resources.GetString("cboBacSyChiDinh_DesignTimeLayout.LayoutString");
            this.cboBacSyChiDinh.DesignTimeLayout = cboBacSyChiDinh_DesignTimeLayout;
            this.cboBacSyChiDinh.DropDownDisplayMember = "ten_nhanvien";
            this.cboBacSyChiDinh.DropDownValueMember = "id_nhanvien";
            this.cboBacSyChiDinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboBacSyChiDinh.Location = new System.Drawing.Point(138, 71);
            this.cboBacSyChiDinh.Name = "cboBacSyChiDinh";
            this.cboBacSyChiDinh.SaveSettings = false;
            this.cboBacSyChiDinh.Size = new System.Drawing.Size(262, 21);
            this.cboBacSyChiDinh.TabIndex = 2;
            this.cboBacSyChiDinh.ValuesDataMember = null;
            this.cboBacSyChiDinh.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // label2
            // 
            this.label2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.Location = new System.Drawing.Point(1, 74);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(131, 15);
            this.label2.TabIndex = 35;
            this.label2.Text = "Tên bác sỹ chỉ định";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cboStock
            // 
            this.cboStock.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboStock.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cboStock.Location = new System.Drawing.Point(138, 47);
            this.cboStock.Name = "cboStock";
            this.cboStock.SelectInDataSource = true;
            this.cboStock.Size = new System.Drawing.Size(619, 21);
            this.cboStock.TabIndex = 1;
            this.cboStock.Text = "Kho thuốc";
            // 
            // label8
            // 
            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(1, 51);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(131, 15);
            this.label8.TabIndex = 32;
            this.label8.Text = "Kho thuốc";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cboDoiTuong
            // 
            this.cboDoiTuong.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboDoiTuong.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cboDoiTuong.Location = new System.Drawing.Point(138, 22);
            this.cboDoiTuong.Name = "cboDoiTuong";
            this.cboDoiTuong.SelectInDataSource = true;
            this.cboDoiTuong.Size = new System.Drawing.Size(619, 21);
            this.cboDoiTuong.TabIndex = 0;
            this.cboDoiTuong.Text = "Đối tượng";
            // 
            // grdList
            // 
            this.grdList.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grdList.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.grdList.ColumnAutoResize = true;
            grdList_DesignTimeLayout.LayoutString = resources.GetString("grdList_DesignTimeLayout.LayoutString");
            this.grdList.DesignTimeLayout = grdList_DesignTimeLayout;
            this.grdList.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdList.GroupByBoxVisible = false;
            this.grdList.GroupRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdList.GroupTotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdList.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdList.Location = new System.Drawing.Point(3, 165);
            this.grdList.Name = "grdList";
            this.grdList.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdList.Size = new System.Drawing.Size(775, 277);
            this.grdList.TabIndex = 20;
            this.grdList.TabStop = false;
            this.grdList.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdList.TotalRowFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
            this.grdList.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdList.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdList.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // label1
            // 
            this.label1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.Location = new System.Drawing.Point(1, 26);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(131, 15);
            this.label1.TabIndex = 16;
            this.label1.Text = "Đối tượng Kcb";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtToDate
            // 
            this.dtToDate.CustomFormat = "dd/MM/yyyy";
            this.dtToDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtToDate.DropDownCalendar.Name = "";
            this.dtToDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtToDate.Location = new System.Drawing.Point(330, 125);
            this.dtToDate.Name = "dtToDate";
            this.dtToDate.ShowUpDown = true;
            this.dtToDate.Size = new System.Drawing.Size(200, 21);
            this.dtToDate.TabIndex = 7;
            // 
            // dtFromDate
            // 
            this.dtFromDate.CustomFormat = "dd/MM/yyyy";
            this.dtFromDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtFromDate.DropDownCalendar.Name = "";
            this.dtFromDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtFromDate.Location = new System.Drawing.Point(138, 125);
            this.dtFromDate.Name = "dtFromDate";
            this.dtFromDate.ShowUpDown = true;
            this.dtFromDate.Size = new System.Drawing.Size(187, 21);
            this.dtFromDate.TabIndex = 6;
            // 
            // chkByDate
            // 
            this.chkByDate.Checked = true;
            this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkByDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkByDate.Location = new System.Drawing.Point(61, 125);
            this.chkByDate.Name = "chkByDate";
            this.chkByDate.Size = new System.Drawing.Size(71, 23);
            this.chkByDate.TabIndex = 5;
            this.chkByDate.Text = "Từ ngày";
            // 
            // label4
            // 
            this.label4.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label4.Location = new System.Drawing.Point(406, 74);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(131, 15);
            this.label4.TabIndex = 40;
            this.label4.Text = "Trạng thái đơn thuốc:";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cboTrangthai
            // 
            this.cboTrangthai.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 = "Đã cấp phát";
            uiComboBoxItem1.Value = ((short)(1));
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "Chưa cấp phát";
            uiComboBoxItem2.Value = ((short)(0));
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "Tất cả";
            uiComboBoxItem3.Value = ((short)(-1));
            this.cboTrangthai.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3});
            this.cboTrangthai.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cboTrangthai.Location = new System.Drawing.Point(543, 71);
            this.cboTrangthai.Name = "cboTrangthai";
            this.cboTrangthai.SelectInDataSource = true;
            this.cboTrangthai.Size = new System.Drawing.Size(214, 21);
            this.cboTrangthai.TabIndex = 3;
            this.cboTrangthai.Text = "Đã cấp phát";
            // 
            // frm_baocao_thuockedon_theobacsy
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(784, 562);
            this.Controls.Add(this.uiGroupBox2);
            this.Controls.Add(this.pnlHeader);
            this.Controls.Add(this.cmdExportToExcel);
            this.Controls.Add(this.dtNgayInPhieu);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.cmdInPhieuXN);
            this.Controls.Add(this.cmdExit);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frm_baocao_thuockedon_theobacsy";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "BÁO CÁO KÊ ĐƠN THUỐC THEO BÁC SĨ";
            this.Load += new System.EventHandler(this.frm_baocao_thuockedon_theobacsy_Load);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frm_baocao_thuockedon_theobacsy_KeyDown);
            this.pnlHeader.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
            this.uiGroupBox2.ResumeLayout(false);
            this.uiGroupBox2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Example #44
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();
     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();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(fBrowseDocs));
     this.documentBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.uiPanelManager1       = new Janus.Windows.UI.Dock.UIPanelManager(this.components);
     this.ImageListMain         = new System.Windows.Forms.ImageList(this.components);
     this.pnlMessage            = new Janus.Windows.UI.Dock.UIPanel();
     this.pnlMessageContainer   = new Janus.Windows.UI.Dock.UIPanelInnerContainer();
     this.label2                   = new System.Windows.Forms.Label();
     this.label1                   = new System.Windows.Forms.Label();
     this.pnlLeft                  = new Janus.Windows.UI.Dock.UIPanelGroup();
     this.pnlBrowseSelect          = new Janus.Windows.UI.Dock.UIPanel();
     this.pnlBrowseSelectContainer = new Janus.Windows.UI.Dock.UIPanelInnerContainer();
     this.ucBrowse1                = new LawMate.UserControls.ucBrowse();
     this.pnlSearch                = new Janus.Windows.UI.Dock.UIPanel();
     this.pnlSearchContainer       = new Janus.Windows.UI.Dock.UIPanelInnerContainer();
     this.btnPerformSearch         = new Janus.Windows.EditControls.UIButton();
     this.ebSearchFor              = new Janus.Windows.GridEX.EditControls.EditBox();
     this.cbSearchType             = new Janus.Windows.EditControls.UIComboBox();
     this.lblOn                     = new System.Windows.Forms.Label();
     this.lblSearchFor              = new System.Windows.Forms.Label();
     this.pnlResults                = new Janus.Windows.UI.Dock.UIPanel();
     this.pnlResultsContainer       = new Janus.Windows.UI.Dock.UIPanelInnerContainer();
     this.buttonCancel              = new Janus.Windows.EditControls.UIButton();
     this.buttonOK                  = new Janus.Windows.EditControls.UIButton();
     this.uiTab1                    = new Janus.Windows.UI.Tab.UITab();
     this.uiTabPage1                = new Janus.Windows.UI.Tab.UITabPage();
     this.ucRecordList1             = new LawMate.ucRecordList();
     this.uiButton1                 = new Janus.Windows.EditControls.UIButton();
     this.lblSelectedFile           = new System.Windows.Forms.Label();
     this.lblCurrentFile            = new System.Windows.Forms.Label();
     this.pnlSearchResults          = new Janus.Windows.UI.Dock.UIPanel();
     this.pnlSearchResultsContainer = new Janus.Windows.UI.Dock.UIPanelInnerContainer();
     this.toolTip1                  = new System.Windows.Forms.ToolTip(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.documentBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiPanelManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlMessage)).BeginInit();
     this.pnlMessage.SuspendLayout();
     this.pnlMessageContainer.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlLeft)).BeginInit();
     this.pnlLeft.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlBrowseSelect)).BeginInit();
     this.pnlBrowseSelect.SuspendLayout();
     this.pnlBrowseSelectContainer.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlSearch)).BeginInit();
     this.pnlSearch.SuspendLayout();
     this.pnlSearchContainer.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlResults)).BeginInit();
     this.pnlResults.SuspendLayout();
     this.pnlResultsContainer.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiTab1)).BeginInit();
     this.uiTab1.SuspendLayout();
     this.uiTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlSearchResults)).BeginInit();
     this.pnlSearchResults.SuspendLayout();
     this.SuspendLayout();
     //
     // documentBindingSource
     //
     this.documentBindingSource.DataMember      = "Document";
     this.documentBindingSource.CurrentChanged += new System.EventHandler(this.documentBindingSource_CurrentChanged);
     //
     // uiPanelManager1
     //
     this.uiPanelManager1.AllowPanelDrag   = false;
     this.uiPanelManager1.AllowPanelDrop   = false;
     this.uiPanelManager1.ContainerControl = this;
     this.uiPanelManager1.DefaultPanelSettings.ActiveCaptionMode                    = Janus.Windows.UI.Dock.ActiveCaptionMode.Never;
     this.uiPanelManager1.DefaultPanelSettings.AutoHideTabDisplay                   = Janus.Windows.UI.Dock.TabDisplayMode.ImageAndText;
     this.uiPanelManager1.DefaultPanelSettings.CaptionDoubleClickAction             = Janus.Windows.UI.Dock.CaptionDoubleClickAction.None;
     this.uiPanelManager1.DefaultPanelSettings.CaptionFormatStyle.FontBold          = Janus.Windows.UI.TriState.True;
     this.uiPanelManager1.DefaultPanelSettings.CaptionFormatStyle.FontName          = "arial";
     this.uiPanelManager1.DefaultPanelSettings.CloseButtonVisible                   = ((bool)(resources.GetObject("uiPanelManager1.DefaultPanelSettings.CloseButtonVisible")));
     this.uiPanelManager1.DefaultPanelSettings.TabStateStyles.FormatStyle.FontBold  = Janus.Windows.UI.TriState.True;
     this.uiPanelManager1.DefaultPanelSettings.TabStateStyles.FormatStyle.FontName  = "arial";
     this.uiPanelManager1.DefaultPanelSettings.TabStateStyles.FormatStyle.ForeColor = System.Drawing.Color.SteelBlue;
     this.uiPanelManager1.ImageList       = this.ImageListMain;
     this.uiPanelManager1.SplitterSize    = 3;
     this.uiPanelManager1.VisualStyle     = Janus.Windows.UI.Dock.PanelVisualStyle.Office2010;
     this.uiPanelManager1.PanelActivated += new Janus.Windows.UI.Dock.PanelActionEventHandler(this.uiPanelManager1_PanelActivated);
     this.pnlMessage.Id = new System.Guid("dd406747-d700-4225-b755-c86856f2f455");
     this.uiPanelManager1.Panels.Add(this.pnlMessage);
     this.pnlLeft.Id          = new System.Guid("bc74e180-36c2-48fc-8d88-4b32658bda60");
     this.pnlLeft.StaticGroup = true;
     this.pnlBrowseSelect.Id  = new System.Guid("087b713c-a2ee-4c47-99c6-75d897ec3c1f");
     this.pnlLeft.Panels.Add(this.pnlBrowseSelect);
     this.pnlSearch.Id = new System.Guid("8c3687f0-9dfa-46cb-8fe6-fe9f0bb49614");
     this.pnlLeft.Panels.Add(this.pnlSearch);
     this.uiPanelManager1.Panels.Add(this.pnlLeft);
     this.pnlResults.Id = new System.Guid("d1c3dcf5-2bae-4515-b2f0-c71d0f22969e");
     this.uiPanelManager1.Panels.Add(this.pnlResults);
     //
     // Design Time Panel Info:
     //
     this.uiPanelManager1.BeginPanelInfo();
     this.uiPanelManager1.AddDockPanelInfo(new System.Guid("dd406747-d700-4225-b755-c86856f2f455"), Janus.Windows.UI.Dock.PanelDockStyle.Top, new System.Drawing.Size(957, 26), true);
     this.uiPanelManager1.AddDockPanelInfo(new System.Guid("bc74e180-36c2-48fc-8d88-4b32658bda60"), Janus.Windows.UI.Dock.PanelGroupStyle.OutlookNavigator, Janus.Windows.UI.Dock.PanelDockStyle.Left, true, new System.Drawing.Size(233, 419), true);
     this.uiPanelManager1.AddDockPanelInfo(new System.Guid("087b713c-a2ee-4c47-99c6-75d897ec3c1f"), new System.Guid("bc74e180-36c2-48fc-8d88-4b32658bda60"), 162, true);
     this.uiPanelManager1.AddDockPanelInfo(new System.Guid("8c3687f0-9dfa-46cb-8fe6-fe9f0bb49614"), new System.Guid("bc74e180-36c2-48fc-8d88-4b32658bda60"), 162, true);
     this.uiPanelManager1.AddDockPanelInfo(new System.Guid("d1c3dcf5-2bae-4515-b2f0-c71d0f22969e"), Janus.Windows.UI.Dock.PanelDockStyle.Fill, new System.Drawing.Size(724, 419), true);
     this.uiPanelManager1.AddFloatingPanelInfo(new System.Guid("bc74e180-36c2-48fc-8d88-4b32658bda60"), Janus.Windows.UI.Dock.PanelGroupStyle.OutlookNavigator, true, new System.Drawing.Point(-1, -1), new System.Drawing.Size(-1, -1), false);
     this.uiPanelManager1.AddFloatingPanelInfo(new System.Guid("8c3687f0-9dfa-46cb-8fe6-fe9f0bb49614"), new System.Drawing.Point(-1, -1), new System.Drawing.Size(-1, -1), false);
     this.uiPanelManager1.AddFloatingPanelInfo(new System.Guid("3bd9ae9b-99e1-4c95-b945-fd82d24ad8fb"), new System.Drawing.Point(-1, -1), new System.Drawing.Size(-1, -1), false);
     this.uiPanelManager1.AddFloatingPanelInfo(new System.Guid("3f525188-93da-4e30-8186-26d1862b7c98"), new System.Drawing.Point(-1, -1), new System.Drawing.Size(-1, -1), false);
     this.uiPanelManager1.AddFloatingPanelInfo(new System.Guid("df782b78-737b-481b-a2fa-304f66c8245c"), new System.Drawing.Point(-1, -1), new System.Drawing.Size(-1, -1), false);
     this.uiPanelManager1.AddFloatingPanelInfo(new System.Guid("47c1098b-839d-4bfe-be5d-e9d6b0bc0912"), Janus.Windows.UI.Dock.PanelGroupStyle.HorizontalTiles, true, new System.Drawing.Point(-1, -1), new System.Drawing.Size(-1, -1), false);
     this.uiPanelManager1.AddFloatingPanelInfo(new System.Guid("c406b984-eefa-4c55-8ae1-5f0d536c02ff"), new System.Drawing.Point(-1, -1), new System.Drawing.Size(-1, -1), false);
     this.uiPanelManager1.AddFloatingPanelInfo(new System.Guid("c991dfa0-e8c0-4433-b4f6-a4a7d0b95073"), new System.Drawing.Point(-1, -1), new System.Drawing.Size(-1, -1), false);
     this.uiPanelManager1.AddFloatingPanelInfo(new System.Guid("087b713c-a2ee-4c47-99c6-75d897ec3c1f"), new System.Drawing.Point(-1, -1), new System.Drawing.Size(-1, -1), false);
     this.uiPanelManager1.AddFloatingPanelInfo(new System.Guid("0210b985-6364-4b49-b58e-36782a8907c5"), new System.Drawing.Point(-1, -1), new System.Drawing.Size(-1, -1), false);
     this.uiPanelManager1.AddFloatingPanelInfo(new System.Guid("dd406747-d700-4225-b755-c86856f2f455"), new System.Drawing.Point(-1, -1), new System.Drawing.Size(-1, -1), false);
     this.uiPanelManager1.AddFloatingPanelInfo(new System.Guid("d1c3dcf5-2bae-4515-b2f0-c71d0f22969e"), new System.Drawing.Point(-1, -1), new System.Drawing.Size(-1, -1), false);
     this.uiPanelManager1.EndPanelInfo();
     //
     // ImageListMain
     //
     this.ImageListMain.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ImageListMain.ImageStream")));
     this.ImageListMain.TransparentColor = System.Drawing.Color.Transparent;
     this.ImageListMain.Images.SetKeyName(0, "drafts.gif");
     this.ImageListMain.Images.SetKeyName(1, "shortcut.gif");
     this.ImageListMain.Images.SetKeyName(2, "reports.gif");
     this.ImageListMain.Images.SetKeyName(3, "batch.gif");
     this.ImageListMain.Images.SetKeyName(4, "myDocuments.gif");
     this.ImageListMain.Images.SetKeyName(5, "cal.gif");
     this.ImageListMain.Images.SetKeyName(6, "bs.gif");
     this.ImageListMain.Images.SetKeyName(7, "bo.gif");
     this.ImageListMain.Images.SetKeyName(8, "doc.gif");
     this.ImageListMain.Images.SetKeyName(9, "msgS.gif");
     this.ImageListMain.Images.SetKeyName(10, "datePick.gif");
     this.ImageListMain.Images.SetKeyName(11, "search.gif");
     this.ImageListMain.Images.SetKeyName(12, "FSArchived.ico");
     this.ImageListMain.Images.SetKeyName(13, "FSClosed.ico");
     this.ImageListMain.Images.SetKeyName(14, "FSMonitored.ico");
     this.ImageListMain.Images.SetKeyName(15, "FSOpen.ico");
     this.ImageListMain.Images.SetKeyName(16, "FSPending.ico");
     this.ImageListMain.Images.SetKeyName(17, "folder.gif");
     //
     // pnlMessage
     //
     this.pnlMessage.CaptionVisible = Janus.Windows.UI.InheritableBoolean.False;
     resources.ApplyResources(this.pnlMessage, "pnlMessage");
     this.pnlMessage.InnerAreaStyle = Janus.Windows.UI.Dock.PanelInnerAreaStyle.Window;
     this.pnlMessage.InnerContainer = this.pnlMessageContainer;
     this.pnlMessage.Name           = "pnlMessage";
     //
     // pnlMessageContainer
     //
     this.pnlMessageContainer.Controls.Add(this.label2);
     this.pnlMessageContainer.Controls.Add(this.label1);
     resources.ApplyResources(this.pnlMessageContainer, "pnlMessageContainer");
     this.pnlMessageContainer.Name = "pnlMessageContainer";
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Image     = global::LawMate.Properties.Resources.paper;
     resources.ApplyResources(this.label2, "label2");
     this.label2.Name = "label2";
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Name      = "label1";
     //
     // pnlLeft
     //
     this.pnlLeft.GroupStyle = Janus.Windows.UI.Dock.PanelGroupStyle.OutlookNavigator;
     resources.ApplyResources(this.pnlLeft, "pnlLeft");
     this.pnlLeft.Name          = "pnlLeft";
     this.pnlLeft.SelectedPanel = this.pnlSearch;
     //
     // pnlBrowseSelect
     //
     resources.ApplyResources(this.pnlBrowseSelect, "pnlBrowseSelect");
     this.pnlBrowseSelect.InnerAreaStyle = Janus.Windows.UI.Dock.PanelInnerAreaStyle.Window;
     this.pnlBrowseSelect.InnerContainer = this.pnlBrowseSelectContainer;
     this.pnlBrowseSelect.Name           = "pnlBrowseSelect";
     //
     // pnlBrowseSelectContainer
     //
     this.pnlBrowseSelectContainer.Controls.Add(this.ucBrowse1);
     resources.ApplyResources(this.pnlBrowseSelectContainer, "pnlBrowseSelectContainer");
     this.pnlBrowseSelectContainer.Name = "pnlBrowseSelectContainer";
     //
     // ucBrowse1
     //
     this.ucBrowse1.DisplayJumpToOptions = true;
     this.ucBrowse1.DisplayOptionPanel   = true;
     resources.ApplyResources(this.ucBrowse1, "ucBrowse1");
     this.ucBrowse1.HideXrefs         = false;
     this.ucBrowse1.Name              = "ucBrowse1";
     this.ucBrowse1.ShowContextMenu   = true;
     this.ucBrowse1.ShowFileNumber    = false;
     this.ucBrowse1.ShowOnlyOpenFiles = false;
     this.ucBrowse1.FileSelected     += new LawMate.UserControls.BrowseEventHandler(this.ucBrowse1_FileSelected);
     //
     // pnlSearch
     //
     resources.ApplyResources(this.pnlSearch, "pnlSearch");
     this.pnlSearch.InnerAreaStyle = Janus.Windows.UI.Dock.PanelInnerAreaStyle.Window;
     this.pnlSearch.InnerContainer = this.pnlSearchContainer;
     this.pnlSearch.Name           = "pnlSearch";
     //
     // pnlSearchContainer
     //
     resources.ApplyResources(this.pnlSearchContainer, "pnlSearchContainer");
     this.pnlSearchContainer.Controls.Add(this.btnPerformSearch);
     this.pnlSearchContainer.Controls.Add(this.ebSearchFor);
     this.pnlSearchContainer.Controls.Add(this.cbSearchType);
     this.pnlSearchContainer.Controls.Add(this.lblOn);
     this.pnlSearchContainer.Controls.Add(this.lblSearchFor);
     this.pnlSearchContainer.Name = "pnlSearchContainer";
     //
     // btnPerformSearch
     //
     this.btnPerformSearch.Image = global::LawMate.Properties.Resources.search;
     resources.ApplyResources(this.btnPerformSearch, "btnPerformSearch");
     this.btnPerformSearch.Name        = "btnPerformSearch";
     this.btnPerformSearch.VisualStyle = Janus.Windows.UI.VisualStyle.Office2010;
     this.btnPerformSearch.Click      += new System.EventHandler(this.btnExecuteSearch_Click);
     //
     // ebSearchFor
     //
     resources.ApplyResources(this.ebSearchFor, "ebSearchFor");
     this.ebSearchFor.Name        = "ebSearchFor";
     this.ebSearchFor.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2007;
     this.ebSearchFor.KeyDown    += new System.Windows.Forms.KeyEventHandler(this.ebSearchFor_KeyDown);
     //
     // cbSearchType
     //
     this.cbSearchType.BorderStyle     = Janus.Windows.UI.BorderStyle.Flat;
     this.cbSearchType.ComboStyle      = Janus.Windows.EditControls.ComboStyle.DropDownList;
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.IsSeparator       = false;
     resources.ApplyResources(uiComboBoxItem1, "uiComboBoxItem1");
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator       = false;
     resources.ApplyResources(uiComboBoxItem2, "uiComboBoxItem2");
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator       = false;
     resources.ApplyResources(uiComboBoxItem3, "uiComboBoxItem3");
     this.cbSearchType.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2,
         uiComboBoxItem3
     });
     resources.ApplyResources(this.cbSearchType, "cbSearchType");
     this.cbSearchType.Name        = "cbSearchType";
     this.cbSearchType.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
     this.cbSearchType.KeyDown    += new System.Windows.Forms.KeyEventHandler(this.ebSearchFor_KeyDown);
     //
     // lblOn
     //
     resources.ApplyResources(this.lblOn, "lblOn");
     this.lblOn.BackColor = System.Drawing.Color.Transparent;
     this.lblOn.Name      = "lblOn";
     //
     // lblSearchFor
     //
     resources.ApplyResources(this.lblSearchFor, "lblSearchFor");
     this.lblSearchFor.BackColor = System.Drawing.Color.Transparent;
     this.lblSearchFor.Name      = "lblSearchFor";
     //
     // pnlResults
     //
     this.pnlResults.CaptionVisible = Janus.Windows.UI.InheritableBoolean.False;
     this.pnlResults.InnerAreaStyle = Janus.Windows.UI.Dock.PanelInnerAreaStyle.AppWorkspace;
     this.pnlResults.InnerContainer = this.pnlResultsContainer;
     resources.ApplyResources(this.pnlResults, "pnlResults");
     this.pnlResults.Name = "pnlResults";
     //
     // pnlResultsContainer
     //
     this.pnlResultsContainer.Controls.Add(this.buttonCancel);
     this.pnlResultsContainer.Controls.Add(this.buttonOK);
     this.pnlResultsContainer.Controls.Add(this.uiTab1);
     this.pnlResultsContainer.Controls.Add(this.uiButton1);
     this.pnlResultsContainer.Controls.Add(this.lblSelectedFile);
     this.pnlResultsContainer.Controls.Add(this.lblCurrentFile);
     resources.ApplyResources(this.pnlResultsContainer, "pnlResultsContainer");
     this.pnlResultsContainer.Name = "pnlResultsContainer";
     //
     // buttonCancel
     //
     resources.ApplyResources(this.buttonCancel, "buttonCancel");
     this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCancel.Name         = "buttonCancel";
     this.buttonCancel.VisualStyle  = Janus.Windows.UI.VisualStyle.Office2010;
     this.buttonCancel.Click       += new System.EventHandler(this.btnCancel_Click);
     //
     // buttonOK
     //
     resources.ApplyResources(this.buttonOK, "buttonOK");
     this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.buttonOK.Name         = "buttonOK";
     this.buttonOK.VisualStyle  = Janus.Windows.UI.VisualStyle.Office2010;
     this.buttonOK.Click       += new System.EventHandler(this.btnOK_Click);
     //
     // uiTab1
     //
     resources.ApplyResources(this.uiTab1, "uiTab1");
     this.uiTab1.BackColor          = System.Drawing.Color.Transparent;
     this.uiTab1.Name               = "uiTab1";
     this.uiTab1.ShowFocusRectangle = false;
     this.uiTab1.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
         this.uiTabPage1
     });
     this.uiTab1.TabsStateStyles.FormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.uiTab1.VisualStyle = Janus.Windows.UI.Tab.TabVisualStyle.Office2010;
     //
     // uiTabPage1
     //
     this.uiTabPage1.Controls.Add(this.ucRecordList1);
     resources.ApplyResources(this.uiTabPage1, "uiTabPage1");
     this.uiTabPage1.Name    = "uiTabPage1";
     this.uiTabPage1.TabStop = true;
     //
     // ucRecordList1
     //
     resources.ApplyResources(this.ucRecordList1, "ucRecordList1");
     this.ucRecordList1.DataSource    = this.documentBindingSource;
     this.ucRecordList1.InEditMode    = false;
     this.ucRecordList1.Name          = "ucRecordList1";
     this.ucRecordList1.SelectionMode = Janus.Windows.GridEX.SelectionMode.SingleSelection;
     //
     // uiButton1
     //
     this.uiButton1.HighlightActiveButton = false;
     this.uiButton1.Image = global::LawMate.Properties.Resources.docMoreInfo;
     resources.ApplyResources(this.uiButton1, "uiButton1");
     this.uiButton1.Name = "uiButton1";
     this.uiButton1.ShowFocusRectangle = false;
     this.uiButton1.VisualStyle        = Janus.Windows.UI.VisualStyle.VS2010;
     this.uiButton1.Click += new System.EventHandler(this.uiButton1_Click);
     //
     // lblSelectedFile
     //
     resources.ApplyResources(this.lblSelectedFile, "lblSelectedFile");
     this.lblSelectedFile.BackColor = System.Drawing.Color.Transparent;
     this.lblSelectedFile.Name      = "lblSelectedFile";
     //
     // lblCurrentFile
     //
     resources.ApplyResources(this.lblCurrentFile, "lblCurrentFile");
     this.lblCurrentFile.AutoEllipsis = true;
     this.lblCurrentFile.BackColor    = System.Drawing.Color.Transparent;
     this.lblCurrentFile.Name         = "lblCurrentFile";
     this.lblCurrentFile.MouseHover  += new System.EventHandler(this.lblCurrentFile_MouseHover);
     //
     // pnlSearchResults
     //
     this.pnlSearchResults.CaptionVisible = Janus.Windows.UI.InheritableBoolean.False;
     this.pnlSearchResults.InnerContainer = this.pnlSearchResultsContainer;
     resources.ApplyResources(this.pnlSearchResults, "pnlSearchResults");
     this.pnlSearchResults.Name = "pnlSearchResults";
     //
     // pnlSearchResultsContainer
     //
     resources.ApplyResources(this.pnlSearchResultsContainer, "pnlSearchResultsContainer");
     this.pnlSearchResultsContainer.Name = "pnlSearchResultsContainer";
     //
     // fBrowseDocs
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.CancelButton  = this.buttonCancel;
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.pnlResults);
     this.Controls.Add(this.pnlLeft);
     this.Controls.Add(this.pnlMessage);
     this.Name = "fBrowseDocs";
     ((System.ComponentModel.ISupportInitialize)(this.documentBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiPanelManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlMessage)).EndInit();
     this.pnlMessage.ResumeLayout(false);
     this.pnlMessageContainer.ResumeLayout(false);
     this.pnlMessageContainer.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlLeft)).EndInit();
     this.pnlLeft.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pnlBrowseSelect)).EndInit();
     this.pnlBrowseSelect.ResumeLayout(false);
     this.pnlBrowseSelectContainer.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pnlSearch)).EndInit();
     this.pnlSearch.ResumeLayout(false);
     this.pnlSearchContainer.ResumeLayout(false);
     this.pnlSearchContainer.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlResults)).EndInit();
     this.pnlResults.ResumeLayout(false);
     this.pnlResultsContainer.ResumeLayout(false);
     this.pnlResultsContainer.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiTab1)).EndInit();
     this.uiTab1.ResumeLayout(false);
     this.uiTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pnlSearchResults)).EndInit();
     this.pnlSearchResults.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #45
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();
     Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout     = new Janus.Windows.GridEX.GridEXLayout();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(frm_quanlycacphongchucnang));
     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();
     this.statusStrip1          = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.lblMsg             = new System.Windows.Forms.ToolStripStatusLabel();
     this.TabInfo            = new Janus.Windows.UI.Tab.UITab();
     this.tabDanhsach        = new Janus.Windows.UI.Tab.UITabPage();
     this.grdList            = new Janus.Windows.GridEX.GridEX();
     this.contextMenuStrip1  = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolChooseBN       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolAccept         = new System.Windows.Forms.ToolStripMenuItem();
     this.toolUnAccept       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolPrintRadio     = new System.Windows.Forms.ToolStripMenuItem();
     this.grpTimKiem         = new Janus.Windows.EditControls.UIGroupBox();
     this.label31            = new System.Windows.Forms.Label();
     this.cboObjectType      = new Janus.Windows.EditControls.UIComboBox();
     this.label4             = new System.Windows.Forms.Label();
     this.txtMaluotkham_tk   = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.label2             = new System.Windows.Forms.Label();
     this.txtIdBenhnhan_tk   = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.label28            = new System.Windows.Forms.Label();
     this.txtTenbenhnhan_tk  = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label29            = 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.label34            = new System.Windows.Forms.Label();
     this.panel2             = new System.Windows.Forms.Panel();
     this.radDaXacNhan       = new Janus.Windows.EditControls.UIRadioButton();
     this.radChoXacNhan      = new Janus.Windows.EditControls.UIRadioButton();
     this.radChuaXacNhan     = new Janus.Windows.EditControls.UIRadioButton();
     this.label5             = new System.Windows.Forms.Label();
     this.label3             = new System.Windows.Forms.Label();
     this.cboPatientSex      = new Janus.Windows.EditControls.UIComboBox();
     this.cmdSearch          = new Janus.Windows.EditControls.UIButton();
     this.ctxImage           = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mnuBrowseImage     = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuDeleteImage     = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
     this.mnuView            = new System.Windows.Forms.ToolStripMenuItem();
     this.saveFileDialog1    = new System.Windows.Forms.SaveFileDialog();
     this.gridEXExporter1    = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
     this.gridEXExporter2    = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
     this.uiGroupBox13       = new Janus.Windows.EditControls.UIGroupBox();
     this.toolTip1           = new System.Windows.Forms.ToolTip(this.components);
     this.statusStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TabInfo)).BeginInit();
     this.TabInfo.SuspendLayout();
     this.tabDanhsach.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpTimKiem)).BeginInit();
     this.grpTimKiem.SuspendLayout();
     this.panel2.SuspendLayout();
     this.ctxImage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox13)).BeginInit();
     this.SuspendLayout();
     //
     // statusStrip1
     //
     this.statusStrip1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripStatusLabel1,
         this.toolStripStatusLabel2,
         this.toolStripStatusLabel3,
         this.lblMsg
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 720);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(1014, 22);
     this.statusStrip1.TabIndex = 2;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Font = new System.Drawing.Font("Arial", 9F);
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(95, 17);
     this.toolStripStatusLabel1.Text = "F4: In phiếu        ";
     //
     // toolStripStatusLabel2
     //
     this.toolStripStatusLabel2.Font = new System.Drawing.Font("Arial", 9F);
     this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.Size = new System.Drawing.Size(69, 17);
     this.toolStripStatusLabel2.Text = "Ctrl+S: Lưu";
     //
     // toolStripStatusLabel3
     //
     this.toolStripStatusLabel3.Font = new System.Drawing.Font("Arial", 9F);
     this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
     this.toolStripStatusLabel3.Size = new System.Drawing.Size(152, 17);
     this.toolStripStatusLabel3.Text = "Esc: Thoát khỏi chức năng";
     //
     // lblMsg
     //
     this.lblMsg.Font   = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMsg.Name   = "lblMsg";
     this.lblMsg.Size   = new System.Drawing.Size(683, 17);
     this.lblMsg.Spring = true;
     this.lblMsg.Text   = "Thông báo";
     //
     // TabInfo
     //
     this.TabInfo.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.TabInfo.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TabInfo.ImageSize = new System.Drawing.Size(20, 20);
     this.TabInfo.Location  = new System.Drawing.Point(0, 0);
     this.TabInfo.Name      = "TabInfo";
     this.TabInfo.Size      = new System.Drawing.Size(1014, 720);
     this.TabInfo.TabIndex  = 0;
     this.TabInfo.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
         this.tabDanhsach
     });
     this.TabInfo.TabStop              = false;
     this.TabInfo.VisualStyle          = Janus.Windows.UI.Tab.TabVisualStyle.VS2005;
     this.TabInfo.SelectedTabChanged  += new Janus.Windows.UI.Tab.TabEventHandler(this.TabInfo_SelectedTabChanged);
     this.TabInfo.ChangingSelectedTab += new Janus.Windows.UI.Tab.TabCancelEventHandler(this.TabInfo_ChangingSelectedTab);
     this.TabInfo.TabIndexChanged     += new System.EventHandler(this.TabInfo_TabIndexChanged);
     //
     // tabDanhsach
     //
     this.tabDanhsach.Controls.Add(this.grdList);
     this.tabDanhsach.Controls.Add(this.grpTimKiem);
     this.tabDanhsach.Image    = ((System.Drawing.Image)(resources.GetObject("tabDanhsach.Image")));
     this.tabDanhsach.Location = new System.Drawing.Point(1, 27);
     this.tabDanhsach.Name     = "tabDanhsach";
     this.tabDanhsach.Size     = new System.Drawing.Size(1012, 692);
     this.tabDanhsach.TabStop  = true;
     this.tabDanhsach.Text     = "Danh sách bệnh nhân chờ";
     //
     // grdList
     //
     this.grdList.AllowEdit        = Janus.Windows.GridEX.InheritableBoolean.False;
     this.grdList.AutoEdit         = true;
     this.grdList.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><FilterRowInfoText>Lọc" +
                                     " thông tin bệnh nhân làm chỉ định cận lâm sàng</FilterRowInfoText></LocalizableD" +
                                     "ata>";
     this.grdList.ContextMenuStrip           = this.contextMenuStrip1;
     this.grdList.DefaultFilterRowComparison = Janus.Windows.GridEX.FilterConditionOperator.Contains;
     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.FilterRowButtonStyle           = Janus.Windows.GridEX.FilterRowButtonStyle.ConditionOperatorDropDown;
     this.grdList.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.grdList.FilterRowUpdateMode            = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
     this.grdList.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grdList.GroupByBoxVisible              = false;
     this.grdList.HideSelection                  = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdList.Location                       = new System.Drawing.Point(0, 128);
     this.grdList.Name                           = "grdList";
     this.grdList.RecordNavigator                = true;
     this.grdList.RowHeaders                     = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.Size                           = new System.Drawing.Size(1012, 564);
     this.grdList.TabIndex                       = 1;
     this.grdList.TabStop                        = false;
     this.toolTip1.SetToolTip(this.grdList, "Nhấn nút cập nhật hoặc Kích đúp chuột vào dịch vụ để bắt đầu nhập kết quả");
     this.grdList.TotalRow           = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.TotalRowPosition   = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdList.VisualStyle        = Janus.Windows.GridEX.VisualStyle.VS2005;
     this.grdList.ColumnButtonClick += new Janus.Windows.GridEX.ColumnActionEventHandler(this.grdList_ColumnButtonClick);
     this.grdList.ApplyingFilter    += new System.ComponentModel.CancelEventHandler(this.grdList_ApplyingFilter);
     this.grdList.DoubleClick       += new System.EventHandler(this.grdList_DoubleClick);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolChooseBN,
         this.toolAccept,
         this.toolUnAccept,
         this.toolPrintRadio
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(181, 108);
     //
     // toolChooseBN
     //
     this.toolChooseBN.Image  = ((System.Drawing.Image)(resources.GetObject("toolChooseBN.Image")));
     this.toolChooseBN.Name   = "toolChooseBN";
     this.toolChooseBN.Size   = new System.Drawing.Size(180, 26);
     this.toolChooseBN.Text   = "Nhập kết quả";
     this.toolChooseBN.Click += new System.EventHandler(this.toolChooseBN_Click);
     //
     // toolAccept
     //
     this.toolAccept.Image  = ((System.Drawing.Image)(resources.GetObject("toolAccept.Image")));
     this.toolAccept.Name   = "toolAccept";
     this.toolAccept.Size   = new System.Drawing.Size(180, 26);
     this.toolAccept.Text   = "Xác nhận thực hiện";
     this.toolAccept.Click += new System.EventHandler(this.toolAccept_Click);
     //
     // toolUnAccept
     //
     this.toolUnAccept.Image  = ((System.Drawing.Image)(resources.GetObject("toolUnAccept.Image")));
     this.toolUnAccept.Name   = "toolUnAccept";
     this.toolUnAccept.Size   = new System.Drawing.Size(180, 26);
     this.toolUnAccept.Text   = "Hủy xác nhận";
     this.toolUnAccept.Click += new System.EventHandler(this.toolUnAccept_Click);
     //
     // toolPrintRadio
     //
     this.toolPrintRadio.Image  = ((System.Drawing.Image)(resources.GetObject("toolPrintRadio.Image")));
     this.toolPrintRadio.Name   = "toolPrintRadio";
     this.toolPrintRadio.Size   = new System.Drawing.Size(180, 26);
     this.toolPrintRadio.Text   = "In phiếu kết quả";
     this.toolPrintRadio.Click += new System.EventHandler(this.toolPrintRadio_Click);
     //
     // grpTimKiem
     //
     this.grpTimKiem.BackColor = System.Drawing.SystemColors.Control;
     this.grpTimKiem.Controls.Add(this.label31);
     this.grpTimKiem.Controls.Add(this.cboObjectType);
     this.grpTimKiem.Controls.Add(this.label4);
     this.grpTimKiem.Controls.Add(this.txtMaluotkham_tk);
     this.grpTimKiem.Controls.Add(this.label2);
     this.grpTimKiem.Controls.Add(this.txtIdBenhnhan_tk);
     this.grpTimKiem.Controls.Add(this.label28);
     this.grpTimKiem.Controls.Add(this.txtTenbenhnhan_tk);
     this.grpTimKiem.Controls.Add(this.label29);
     this.grpTimKiem.Controls.Add(this.dtmTo);
     this.grpTimKiem.Controls.Add(this.dtmFrom);
     this.grpTimKiem.Controls.Add(this.chkByDate);
     this.grpTimKiem.Controls.Add(this.label34);
     this.grpTimKiem.Controls.Add(this.panel2);
     this.grpTimKiem.Controls.Add(this.label5);
     this.grpTimKiem.Controls.Add(this.label3);
     this.grpTimKiem.Controls.Add(this.cboPatientSex);
     this.grpTimKiem.Controls.Add(this.cmdSearch);
     this.grpTimKiem.Dock        = System.Windows.Forms.DockStyle.Top;
     this.grpTimKiem.Image       = ((System.Drawing.Image)(resources.GetObject("grpTimKiem.Image")));
     this.grpTimKiem.Location    = new System.Drawing.Point(0, 0);
     this.grpTimKiem.Name        = "grpTimKiem";
     this.grpTimKiem.Size        = new System.Drawing.Size(1012, 128);
     this.grpTimKiem.TabIndex    = 0;
     this.grpTimKiem.Text        = "&Tìm kiếm nhanh";
     this.grpTimKiem.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2003;
     //
     // label31
     //
     this.label31.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.label31.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label31.Location  = new System.Drawing.Point(3, 110);
     this.label31.Name      = "label31";
     this.label31.Size      = new System.Drawing.Size(1006, 15);
     this.label31.TabIndex  = 531;
     this.label31.Text      = "Chú ý: Các Bệnh nhân ngoài BHYT cần phải thanh toán dịch vụ mới được xuất hiện tạ" +
                              "i chức năng này";
     this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboObjectType
     //
     this.cboObjectType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.cboObjectType.Location = new System.Drawing.Point(473, 52);
     this.cboObjectType.Name     = "cboObjectType";
     this.cboObjectType.Size     = new System.Drawing.Size(327, 21);
     this.cboObjectType.TabIndex = 6;
     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(579, 27);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(77, 15);
     this.label4.TabIndex  = 530;
     this.label4.Text      = "Mã lần khám";
     //
     // txtMaluotkham_tk
     //
     this.txtMaluotkham_tk.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.txtMaluotkham_tk.BackColor     = System.Drawing.Color.White;
     this.txtMaluotkham_tk.Font          = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaluotkham_tk.Location      = new System.Drawing.Point(662, 23);
     this.txtMaluotkham_tk.Name          = "txtMaluotkham_tk";
     this.txtMaluotkham_tk.Size          = new System.Drawing.Size(138, 21);
     this.txtMaluotkham_tk.TabIndex      = 4;
     this.txtMaluotkham_tk.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtMaluotkham_tk.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.txtMaluotkham_tk_KeyDown);
     //
     // 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(405, 27);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(43, 15);
     this.label2.TabIndex  = 529;
     this.label2.Text      = "Mã BN";
     //
     // txtIdBenhnhan_tk
     //
     this.txtIdBenhnhan_tk.BackColor     = System.Drawing.Color.White;
     this.txtIdBenhnhan_tk.Font          = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtIdBenhnhan_tk.Location      = new System.Drawing.Point(473, 23);
     this.txtIdBenhnhan_tk.Name          = "txtIdBenhnhan_tk";
     this.txtIdBenhnhan_tk.Numeric       = true;
     this.txtIdBenhnhan_tk.Size          = new System.Drawing.Size(102, 21);
     this.txtIdBenhnhan_tk.TabIndex      = 3;
     this.txtIdBenhnhan_tk.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label28.Location = new System.Drawing.Point(405, 57);
     this.label28.Name     = "label28";
     this.label28.Size     = new System.Drawing.Size(62, 15);
     this.label28.TabIndex = 528;
     this.label28.Text     = "Đối tượng";
     //
     // txtTenbenhnhan_tk
     //
     this.txtTenbenhnhan_tk.BackColor = System.Drawing.Color.White;
     this.txtTenbenhnhan_tk.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTenbenhnhan_tk.Location  = new System.Drawing.Point(85, 51);
     this.txtTenbenhnhan_tk.Name      = "txtTenbenhnhan_tk";
     this.txtTenbenhnhan_tk.Size      = new System.Drawing.Size(313, 23);
     this.txtTenbenhnhan_tk.TabIndex  = 5;
     //
     // label29
     //
     this.label29.AutoSize  = true;
     this.label29.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label29.ForeColor = System.Drawing.Color.Black;
     this.label29.Location  = new System.Drawing.Point(14, 55);
     this.label29.Name      = "label29";
     this.label29.Size      = new System.Drawing.Size(54, 15);
     this.label29.TabIndex  = 527;
     this.label29.Text      = "Tên BN :";
     //
     // 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(268, 24);
     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   = 2;
     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(85, 24);
     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   = 1;
     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(6, 25);
     this.chkByDate.Name       = "chkByDate";
     this.chkByDate.Size       = new System.Drawing.Size(75, 19);
     this.chkByDate.TabIndex   = 0;
     this.chkByDate.TabStop    = false;
     this.chkByDate.Text       = "Từ ngày :";
     this.chkByDate.UseVisualStyleBackColor = true;
     //
     // label34
     //
     this.label34.AutoSize  = true;
     this.label34.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label34.ForeColor = System.Drawing.Color.Black;
     this.label34.Location  = new System.Drawing.Point(208, 29);
     this.label34.Name      = "label34";
     this.label34.Size      = new System.Drawing.Size(59, 15);
     this.label34.TabIndex  = 525;
     this.label34.Text      = "Đến ngày";
     //
     // panel2
     //
     this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.panel2.Controls.Add(this.radDaXacNhan);
     this.panel2.Controls.Add(this.radChoXacNhan);
     this.panel2.Controls.Add(this.radChuaXacNhan);
     this.panel2.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panel2.Location = new System.Drawing.Point(473, 77);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(494, 30);
     this.panel2.TabIndex = 2;
     //
     // radDaXacNhan
     //
     this.radDaXacNhan.Font            = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radDaXacNhan.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.radDaXacNhan.Location        = new System.Drawing.Point(245, 3);
     this.radDaXacNhan.Name            = "radDaXacNhan";
     this.radDaXacNhan.Size            = new System.Drawing.Size(207, 23);
     this.radDaXacNhan.TabIndex        = 2;
     this.radDaXacNhan.Text            = "Đã kết thúc(Xác nhận kết quả)";
     this.radDaXacNhan.CheckedChanged += new System.EventHandler(this.radDaXacNhan_CheckedChanged);
     //
     // radChoXacNhan
     //
     this.radChoXacNhan.Font            = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radChoXacNhan.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.radChoXacNhan.Location        = new System.Drawing.Point(129, 3);
     this.radChoXacNhan.Name            = "radChoXacNhan";
     this.radChoXacNhan.Size            = new System.Drawing.Size(104, 23);
     this.radChoXacNhan.TabIndex        = 1;
     this.radChoXacNhan.TabStop         = true;
     this.radChoXacNhan.Text            = "Đang thực hiện";
     this.radChoXacNhan.CheckedChanged += new System.EventHandler(this.radChoXacNhan_CheckedChanged);
     //
     // radChuaXacNhan
     //
     this.radChuaXacNhan.Checked         = true;
     this.radChuaXacNhan.Font            = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radChuaXacNhan.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.radChuaXacNhan.Location        = new System.Drawing.Point(3, 3);
     this.radChuaXacNhan.Name            = "radChuaXacNhan";
     this.radChuaXacNhan.Size            = new System.Drawing.Size(120, 23);
     this.radChuaXacNhan.TabIndex        = 0;
     this.radChuaXacNhan.TabStop         = true;
     this.radChuaXacNhan.Text            = "Chưa thực hiện";
     this.radChuaXacNhan.CheckedChanged += new System.EventHandler(this.radChuaXacNhan_CheckedChanged);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(405, 82);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(68, 15);
     this.label5.TabIndex = 18;
     this.label5.Text     = "&Trạng thái :";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(23, 82);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(58, 15);
     this.label3.TabIndex = 8;
     this.label3.Text     = "Giới tính :";
     //
     // cboPatientSex
     //
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.IsSeparator       = false;
     uiComboBoxItem1.Text              = "Giới tính";
     uiComboBoxItem1.Value             = -1;
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator       = false;
     uiComboBoxItem2.Text              = "Nam(Male)";
     uiComboBoxItem2.Value             = 0;
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator       = false;
     uiComboBoxItem3.Text              = "Nữ(Female)";
     uiComboBoxItem3.Value             = 1;
     uiComboBoxItem4.FormatStyle.Alpha = 0;
     uiComboBoxItem4.IsSeparator       = false;
     uiComboBoxItem4.Text              = "Khác";
     uiComboBoxItem4.Value             = 2;
     this.cboPatientSex.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2,
         uiComboBoxItem3,
         uiComboBoxItem4
     });
     this.cboPatientSex.Location      = new System.Drawing.Point(85, 77);
     this.cboPatientSex.Name          = "cboPatientSex";
     this.cboPatientSex.SelectedIndex = 0;
     this.cboPatientSex.Size          = new System.Drawing.Size(313, 21);
     this.cboPatientSex.TabIndex      = 7;
     this.cboPatientSex.Text          = "Giới tính";
     //
     // cmdSearch
     //
     this.cmdSearch.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdSearch.Font      = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdSearch.Image     = ((System.Drawing.Image)(resources.GetObject("cmdSearch.Image")));
     this.cmdSearch.ImageSize = new System.Drawing.Size(32, 32);
     this.cmdSearch.Location  = new System.Drawing.Point(836, 24);
     this.cmdSearch.Name      = "cmdSearch";
     this.cmdSearch.Size      = new System.Drawing.Size(165, 52);
     this.cmdSearch.TabIndex  = 8;
     this.cmdSearch.Text      = "&Tìm kiếm(F3)";
     this.cmdSearch.Click    += new System.EventHandler(this.cmdSearch_Click);
     //
     // ctxImage
     //
     this.ctxImage.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.mnuBrowseImage,
         this.mnuDeleteImage,
         this.toolStripMenuItem1,
         this.mnuView
     });
     this.ctxImage.Name = "contextMenuStrip1";
     this.ctxImage.Size = new System.Drawing.Size(127, 76);
     //
     // mnuBrowseImage
     //
     this.mnuBrowseImage.Name = "mnuBrowseImage";
     this.mnuBrowseImage.Size = new System.Drawing.Size(126, 22);
     this.mnuBrowseImage.Text = "Chọn ảnh";
     //
     // mnuDeleteImage
     //
     this.mnuDeleteImage.Name = "mnuDeleteImage";
     this.mnuDeleteImage.Size = new System.Drawing.Size(126, 22);
     this.mnuDeleteImage.Text = "Hủy ảnh";
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(123, 6);
     //
     // mnuView
     //
     this.mnuView.Name = "mnuView";
     this.mnuView.Size = new System.Drawing.Size(126, 22);
     this.mnuView.Text = "View ảnh";
     //
     // uiGroupBox13
     //
     this.uiGroupBox13.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.uiGroupBox13.Location = new System.Drawing.Point(0, 586);
     this.uiGroupBox13.Name     = "uiGroupBox13";
     this.uiGroupBox13.Size     = new System.Drawing.Size(1057, 56);
     this.uiGroupBox13.TabIndex = 1;
     this.uiGroupBox13.Text     = "&Chức năng";
     //
     // toolTip1
     //
     this.toolTip1.IsBalloon    = true;
     this.toolTip1.ToolTipTitle = "Trợ giúp";
     //
     // frm_quanlycacphongchucnang
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize    = new System.Drawing.Size(1014, 742);
     this.Controls.Add(this.TabInfo);
     this.Controls.Add(this.statusStrip1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.KeyPreview      = true;
     this.Name            = "frm_quanlycacphongchucnang";
     this.ShowIcon        = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Quản lý thông tin chẩn đoán hình ảnh";
     this.WindowState     = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing    += new System.Windows.Forms.FormClosingEventHandler(this.frm_quanlycacphongchucnang_FormClosing);
     this.Load           += new System.EventHandler(this.frm_quanlycacphongchucnang_Load);
     this.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.frm_quanlycacphongchucnang_KeyDown);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TabInfo)).EndInit();
     this.TabInfo.ResumeLayout(false);
     this.tabDanhsach.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpTimKiem)).EndInit();
     this.grpTimKiem.ResumeLayout(false);
     this.grpTimKiem.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.ctxImage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox13)).EndInit();
     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_baocaodanhsachbenhnhantheodotuoi));
            Janus.Windows.GridEX.GridEXLayout grdChitiet_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();
            this.cmdExportToExcel = new Janus.Windows.EditControls.UIButton();
            this.dtNgayInPhieu = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label3 = new System.Windows.Forms.Label();
            this.cmdInPhieuXN = new Janus.Windows.EditControls.UIButton();
            this.cmdExit = new Janus.Windows.EditControls.UIButton();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.gridEXExporter1 = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
            this.printDialog1 = new System.Windows.Forms.PrintDialog();
            this.cboSoSanh = new Janus.Windows.EditControls.UIGroupBox();
            this.panel1 = new System.Windows.Forms.Panel();
            this.grdChitiet = new Janus.Windows.GridEX.GridEX();
            this.cboKhoa = new Janus.Windows.EditControls.UIComboBox();
            this.label4 = new System.Windows.Forms.Label();
            this.cboDoituongKCB = new Janus.Windows.EditControls.UIComboBox();
            this.label1 = new System.Windows.Forms.Label();
            this.dtToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.dtFromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.chkByDate = new Janus.Windows.EditControls.UICheckBox();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.label2 = new System.Windows.Forms.Label();
            this.chkDoTuoi = new Janus.Windows.EditControls.UICheckBox();
            this.cboEqual = new System.Windows.Forms.ComboBox();
            this.txtDenTuoi = new System.Windows.Forms.TextBox();
            this.label5 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.cboGT = new Janus.Windows.EditControls.UIComboBox();
            this.txtTuTuoi = new System.Windows.Forms.TextBox();
            this.baocaO_TIEUDE1 = new VNS.HIS.UI.FORMs.BAOCAO.BHYT.UserControls.BAOCAO_TIEUDE();
            ((System.ComponentModel.ISupportInitialize)(this.cboSoSanh)).BeginInit();
            this.cboSoSanh.SuspendLayout();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).BeginInit();
            this.SuspendLayout();
            // 
            // cmdExportToExcel
            // 
            this.cmdExportToExcel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdExportToExcel.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdExportToExcel.Image = ((System.Drawing.Image)(resources.GetObject("cmdExportToExcel.Image")));
            this.cmdExportToExcel.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdExportToExcel.Location = new System.Drawing.Point(364, 530);
            this.cmdExportToExcel.Name = "cmdExportToExcel";
            this.cmdExportToExcel.Size = new System.Drawing.Size(133, 30);
            this.cmdExportToExcel.TabIndex = 9;
            this.cmdExportToExcel.Text = "Xuất Excel";
            this.cmdExportToExcel.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
            this.cmdExportToExcel.Click += new System.EventHandler(this.cmdExportToExcel_Click);
            // 
            // dtNgayInPhieu
            // 
            this.dtNgayInPhieu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.dtNgayInPhieu.CustomFormat = "dd/MM/yyyy";
            this.dtNgayInPhieu.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtNgayInPhieu.DropDownCalendar.Name = "";
            this.dtNgayInPhieu.Font = new System.Drawing.Font("Arial", 9F);
            this.dtNgayInPhieu.Location = new System.Drawing.Point(81, 530);
            this.dtNgayInPhieu.Name = "dtNgayInPhieu";
            this.dtNgayInPhieu.ShowUpDown = true;
            this.dtNgayInPhieu.Size = new System.Drawing.Size(200, 21);
            this.dtNgayInPhieu.TabIndex = 11;
            this.dtNgayInPhieu.TabStop = false;
            this.dtNgayInPhieu.Value = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
            // 
            // label3
            // 
            this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label3.AutoSize = true;
            this.label3.Font = new System.Drawing.Font("Arial", 9F);
            this.label3.Location = new System.Drawing.Point(3, 534);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(48, 15);
            this.label3.TabIndex = 88;
            this.label3.Text = "Ngày in";
            // 
            // cmdInPhieuXN
            // 
            this.cmdInPhieuXN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdInPhieuXN.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdInPhieuXN.Image = ((System.Drawing.Image)(resources.GetObject("cmdInPhieuXN.Image")));
            this.cmdInPhieuXN.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdInPhieuXN.Location = new System.Drawing.Point(503, 530);
            this.cmdInPhieuXN.Name = "cmdInPhieuXN";
            this.cmdInPhieuXN.Size = new System.Drawing.Size(133, 30);
            this.cmdInPhieuXN.TabIndex = 8;
            this.cmdInPhieuXN.Text = "In báo cáo";
            this.cmdInPhieuXN.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
            this.cmdInPhieuXN.Click += new System.EventHandler(this.cmdInPhieuXN_Click);
            // 
            // cmdExit
            // 
            this.cmdExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdExit.Font = new System.Drawing.Font("Arial", 9F);
            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(642, 530);
            this.cmdExit.Name = "cmdExit";
            this.cmdExit.Size = new System.Drawing.Size(133, 30);
            this.cmdExit.TabIndex = 10;
            this.cmdExit.Text = "Thoát (Esc)";
            // 
            // printDialog1
            // 
            this.printDialog1.UseEXDialog = true;
            // 
            // cboSoSanh
            // 
            this.cboSoSanh.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.cboSoSanh.Controls.Add(this.cboEqual);
            this.cboSoSanh.Controls.Add(this.txtTuTuoi);
            this.cboSoSanh.Controls.Add(this.cboGT);
            this.cboSoSanh.Controls.Add(this.label6);
            this.cboSoSanh.Controls.Add(this.txtDenTuoi);
            this.cboSoSanh.Controls.Add(this.label5);
            this.cboSoSanh.Controls.Add(this.chkDoTuoi);
            this.cboSoSanh.Controls.Add(this.label2);
            this.cboSoSanh.Controls.Add(this.panel1);
            this.cboSoSanh.Controls.Add(this.cboKhoa);
            this.cboSoSanh.Controls.Add(this.label4);
            this.cboSoSanh.Controls.Add(this.cboDoituongKCB);
            this.cboSoSanh.Controls.Add(this.label1);
            this.cboSoSanh.Controls.Add(this.dtToDate);
            this.cboSoSanh.Controls.Add(this.dtFromDate);
            this.cboSoSanh.Controls.Add(this.chkByDate);
            this.cboSoSanh.Font = new System.Drawing.Font("Arial", 9F);
            this.cboSoSanh.Image = ((System.Drawing.Image)(resources.GetObject("cboSoSanh.Image")));
            this.cboSoSanh.Location = new System.Drawing.Point(0, 59);
            this.cboSoSanh.Name = "cboSoSanh";
            this.cboSoSanh.Size = new System.Drawing.Size(784, 465);
            this.cboSoSanh.TabIndex = 116;
            this.cboSoSanh.Text = "Thông tin tìm kiếm";
            // 
            // panel1
            // 
            this.panel1.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.panel1.Controls.Add(this.grdChitiet);
            this.panel1.Location = new System.Drawing.Point(6, 123);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(772, 336);
            this.panel1.TabIndex = 46;
            // 
            // grdChitiet
            // 
            this.grdChitiet.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            grdChitiet_DesignTimeLayout.LayoutString = resources.GetString("grdChitiet_DesignTimeLayout.LayoutString");
            this.grdChitiet.DesignTimeLayout = grdChitiet_DesignTimeLayout;
            this.grdChitiet.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdChitiet.Font = new System.Drawing.Font("Arial", 9F);
            this.grdChitiet.GroupByBoxVisible = false;
            this.grdChitiet.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdChitiet.Location = new System.Drawing.Point(0, 0);
            this.grdChitiet.Name = "grdChitiet";
            this.grdChitiet.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdChitiet.Size = new System.Drawing.Size(772, 336);
            this.grdChitiet.TabIndex = 21;
            this.grdChitiet.TabStop = false;
            this.grdChitiet.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdChitiet.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdChitiet.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // cboKhoa
            // 
            this.cboKhoa.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboKhoa.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cboKhoa.Location = new System.Drawing.Point(110, 27);
            this.cboKhoa.Name = "cboKhoa";
            this.cboKhoa.SelectInDataSource = true;
            this.cboKhoa.Size = new System.Drawing.Size(624, 21);
            this.cboKhoa.TabIndex = 0;
            this.cboKhoa.Text = "Khoa thực hiện";
            // 
            // label4
            // 
            this.label4.Location = new System.Drawing.Point(13, 29);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(104, 15);
            this.label4.TabIndex = 44;
            this.label4.Text = "Khoa KCB";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cboDoituongKCB
            // 
            this.cboDoituongKCB.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboDoituongKCB.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cboDoituongKCB.Location = new System.Drawing.Point(123, 54);
            this.cboDoituongKCB.Name = "cboDoituongKCB";
            this.cboDoituongKCB.SelectInDataSource = true;
            this.cboDoituongKCB.Size = new System.Drawing.Size(200, 21);
            this.cboDoituongKCB.TabIndex = 1;
            this.cboDoituongKCB.Text = "Đối tượng";
            // 
            // label1
            // 
            this.label1.Location = new System.Drawing.Point(13, 56);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(104, 15);
            this.label1.TabIndex = 16;
            this.label1.Text = "Đối tượng KCB:";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtToDate
            // 
            this.dtToDate.CustomFormat = "dd/MM/yyyy";
            this.dtToDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtToDate.DropDownCalendar.Name = "";
            this.dtToDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtToDate.Location = new System.Drawing.Point(331, 81);
            this.dtToDate.Name = "dtToDate";
            this.dtToDate.ShowUpDown = true;
            this.dtToDate.Size = new System.Drawing.Size(200, 21);
            this.dtToDate.TabIndex = 6;
            this.dtToDate.Value = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
            // 
            // dtFromDate
            // 
            this.dtFromDate.CustomFormat = "dd/MM/yyyy";
            this.dtFromDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtFromDate.DropDownCalendar.Name = "";
            this.dtFromDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtFromDate.Location = new System.Drawing.Point(123, 81);
            this.dtFromDate.Name = "dtFromDate";
            this.dtFromDate.ShowUpDown = true;
            this.dtFromDate.Size = new System.Drawing.Size(200, 21);
            this.dtFromDate.TabIndex = 5;
            this.dtFromDate.Value = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
            // 
            // chkByDate
            // 
            this.chkByDate.Checked = true;
            this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkByDate.Location = new System.Drawing.Point(48, 82);
            this.chkByDate.Name = "chkByDate";
            this.chkByDate.Size = new System.Drawing.Size(69, 23);
            this.chkByDate.TabIndex = 4;
            this.chkByDate.Text = "Từ ngày";
            // 
            // toolTip1
            // 
            this.toolTip1.IsBalloon = true;
            this.toolTip1.ToolTipTitle = "Trợ giúp";
            // 
            // label2
            // 
            this.label2.Location = new System.Drawing.Point(329, 55);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(43, 22);
            this.label2.TabIndex = 47;
            this.label2.Text = "Tuổi";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // chkDoTuoi
            // 
            this.chkDoTuoi.Checked = true;
            this.chkDoTuoi.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkDoTuoi.Location = new System.Drawing.Point(388, 54);
            this.chkDoTuoi.Name = "chkDoTuoi";
            this.chkDoTuoi.Size = new System.Drawing.Size(95, 23);
            this.chkDoTuoi.TabIndex = 48;
            this.chkDoTuoi.Text = "Từ khoảng";
            this.chkDoTuoi.CheckedChanged += new System.EventHandler(this.chkDoTuoi_CheckedChanged);
            // 
            // cboEqual
            // 
            this.cboEqual.FormattingEnabled = true;
            this.cboEqual.Items.AddRange(new object[] {
            "---- Chọn so sách -----",
            "     Bằng(=)",
            "     Lớn hơn(>=)",
            "     Nhỏ hơn(<=)"});
            this.cboEqual.Location = new System.Drawing.Point(480, 53);
            this.cboEqual.Name = "cboEqual";
            this.cboEqual.Size = new System.Drawing.Size(95, 23);
            this.cboEqual.TabIndex = 124;
            this.cboEqual.Visible = false;
            // 
            // txtDenTuoi
            // 
            this.txtDenTuoi.Location = new System.Drawing.Point(642, 56);
            this.txtDenTuoi.Name = "txtDenTuoi";
            this.txtDenTuoi.Size = new System.Drawing.Size(92, 21);
            this.txtDenTuoi.TabIndex = 123;
            // 
            // 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.Location = new System.Drawing.Point(581, 60);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(51, 17);
            this.label5.TabIndex = 122;
            this.label5.Text = "------->";
            // 
            // label6
            // 
            this.label6.Location = new System.Drawing.Point(557, 81);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(75, 22);
            this.label6.TabIndex = 125;
            this.label6.Text = "Giới tính: ";
            this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cboGT
            // 
            this.cboGT.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 = "Giới tính";
            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 = "Nữ";
            uiComboBoxItem3.Value = 1;
            this.cboGT.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3});
            this.cboGT.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cboGT.Location = new System.Drawing.Point(642, 80);
            this.cboGT.Name = "cboGT";
            this.cboGT.SelectInDataSource = true;
            this.cboGT.Size = new System.Drawing.Size(92, 21);
            this.cboGT.TabIndex = 126;
            this.cboGT.Text = "Giới tính";
            // 
            // txtTuTuoi
            // 
            this.txtTuTuoi.Location = new System.Drawing.Point(483, 56);
            this.txtTuTuoi.Name = "txtTuTuoi";
            this.txtTuTuoi.Size = new System.Drawing.Size(92, 21);
            this.txtTuTuoi.TabIndex = 127;
            // 
            // baocaO_TIEUDE1
            // 
            this.baocaO_TIEUDE1.BackColor = System.Drawing.SystemColors.Control;
            this.baocaO_TIEUDE1.Dock = System.Windows.Forms.DockStyle.Top;
            this.baocaO_TIEUDE1.Location = new System.Drawing.Point(0, 0);
            this.baocaO_TIEUDE1.MA_BAOCAO = "THUOC_BCDSACH_BNHANLINHTHUOC";
            this.baocaO_TIEUDE1.Name = "baocaO_TIEUDE1";
            this.baocaO_TIEUDE1.Phimtat = "Bạn có thể sử dụng phím tắt";
            this.baocaO_TIEUDE1.PicImg = ((System.Drawing.Image)(resources.GetObject("baocaO_TIEUDE1.PicImg")));
            this.baocaO_TIEUDE1.ShortcutAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.baocaO_TIEUDE1.ShortcutFont = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.baocaO_TIEUDE1.showHelp = false;
            this.baocaO_TIEUDE1.Size = new System.Drawing.Size(784, 53);
            this.baocaO_TIEUDE1.TabIndex = 115;
            this.baocaO_TIEUDE1.TIEUDE = "THỐNG KÊ BỆNH NHÂN THEO ĐỘ TUỔI";
            this.baocaO_TIEUDE1.TitleFont = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            // 
            // frm_baocaodanhsachbenhnhantheodotuoi
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(784, 562);
            this.Controls.Add(this.cboSoSanh);
            this.Controls.Add(this.baocaO_TIEUDE1);
            this.Controls.Add(this.cmdExportToExcel);
            this.Controls.Add(this.dtNgayInPhieu);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.cmdInPhieuXN);
            this.Controls.Add(this.cmdExit);
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frm_baocaodanhsachbenhnhantheodotuoi";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "BÁO CÁO TÌNH HÌNH TIẾP ĐÓN BỆNH NHÂN";
            this.Load += new System.EventHandler(this.frm_BAOCAO_TONGHOP_TAI_KKB_DTUONG_THUPHI_Load);
            ((System.ComponentModel.ISupportInitialize)(this.cboSoSanh)).EndInit();
            this.cboSoSanh.ResumeLayout(false);
            this.cboSoSanh.PerformLayout();
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).EndInit();
            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();
     Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout      = new Janus.Windows.GridEX.GridEXLayout();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(Frm_Sokhambenh_NoiTru));
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem22 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem23 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem24 = new Janus.Windows.EditControls.UIComboBoxItem();
     this.toolTip1           = new System.Windows.Forms.ToolTip(this.components);
     this.grdList            = new Janus.Windows.GridEX.GridEX();
     this.label5             = new System.Windows.Forms.Label();
     this.cboTinhTrang       = new Janus.Windows.EditControls.UIComboBox();
     this.uiGroupBox2        = new Janus.Windows.EditControls.UIGroupBox();
     this.label2             = new System.Windows.Forms.Label();
     this.cboDoituongKCB     = new Janus.Windows.EditControls.UIComboBox();
     this.txtNhanvientiepdon = new VNS.HIS.UCs.AutoCompleteTextbox();
     this.panel1             = new System.Windows.Forms.Panel();
     this.cboKhoa            = new Janus.Windows.EditControls.UIComboBox();
     this.label4             = new System.Windows.Forms.Label();
     this.label8             = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     this.dtToDate           = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtFromDate         = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.chkByDate          = new Janus.Windows.EditControls.UICheckBox();
     this.printDialog1       = new System.Windows.Forms.PrintDialog();
     this.gridEXExporter1    = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
     this.baocaO_TIEUDE1     = new VNS.HIS.UI.FORMs.BAOCAO.BHYT.UserControls.BAOCAO_TIEUDE();
     this.saveFileDialog1    = new System.Windows.Forms.SaveFileDialog();
     this.cmdExportToExcel   = new Janus.Windows.EditControls.UIButton();
     this.dtNgayInPhieu      = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.label3             = new System.Windows.Forms.Label();
     this.cmdInPhieuXN       = new Janus.Windows.EditControls.UIButton();
     this.cmdExit            = new Janus.Windows.EditControls.UIButton();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
     this.uiGroupBox2.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // toolTip1
     //
     this.toolTip1.IsBalloon    = true;
     this.toolTip1.ToolTipTitle = "Trợ giúp";
     //
     // grdList
     //
     this.grdList.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     this.grdList.DefaultFilterRowComparison = Janus.Windows.GridEX.FilterConditionOperator.Contains;
     grdList_DesignTimeLayout.LayoutString   = resources.GetString("grdList_DesignTimeLayout.LayoutString");
     this.grdList.DesignTimeLayout           = grdList_DesignTimeLayout;
     this.grdList.Dock                 = System.Windows.Forms.DockStyle.Fill;
     this.grdList.FilterMode           = Janus.Windows.GridEX.FilterMode.Automatic;
     this.grdList.FilterRowButtonStyle = Janus.Windows.GridEX.FilterRowButtonStyle.ConditionOperatorDropDown;
     this.grdList.FilterRowUpdateMode  = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
     this.grdList.Font                 = new System.Drawing.Font("Arial", 9F);
     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.Size                 = new System.Drawing.Size(1160, 364);
     this.grdList.TabIndex             = 21;
     this.grdList.TabStop              = false;
     this.grdList.TotalRow             = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.VisualStyle          = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(521, 59);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(104, 15);
     this.label5.TabIndex  = 63;
     this.label5.Text      = "Tình trạng:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboTinhTrang
     //
     this.cboTinhTrang.Font             = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     uiComboBoxItem22.FormatStyle.Alpha = 0;
     uiComboBoxItem22.IsSeparator       = false;
     uiComboBoxItem22.Text              = "Tất cả";
     uiComboBoxItem22.Value             = ((short)(-1));
     uiComboBoxItem23.FormatStyle.Alpha = 0;
     uiComboBoxItem23.IsSeparator       = false;
     uiComboBoxItem23.Text              = "Ngoại trú";
     uiComboBoxItem23.Value             = ((short)(0));
     uiComboBoxItem24.FormatStyle.Alpha = 0;
     uiComboBoxItem24.IsSeparator       = false;
     uiComboBoxItem24.Text              = "Nội trú";
     uiComboBoxItem24.Value             = ((short)(1));
     this.cboTinhTrang.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem22,
         uiComboBoxItem23,
         uiComboBoxItem24
     });
     this.cboTinhTrang.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboTinhTrang.Location           = new System.Drawing.Point(632, 54);
     this.cboTinhTrang.Name               = "cboTinhTrang";
     this.cboTinhTrang.SelectInDataSource = true;
     this.cboTinhTrang.Size               = new System.Drawing.Size(315, 21);
     this.cboTinhTrang.TabIndex           = 62;
     this.cboTinhTrang.Text               = "Đối tượng";
     this.cboTinhTrang.VisualStyle        = Janus.Windows.UI.VisualStyle.Office2003;
     //
     // uiGroupBox2
     //
     this.uiGroupBox2.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.uiGroupBox2.Controls.Add(this.label5);
     this.uiGroupBox2.Controls.Add(this.cboTinhTrang);
     this.uiGroupBox2.Controls.Add(this.label2);
     this.uiGroupBox2.Controls.Add(this.cboDoituongKCB);
     this.uiGroupBox2.Controls.Add(this.txtNhanvientiepdon);
     this.uiGroupBox2.Controls.Add(this.panel1);
     this.uiGroupBox2.Controls.Add(this.cboKhoa);
     this.uiGroupBox2.Controls.Add(this.label4);
     this.uiGroupBox2.Controls.Add(this.label8);
     this.uiGroupBox2.Controls.Add(this.label1);
     this.uiGroupBox2.Controls.Add(this.dtToDate);
     this.uiGroupBox2.Controls.Add(this.dtFromDate);
     this.uiGroupBox2.Controls.Add(this.chkByDate);
     this.uiGroupBox2.Font        = new System.Drawing.Font("Arial", 9F);
     this.uiGroupBox2.Image       = ((System.Drawing.Image)(resources.GetObject("uiGroupBox2.Image")));
     this.uiGroupBox2.Location    = new System.Drawing.Point(0, 59);
     this.uiGroupBox2.Name        = "uiGroupBox2";
     this.uiGroupBox2.Size        = new System.Drawing.Size(1172, 493);
     this.uiGroupBox2.TabIndex    = 123;
     this.uiGroupBox2.Text        = "Thông tin tìm kiếm";
     this.uiGroupBox2.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2003;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(521, 86);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(104, 15);
     this.label2.TabIndex  = 61;
     this.label2.Text      = "đến ngày:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboDoituongKCB
     //
     this.cboDoituongKCB.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboDoituongKCB.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboDoituongKCB.Location           = new System.Drawing.Point(234, 54);
     this.cboDoituongKCB.Name               = "cboDoituongKCB";
     this.cboDoituongKCB.SelectInDataSource = true;
     this.cboDoituongKCB.Size               = new System.Drawing.Size(270, 21);
     this.cboDoituongKCB.TabIndex           = 1;
     this.cboDoituongKCB.Text               = "Đối tượng";
     this.cboDoituongKCB.VisualStyle        = Janus.Windows.UI.VisualStyle.Office2003;
     //
     // txtNhanvientiepdon
     //
     this.txtNhanvientiepdon._backcolor           = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.txtNhanvientiepdon._Font                = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNhanvientiepdon._TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtNhanvientiepdon.AutoCompleteList     = ((System.Collections.Generic.List <string>)(resources.GetObject("txtNhanvientiepdon.AutoCompleteList")));
     this.txtNhanvientiepdon.BorderStyle          = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtNhanvientiepdon.CaseSensitive        = false;
     this.txtNhanvientiepdon.CompareNoID          = true;
     this.txtNhanvientiepdon.DefaultCode          = "-1";
     this.txtNhanvientiepdon.DefaultID            = "-1";
     this.txtNhanvientiepdon.Drug_ID              = null;
     this.txtNhanvientiepdon.ExtraWidth           = 0;
     this.txtNhanvientiepdon.FillValueAfterSelect = false;
     this.txtNhanvientiepdon.Font                     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNhanvientiepdon.Location                 = new System.Drawing.Point(632, 27);
     this.txtNhanvientiepdon.MaxHeight                = 289;
     this.txtNhanvientiepdon.MaxLength                = 100;
     this.txtNhanvientiepdon.MinTypedCharacters       = 2;
     this.txtNhanvientiepdon.MyCode                   = "-1";
     this.txtNhanvientiepdon.MyID                     = "-1";
     this.txtNhanvientiepdon.MyText                   = "";
     this.txtNhanvientiepdon.Name                     = "txtNhanvientiepdon";
     this.txtNhanvientiepdon.RaiseEvent               = true;
     this.txtNhanvientiepdon.RaiseEventEnter          = false;
     this.txtNhanvientiepdon.RaiseEventEnterWhenEmpty = true;
     this.txtNhanvientiepdon.SelectedIndex            = -1;
     this.txtNhanvientiepdon.Size                     = new System.Drawing.Size(315, 21);
     this.txtNhanvientiepdon.splitChar                = '@';
     this.txtNhanvientiepdon.splitCharIDAndCode       = '#';
     this.txtNhanvientiepdon.TabIndex                 = 60;
     this.txtNhanvientiepdon.TakeCode                 = false;
     this.txtNhanvientiepdon.txtMyCode                = null;
     this.txtNhanvientiepdon.txtMyCode_Edit           = null;
     this.txtNhanvientiepdon.txtMyID                  = null;
     this.txtNhanvientiepdon.txtMyID_Edit             = null;
     this.txtNhanvientiepdon.txtMyName                = null;
     this.txtNhanvientiepdon.txtMyName_Edit           = null;
     this.txtNhanvientiepdon.txtNext                  = null;
     //
     // panel1
     //
     this.panel1.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.panel1.Controls.Add(this.grdList);
     this.panel1.Location = new System.Drawing.Point(6, 123);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(1160, 364);
     this.panel1.TabIndex = 46;
     //
     // cboKhoa
     //
     this.cboKhoa.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboKhoa.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboKhoa.Location           = new System.Drawing.Point(234, 27);
     this.cboKhoa.Name               = "cboKhoa";
     this.cboKhoa.SelectInDataSource = true;
     this.cboKhoa.Size               = new System.Drawing.Size(270, 21);
     this.cboKhoa.TabIndex           = 0;
     this.cboKhoa.Text               = "Khoa thực hiện";
     this.cboKhoa.VisualStyle        = Janus.Windows.UI.VisualStyle.Office2003;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(124, 29);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(104, 15);
     this.label4.TabIndex  = 44;
     this.label4.Text      = "Khoa KCB:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label8
     //
     this.label8.Location  = new System.Drawing.Point(521, 30);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(104, 15);
     this.label8.TabIndex  = 30;
     this.label8.Text      = "Bác sỹ kết thúc:";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(124, 56);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(104, 15);
     this.label1.TabIndex  = 16;
     this.label1.Text      = "Đối tượng KCB:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // dtToDate
     //
     this.dtToDate.CustomFormat = "dd/MM/yyyy";
     this.dtToDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtToDate.DropDownCalendar.Name        = "";
     this.dtToDate.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     this.dtToDate.Font        = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtToDate.Location    = new System.Drawing.Point(632, 81);
     this.dtToDate.Name        = "dtToDate";
     this.dtToDate.ShowUpDown  = true;
     this.dtToDate.Size        = new System.Drawing.Size(315, 21);
     this.dtToDate.TabIndex    = 6;
     this.dtToDate.Value       = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
     this.dtToDate.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     //
     // dtFromDate
     //
     this.dtFromDate.CustomFormat = "dd/MM/yyyy";
     this.dtFromDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtFromDate.DropDownCalendar.Name        = "";
     this.dtFromDate.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     this.dtFromDate.Font        = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtFromDate.Location    = new System.Drawing.Point(234, 81);
     this.dtFromDate.Name        = "dtFromDate";
     this.dtFromDate.ShowUpDown  = true;
     this.dtFromDate.Size        = new System.Drawing.Size(270, 21);
     this.dtFromDate.TabIndex    = 5;
     this.dtFromDate.Value       = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
     this.dtFromDate.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     //
     // chkByDate
     //
     this.chkByDate.Checked         = true;
     this.chkByDate.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.chkByDate.Location        = new System.Drawing.Point(159, 82);
     this.chkByDate.Name            = "chkByDate";
     this.chkByDate.Size            = new System.Drawing.Size(69, 23);
     this.chkByDate.TabIndex        = 4;
     this.chkByDate.Text            = "Từ ngày:";
     this.chkByDate.VisualStyle     = Janus.Windows.UI.VisualStyle.VS2005;
     this.chkByDate.CheckedChanged += new System.EventHandler(this.chkByDate_CheckedChanged);
     //
     // printDialog1
     //
     this.printDialog1.UseEXDialog = true;
     //
     // baocaO_TIEUDE1
     //
     this.baocaO_TIEUDE1.BackColor         = System.Drawing.SystemColors.Control;
     this.baocaO_TIEUDE1.Dock              = System.Windows.Forms.DockStyle.Top;
     this.baocaO_TIEUDE1.Location          = new System.Drawing.Point(0, 0);
     this.baocaO_TIEUDE1.MA_BAOCAO         = "SO_KHAMBENH";
     this.baocaO_TIEUDE1.Name              = "baocaO_TIEUDE1";
     this.baocaO_TIEUDE1.Phimtat           = "Bạn có thể sử dụng phím tắt";
     this.baocaO_TIEUDE1.PicImg            = ((System.Drawing.Image)(resources.GetObject("baocaO_TIEUDE1.PicImg")));
     this.baocaO_TIEUDE1.ShortcutAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.baocaO_TIEUDE1.ShortcutFont      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.baocaO_TIEUDE1.showHelp          = false;
     this.baocaO_TIEUDE1.Size              = new System.Drawing.Size(1172, 53);
     this.baocaO_TIEUDE1.TabIndex          = 122;
     this.baocaO_TIEUDE1.TIEUDE            = "SỔ KHÁM BỆNH";
     this.baocaO_TIEUDE1.TitleFont         = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     //
     // cmdExportToExcel
     //
     this.cmdExportToExcel.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdExportToExcel.Font        = new System.Drawing.Font("Arial", 9F);
     this.cmdExportToExcel.Image       = ((System.Drawing.Image)(resources.GetObject("cmdExportToExcel.Image")));
     this.cmdExportToExcel.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdExportToExcel.Location    = new System.Drawing.Point(364, 555);
     this.cmdExportToExcel.Name        = "cmdExportToExcel";
     this.cmdExportToExcel.Size        = new System.Drawing.Size(133, 34);
     this.cmdExportToExcel.TabIndex    = 118;
     this.cmdExportToExcel.Text        = "Xuất Excel";
     this.cmdExportToExcel.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
     this.cmdExportToExcel.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
     this.cmdExportToExcel.Click      += new System.EventHandler(this.cmdExportToExcel_Click);
     //
     // dtNgayInPhieu
     //
     this.dtNgayInPhieu.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.dtNgayInPhieu.CustomFormat = "dd/MM/yyyy";
     this.dtNgayInPhieu.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtNgayInPhieu.DropDownCalendar.Name        = "";
     this.dtNgayInPhieu.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     this.dtNgayInPhieu.Font        = new System.Drawing.Font("Arial", 9F);
     this.dtNgayInPhieu.Location    = new System.Drawing.Point(64, 560);
     this.dtNgayInPhieu.Name        = "dtNgayInPhieu";
     this.dtNgayInPhieu.ShowUpDown  = true;
     this.dtNgayInPhieu.Size        = new System.Drawing.Size(118, 21);
     this.dtNgayInPhieu.TabIndex    = 120;
     this.dtNgayInPhieu.TabStop     = false;
     this.dtNgayInPhieu.Value       = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
     this.dtNgayInPhieu.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     //
     // label3
     //
     this.label3.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.AutoSize  = true;
     this.label3.Font      = new System.Drawing.Font("Arial", 9F);
     this.label3.Location  = new System.Drawing.Point(12, 563);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(51, 15);
     this.label3.TabIndex  = 121;
     this.label3.Text      = "Ngày in:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cmdInPhieuXN
     //
     this.cmdInPhieuXN.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdInPhieuXN.Font        = new System.Drawing.Font("Arial", 9F);
     this.cmdInPhieuXN.Image       = ((System.Drawing.Image)(resources.GetObject("cmdInPhieuXN.Image")));
     this.cmdInPhieuXN.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdInPhieuXN.Location    = new System.Drawing.Point(503, 555);
     this.cmdInPhieuXN.Name        = "cmdInPhieuXN";
     this.cmdInPhieuXN.Size        = new System.Drawing.Size(133, 34);
     this.cmdInPhieuXN.TabIndex    = 117;
     this.cmdInPhieuXN.Text        = "In báo cáo";
     this.cmdInPhieuXN.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
     this.cmdInPhieuXN.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
     this.cmdInPhieuXN.Click      += new System.EventHandler(this.cmdInPhieuXN_Click);
     //
     // cmdExit
     //
     this.cmdExit.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdExit.Font        = new System.Drawing.Font("Arial", 9F);
     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(642, 555);
     this.cmdExit.Name        = "cmdExit";
     this.cmdExit.Size        = new System.Drawing.Size(133, 34);
     this.cmdExit.TabIndex    = 119;
     this.cmdExit.Text        = "Thoát (Esc)";
     this.cmdExit.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
     this.cmdExit.Click      += new System.EventHandler(this.cmdExit_Click);
     //
     // Frm_Sokhambenh_NoiTru
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1172, 616);
     this.Controls.Add(this.uiGroupBox2);
     this.Controls.Add(this.baocaO_TIEUDE1);
     this.Controls.Add(this.cmdExportToExcel);
     this.Controls.Add(this.dtNgayInPhieu);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.cmdInPhieuXN);
     this.Controls.Add(this.cmdExit);
     this.KeyPreview = true;
     this.Name       = "Frm_Sokhambenh_NoiTru";
     this.Text       = "Sổ khám bệnh Nội trú";
     this.Load      += new System.EventHandler(this.Frm_Sokhambenh_NoiTru_Load);
     this.KeyDown   += new System.Windows.Forms.KeyEventHandler(this.Frm_Sokhambenh_NoiTru_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
     this.uiGroupBox2.ResumeLayout(false);
     this.uiGroupBox2.PerformLayout();
     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()
        {
            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.EditControls.UIComboBoxItem uiComboBoxItem7 = new Janus.Windows.EditControls.UIComboBoxItem();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_DSACH_BN_TKIEM));
            Janus.Windows.GridEX.GridEXLayout grdPatient_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
            this.cboTrangthainoitru = new Janus.Windows.EditControls.UIComboBox();
            this.lblTrangthainoitru = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.txtDienthoai = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
            this.label6 = new System.Windows.Forms.Label();
            this.txtCMT = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
            this.pnlTrangthai = new System.Windows.Forms.Panel();
            this.radTatCa = new Janus.Windows.EditControls.UIRadioButton();
            this.radNgoaiTru = new Janus.Windows.EditControls.UIRadioButton();
            this.radNoiTru = new Janus.Windows.EditControls.UIRadioButton();
            this.label5 = new System.Windows.Forms.Label();
            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.grdPatient = new Janus.Windows.GridEX.GridEX();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
            this.uiGroupBox1.SuspendLayout();
            this.pnlTrangthai.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdPatient)).BeginInit();
            this.SuspendLayout();
            // 
            // uiGroupBox1
            // 
            this.uiGroupBox1.Controls.Add(this.cboTrangthainoitru);
            this.uiGroupBox1.Controls.Add(this.lblTrangthainoitru);
            this.uiGroupBox1.Controls.Add(this.label8);
            this.uiGroupBox1.Controls.Add(this.txtDienthoai);
            this.uiGroupBox1.Controls.Add(this.label6);
            this.uiGroupBox1.Controls.Add(this.txtCMT);
            this.uiGroupBox1.Controls.Add(this.pnlTrangthai);
            this.uiGroupBox1.Controls.Add(this.label5);
            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, 0);
            this.uiGroupBox1.Name = "uiGroupBox1";
            this.uiGroupBox1.Size = new System.Drawing.Size(1008, 131);
            this.uiGroupBox1.TabIndex = 2;
            // 
            // cboTrangthainoitru
            // 
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "Tất cả";
            uiComboBoxItem1.Value = ((byte)(100));
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "Ngoại trú";
            uiComboBoxItem2.Value = ((byte)(0));
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "Nhập viện";
            uiComboBoxItem3.Value = ((byte)(1));
            uiComboBoxItem4.FormatStyle.Alpha = 0;
            uiComboBoxItem4.IsSeparator = false;
            uiComboBoxItem4.Text = "Đang điều trị";
            uiComboBoxItem4.Value = ((byte)(2));
            uiComboBoxItem5.FormatStyle.Alpha = 0;
            uiComboBoxItem5.IsSeparator = false;
            uiComboBoxItem5.Text = "Tổng hợp ra viện";
            uiComboBoxItem5.Value = ((byte)(3));
            uiComboBoxItem6.FormatStyle.Alpha = 0;
            uiComboBoxItem6.IsSeparator = false;
            uiComboBoxItem6.Text = "Đã duyệt ra viện";
            uiComboBoxItem6.Value = ((byte)(4));
            uiComboBoxItem7.FormatStyle.Alpha = 0;
            uiComboBoxItem7.IsSeparator = false;
            uiComboBoxItem7.Text = "Đã ra viện";
            uiComboBoxItem7.Value = ((byte)(5));
            this.cboTrangthainoitru.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3,
            uiComboBoxItem4,
            uiComboBoxItem5,
            uiComboBoxItem6,
            uiComboBoxItem7});
            this.cboTrangthainoitru.Location = new System.Drawing.Point(94, 102);
            this.cboTrangthainoitru.Name = "cboTrangthainoitru";
            this.cboTrangthainoitru.Size = new System.Drawing.Size(313, 21);
            this.cboTrangthainoitru.TabIndex = 529;
            this.cboTrangthainoitru.TabStop = false;
            this.cboTrangthainoitru.Text = "Trạng thái nội trú";
            // 
            // lblTrangthainoitru
            // 
            this.lblTrangthainoitru.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblTrangthainoitru.ForeColor = System.Drawing.Color.Black;
            this.lblTrangthainoitru.Location = new System.Drawing.Point(0, 97);
            this.lblTrangthainoitru.Name = "lblTrangthainoitru";
            this.lblTrangthainoitru.Size = new System.Drawing.Size(91, 32);
            this.lblTrangthainoitru.TabIndex = 528;
            this.lblTrangthainoitru.Text = "T.thái nội trú";
            this.lblTrangthainoitru.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label8
            // 
            this.label8.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label8.ForeColor = System.Drawing.Color.Black;
            this.label8.Location = new System.Drawing.Point(652, 43);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(96, 19);
            this.label8.TabIndex = 527;
            this.label8.Text = "Điện thoại:";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtDienthoai
            // 
            this.txtDienthoai.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtDienthoai.BackColor = System.Drawing.Color.White;
            this.txtDienthoai.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDienthoai.Location = new System.Drawing.Point(754, 40);
            this.txtDienthoai.Name = "txtDienthoai";
            this.txtDienthoai.Size = new System.Drawing.Size(119, 21);
            this.txtDienthoai.TabIndex = 6;
            this.txtDienthoai.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // 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.Black;
            this.label6.Location = new System.Drawing.Point(465, 46);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(44, 19);
            this.label6.TabIndex = 525;
            this.label6.Text = "CMT";
            this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtCMT
            // 
            this.txtCMT.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtCMT.BackColor = System.Drawing.Color.White;
            this.txtCMT.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtCMT.Location = new System.Drawing.Point(515, 44);
            this.txtCMT.Name = "txtCMT";
            this.txtCMT.Numeric = true;
            this.txtCMT.Size = new System.Drawing.Size(131, 21);
            this.txtCMT.TabIndex = 5;
            this.txtCMT.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // pnlTrangthai
            // 
            this.pnlTrangthai.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.pnlTrangthai.Controls.Add(this.radTatCa);
            this.pnlTrangthai.Controls.Add(this.radNgoaiTru);
            this.pnlTrangthai.Controls.Add(this.radNoiTru);
            this.pnlTrangthai.Location = new System.Drawing.Point(94, 67);
            this.pnlTrangthai.Name = "pnlTrangthai";
            this.pnlTrangthai.Size = new System.Drawing.Size(313, 31);
            this.pnlTrangthai.TabIndex = 523;
            // 
            // radTatCa
            // 
            this.radTatCa.Checked = true;
            this.radTatCa.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radTatCa.ForeColor = System.Drawing.Color.Black;
            this.radTatCa.Location = new System.Drawing.Point(9, 3);
            this.radTatCa.Name = "radTatCa";
            this.radTatCa.Size = new System.Drawing.Size(74, 25);
            this.radTatCa.TabIndex = 7;
            this.radTatCa.TabStop = true;
            this.radTatCa.Text = "Tất cả";
            // 
            // radNgoaiTru
            // 
            this.radNgoaiTru.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radNgoaiTru.ForeColor = System.Drawing.Color.Black;
            this.radNgoaiTru.Location = new System.Drawing.Point(92, 3);
            this.radNgoaiTru.Name = "radNgoaiTru";
            this.radNgoaiTru.Size = new System.Drawing.Size(92, 25);
            this.radNgoaiTru.TabIndex = 7;
            this.radNgoaiTru.Text = "Ngoại trú";
            // 
            // radNoiTru
            // 
            this.radNoiTru.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radNoiTru.ForeColor = System.Drawing.Color.Black;
            this.radNoiTru.Location = new System.Drawing.Point(198, 3);
            this.radNoiTru.Name = "radNoiTru";
            this.radNoiTru.Size = new System.Drawing.Size(79, 25);
            this.radNoiTru.TabIndex = 7;
            this.radNoiTru.Text = "Nội trú";
            // 
            // 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.Black;
            this.label5.Location = new System.Drawing.Point(6, 72);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(79, 21);
            this.label5.TabIndex = 522;
            this.label5.Text = "Trạng thái:";
            this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cboObjectType
            // 
            this.cboObjectType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.cboObjectType.Location = new System.Drawing.Point(515, 70);
            this.cboObjectType.Name = "cboObjectType";
            this.cboObjectType.Size = new System.Drawing.Size(358, 21);
            this.cboObjectType.TabIndex = 8;
            this.cboObjectType.TabStop = false;
            this.cboObjectType.Text = "Đối tượng";
            // 
            // 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.Black;
            this.label4.Location = new System.Drawing.Point(652, 16);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(96, 19);
            this.label4.TabIndex = 518;
            this.label4.Text = "Mã lượt khám:";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtPatientCode
            // 
            this.txtPatientCode.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            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(754, 13);
            this.txtPatientCode.Name = "txtPatientCode";
            this.txtPatientCode.Size = new System.Drawing.Size(119, 21);
            this.txtPatientCode.TabIndex = 3;
            this.txtPatientCode.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // 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.Black;
            this.label2.Location = new System.Drawing.Point(413, 17);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(96, 19);
            this.label2.TabIndex = 516;
            this.label2.Text = "ID Bệnh nhân:";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtPatient_ID
            // 
            this.txtPatient_ID.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            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(515, 16);
            this.txtPatient_ID.Name = "txtPatient_ID";
            this.txtPatient_ID.Numeric = true;
            this.txtPatient_ID.Size = new System.Drawing.Size(131, 21);
            this.txtPatient_ID.TabIndex = 2;
            this.txtPatient_ID.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // 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(413, 71);
            this.Label7.Name = "Label7";
            this.Label7.Size = new System.Drawing.Size(96, 19);
            this.Label7.TabIndex = 514;
            this.Label7.Text = "Đối tượng:";
            this.Label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // 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.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(6, 45);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(79, 21);
            this.label3.TabIndex = 511;
            this.label3.Text = "Tên BN :";
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // 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 = 0;
            this.chkByDate.TabStop = false;
            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(879, 15);
            this.cmdTimKiem.Name = "cmdTimKiem";
            this.cmdTimKiem.Size = new System.Drawing.Size(123, 71);
            this.cmdTimKiem.TabIndex = 9;
            this.cmdTimKiem.Text = "Tìm kiếm";
            // 
            // grdPatient
            // 
            this.grdPatient.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grdPatient.BackColor = System.Drawing.Color.Silver;
            this.grdPatient.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><FilterRowInfoText>Lọc" +
    " thông tin bệnh nhân</FilterRowInfoText></LocalizableData>";
            grdPatient_DesignTimeLayout.LayoutString = resources.GetString("grdPatient_DesignTimeLayout.LayoutString");
            this.grdPatient.DesignTimeLayout = grdPatient_DesignTimeLayout;
            this.grdPatient.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdPatient.DynamicFiltering = true;
            this.grdPatient.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdPatient.FocusCellDisplayMode = Janus.Windows.GridEX.FocusCellDisplayMode.UseSelectedFormatStyle;
            this.grdPatient.FocusCellFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            this.grdPatient.FocusCellFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
            this.grdPatient.FocusCellFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdPatient.Font = new System.Drawing.Font("Arial", 9F);
            this.grdPatient.FrozenColumns = 3;
            this.grdPatient.GroupByBoxVisible = false;
            this.grdPatient.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdPatient.Location = new System.Drawing.Point(0, 131);
            this.grdPatient.Name = "grdPatient";
            this.grdPatient.RecordNavigator = true;
            this.grdPatient.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdPatient.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdPatient.Size = new System.Drawing.Size(1008, 599);
            this.grdPatient.TabIndex = 10;
            this.grdPatient.TabStop = false;
            this.grdPatient.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // frm_DSACH_BN_TKIEM
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1008, 730);
            this.Controls.Add(this.grdPatient);
            this.Controls.Add(this.uiGroupBox1);
            this.KeyPreview = true;
            this.Name = "frm_DSACH_BN_TKIEM";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Danh sách Bệnh nhân";
            this.Load += new System.EventHandler(this.frm_DSACH_BN_TKIEM_Load);
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
            this.uiGroupBox1.ResumeLayout(false);
            this.uiGroupBox1.PerformLayout();
            this.pnlTrangthai.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdPatient)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_baocao_nhapxuaton_theoquy));
            Janus.Windows.GridEX.GridEXLayout cboKho_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.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.EditControls.UIComboBoxItem uiComboBoxItem10 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem11 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem12 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem13 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem14 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem15 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem16 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            this.panel1 = new System.Windows.Forms.Panel();
            this.baocaO_TIEUDE1 = new VNS.HIS.UI.FORMs.BAOCAO.BHYT.UserControls.BAOCAO_TIEUDE();
            this.label1 = new System.Windows.Forms.Label();
            this.dtNgayIn = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.cmdBaoCao = new Janus.Windows.EditControls.UIButton();
            this.cmdExit = new Janus.Windows.EditControls.UIButton();
            this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
            this.cboKho = new Janus.Windows.GridEX.EditControls.CheckedComboBox();
            this.label2 = new System.Windows.Forms.Label();
            this.optNgay = new System.Windows.Forms.RadioButton();
            this.dtpNam = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.optNam = new System.Windows.Forms.RadioButton();
            this.cboQuy = new Janus.Windows.EditControls.UIComboBox();
            this.optQuy = new System.Windows.Forms.RadioButton();
            this.cboThang = new Janus.Windows.EditControls.UIComboBox();
            this.optThang = new System.Windows.Forms.RadioButton();
            this.panel2 = new System.Windows.Forms.Panel();
            this.grdList = new Janus.Windows.GridEX.GridEX();
            this.txtthuoc = new VNS.HIS.UCs.AutoCompleteTextbox_Thuoc();
            this.txtLoaithuoc = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.label6 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.chkBiendong = new Janus.Windows.EditControls.UICheckBox();
            this.chkTheoNhomThuoc = new Janus.Windows.EditControls.UICheckBox();
            this.label3 = new System.Windows.Forms.Label();
            this.dtToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.dtFromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.cmdExportToExcel = new Janus.Windows.EditControls.UIButton();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.gridEXExporter1 = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
            this.printDialog1 = new System.Windows.Forms.PrintDialog();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
            this.uiGroupBox1.SuspendLayout();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
            this.SuspendLayout();
            // 
            // panel1
            // 
            this.panel1.BackColor = System.Drawing.SystemColors.Control;
            this.panel1.Controls.Add(this.baocaO_TIEUDE1);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(784, 41);
            this.panel1.TabIndex = 1;
            // 
            // baocaO_TIEUDE1
            // 
            this.baocaO_TIEUDE1.BackColor = System.Drawing.SystemColors.Control;
            this.baocaO_TIEUDE1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.baocaO_TIEUDE1.Location = new System.Drawing.Point(0, 0);
            this.baocaO_TIEUDE1.MA_BAOCAO = "THUOC_BC_NHAPXUATTON";
            this.baocaO_TIEUDE1.Name = "baocaO_TIEUDE1";
            this.baocaO_TIEUDE1.Phimtat = "Bạn có thể sử dụng phím tắt";
            this.baocaO_TIEUDE1.PicImg = ((System.Drawing.Image)(resources.GetObject("baocaO_TIEUDE1.PicImg")));
            this.baocaO_TIEUDE1.ShortcutAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.baocaO_TIEUDE1.ShortcutFont = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.baocaO_TIEUDE1.showHelp = false;
            this.baocaO_TIEUDE1.Size = new System.Drawing.Size(784, 41);
            this.baocaO_TIEUDE1.TabIndex = 1;
            this.baocaO_TIEUDE1.TIEUDE = "BÁO CÁO NHẬP XUẤT TỒN";
            this.baocaO_TIEUDE1.TitleFont = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            // 
            // label1
            // 
            this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            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.Location = new System.Drawing.Point(5, 534);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(51, 15);
            this.label1.TabIndex = 7;
            this.label1.Text = "Ngày in ";
            // 
            // dtNgayIn
            // 
            this.dtNgayIn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.dtNgayIn.CustomFormat = "dd/MM/yyyy";
            this.dtNgayIn.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtNgayIn.DropDownCalendar.Name = "";
            this.dtNgayIn.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtNgayIn.Location = new System.Drawing.Point(62, 531);
            this.dtNgayIn.Name = "dtNgayIn";
            this.dtNgayIn.ShowUpDown = true;
            this.dtNgayIn.Size = new System.Drawing.Size(134, 21);
            this.dtNgayIn.TabIndex = 10;
            this.dtNgayIn.Value = new System.DateTime(2014, 9, 11, 0, 0, 0, 0);
            // 
            // cmdBaoCao
            // 
            this.cmdBaoCao.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdBaoCao.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdBaoCao.Image = ((System.Drawing.Image)(resources.GetObject("cmdBaoCao.Image")));
            this.cmdBaoCao.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdBaoCao.Location = new System.Drawing.Point(522, 525);
            this.cmdBaoCao.Name = "cmdBaoCao";
            this.cmdBaoCao.Size = new System.Drawing.Size(122, 30);
            this.cmdBaoCao.TabIndex = 8;
            this.cmdBaoCao.Text = "In Báo cáo";
            this.cmdBaoCao.Click += new System.EventHandler(this.cmdBaoCao_Click_1);
            // 
            // cmdExit
            // 
            this.cmdExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            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.ImageSize = new System.Drawing.Size(32, 32);
            this.cmdExit.Location = new System.Drawing.Point(650, 525);
            this.cmdExit.Name = "cmdExit";
            this.cmdExit.Size = new System.Drawing.Size(122, 30);
            this.cmdExit.TabIndex = 11;
            this.cmdExit.Text = "Thoát ";
            // 
            // uiGroupBox1
            // 
            this.uiGroupBox1.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.uiGroupBox1.Controls.Add(this.cboKho);
            this.uiGroupBox1.Controls.Add(this.label2);
            this.uiGroupBox1.Controls.Add(this.optNgay);
            this.uiGroupBox1.Controls.Add(this.dtpNam);
            this.uiGroupBox1.Controls.Add(this.optNam);
            this.uiGroupBox1.Controls.Add(this.cboQuy);
            this.uiGroupBox1.Controls.Add(this.optQuy);
            this.uiGroupBox1.Controls.Add(this.cboThang);
            this.uiGroupBox1.Controls.Add(this.optThang);
            this.uiGroupBox1.Controls.Add(this.panel2);
            this.uiGroupBox1.Controls.Add(this.txtthuoc);
            this.uiGroupBox1.Controls.Add(this.txtLoaithuoc);
            this.uiGroupBox1.Controls.Add(this.label6);
            this.uiGroupBox1.Controls.Add(this.label7);
            this.uiGroupBox1.Controls.Add(this.chkBiendong);
            this.uiGroupBox1.Controls.Add(this.chkTheoNhomThuoc);
            this.uiGroupBox1.Controls.Add(this.label3);
            this.uiGroupBox1.Controls.Add(this.dtToDate);
            this.uiGroupBox1.Controls.Add(this.dtFromDate);
            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, 47);
            this.uiGroupBox1.Name = "uiGroupBox1";
            this.uiGroupBox1.Size = new System.Drawing.Size(784, 467);
            this.uiGroupBox1.TabIndex = 13;
            this.uiGroupBox1.Text = "Điều kiện báo cáo";
            // 
            // cboKho
            // 
            this.cboKho.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)));
            cboKho_DesignTimeLayout.LayoutString = resources.GetString("cboKho_DesignTimeLayout.LayoutString");
            this.cboKho.DesignTimeLayout = cboKho_DesignTimeLayout;
            this.cboKho.DropDownDisplayMember = "TEN_KHO";
            this.cboKho.DropDownValueMember = "ID_KHO";
            this.cboKho.Font = new System.Drawing.Font("Arial", 9F);
            this.cboKho.Location = new System.Drawing.Point(140, 29);
            this.cboKho.Name = "cboKho";
            this.cboKho.SaveSettings = false;
            this.cboKho.Size = new System.Drawing.Size(581, 21);
            this.cboKho.TabIndex = 0;
            this.cboKho.ValueItemDataMember = "(None)";
            this.cboKho.ValuesDataMember = null;
            // 
            // label2
            // 
            this.label2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.Location = new System.Drawing.Point(296, 136);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(69, 23);
            this.label2.TabIndex = 49;
            this.label2.Text = "đến ngày";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // optNgay
            // 
            this.optNgay.AutoSize = true;
            this.optNgay.Location = new System.Drawing.Point(38, 138);
            this.optNgay.Name = "optNgay";
            this.optNgay.Size = new System.Drawing.Size(72, 19);
            this.optNgay.TabIndex = 48;
            this.optNgay.Text = "Từ ngày:";
            this.optNgay.UseVisualStyleBackColor = true;
            // 
            // dtpNam
            // 
            this.dtpNam.CustomFormat = "yyyy ";
            this.dtpNam.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtpNam.DropDownCalendar.Name = "";
            this.dtpNam.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtpNam.Location = new System.Drawing.Point(608, 107);
            this.dtpNam.Name = "dtpNam";
            this.dtpNam.ShowUpDown = true;
            this.dtpNam.Size = new System.Drawing.Size(113, 21);
            this.dtpNam.TabIndex = 47;
            this.dtpNam.Value = new System.DateTime(2014, 9, 11, 0, 0, 0, 0);
            // 
            // optNam
            // 
            this.optNam.AutoSize = true;
            this.optNam.Location = new System.Drawing.Point(516, 110);
            this.optNam.Name = "optNam";
            this.optNam.Size = new System.Drawing.Size(86, 19);
            this.optNam.TabIndex = 46;
            this.optNam.Text = "Theo Năm:";
            this.optNam.UseVisualStyleBackColor = true;
            // 
            // cboQuy
            // 
            this.cboQuy.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 = "Quý 1";
            uiComboBoxItem1.Value = ((byte)(1));
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "Quý 2";
            uiComboBoxItem2.Value = ((byte)(2));
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "Quý 3";
            uiComboBoxItem3.Value = ((byte)(3));
            uiComboBoxItem4.FormatStyle.Alpha = 0;
            uiComboBoxItem4.IsSeparator = false;
            uiComboBoxItem4.Text = "Quý 4";
            uiComboBoxItem4.Value = ((byte)(4));
            this.cboQuy.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3,
            uiComboBoxItem4});
            this.cboQuy.Location = new System.Drawing.Point(371, 109);
            this.cboQuy.Name = "cboQuy";
            this.cboQuy.Size = new System.Drawing.Size(139, 21);
            this.cboQuy.TabIndex = 45;
            this.cboQuy.Text = "Chọn Quý";
            // 
            // optQuy
            // 
            this.optQuy.AutoSize = true;
            this.optQuy.Location = new System.Drawing.Point(285, 109);
            this.optQuy.Name = "optQuy";
            this.optQuy.Size = new System.Drawing.Size(80, 19);
            this.optQuy.TabIndex = 44;
            this.optQuy.Text = "Theo Quý:";
            this.optQuy.UseVisualStyleBackColor = true;
            // 
            // cboThang
            // 
            this.cboThang.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            uiComboBoxItem5.FormatStyle.Alpha = 0;
            uiComboBoxItem5.IsSeparator = false;
            uiComboBoxItem5.Text = "Tháng 1";
            uiComboBoxItem5.Value = "1";
            uiComboBoxItem6.FormatStyle.Alpha = 0;
            uiComboBoxItem6.IsSeparator = false;
            uiComboBoxItem6.Text = "Tháng 2";
            uiComboBoxItem6.Value = "2";
            uiComboBoxItem7.FormatStyle.Alpha = 0;
            uiComboBoxItem7.IsSeparator = false;
            uiComboBoxItem7.Text = "Tháng 3";
            uiComboBoxItem7.Value = "3";
            uiComboBoxItem8.FormatStyle.Alpha = 0;
            uiComboBoxItem8.IsSeparator = false;
            uiComboBoxItem8.Text = "Tháng 4";
            uiComboBoxItem8.Value = "4";
            uiComboBoxItem9.FormatStyle.Alpha = 0;
            uiComboBoxItem9.IsSeparator = false;
            uiComboBoxItem9.Text = "Tháng 5";
            uiComboBoxItem9.Value = "5";
            uiComboBoxItem10.FormatStyle.Alpha = 0;
            uiComboBoxItem10.IsSeparator = false;
            uiComboBoxItem10.Text = "Tháng 6";
            uiComboBoxItem10.Value = "6";
            uiComboBoxItem11.FormatStyle.Alpha = 0;
            uiComboBoxItem11.IsSeparator = false;
            uiComboBoxItem11.Text = "Tháng 7";
            uiComboBoxItem11.Value = "7";
            uiComboBoxItem12.FormatStyle.Alpha = 0;
            uiComboBoxItem12.IsSeparator = false;
            uiComboBoxItem12.Text = "Tháng 8";
            uiComboBoxItem12.Value = "8";
            uiComboBoxItem13.FormatStyle.Alpha = 0;
            uiComboBoxItem13.IsSeparator = false;
            uiComboBoxItem13.Text = "Tháng 9";
            uiComboBoxItem13.Value = "9";
            uiComboBoxItem14.FormatStyle.Alpha = 0;
            uiComboBoxItem14.IsSeparator = false;
            uiComboBoxItem14.Text = "Tháng 10";
            uiComboBoxItem14.Value = "10";
            uiComboBoxItem15.FormatStyle.Alpha = 0;
            uiComboBoxItem15.IsSeparator = false;
            uiComboBoxItem15.Text = "Tháng 11";
            uiComboBoxItem15.Value = "11";
            uiComboBoxItem16.FormatStyle.Alpha = 0;
            uiComboBoxItem16.IsSeparator = false;
            uiComboBoxItem16.Text = "Tháng 12";
            uiComboBoxItem16.Value = "12";
            this.cboThang.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem5,
            uiComboBoxItem6,
            uiComboBoxItem7,
            uiComboBoxItem8,
            uiComboBoxItem9,
            uiComboBoxItem10,
            uiComboBoxItem11,
            uiComboBoxItem12,
            uiComboBoxItem13,
            uiComboBoxItem14,
            uiComboBoxItem15,
            uiComboBoxItem16});
            this.cboThang.Location = new System.Drawing.Point(140, 109);
            this.cboThang.Name = "cboThang";
            this.cboThang.Size = new System.Drawing.Size(139, 21);
            this.cboThang.TabIndex = 43;
            this.cboThang.Text = "Chọn tháng";
            // 
            // optThang
            // 
            this.optThang.AutoSize = true;
            this.optThang.Checked = true;
            this.optThang.Location = new System.Drawing.Point(38, 109);
            this.optThang.Name = "optThang";
            this.optThang.Size = new System.Drawing.Size(94, 19);
            this.optThang.TabIndex = 42;
            this.optThang.TabStop = true;
            this.optThang.Text = "Theo Tháng:";
            this.optThang.UseVisualStyleBackColor = true;
            // 
            // panel2
            // 
            this.panel2.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.panel2.Controls.Add(this.grdList);
            this.panel2.Location = new System.Drawing.Point(6, 204);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(772, 257);
            this.panel2.TabIndex = 37;
            // 
            // grdList
            // 
            this.grdList.AlternatingColors = true;
            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.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdList.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdList.Font = new System.Drawing.Font("Arial", 9F);
            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.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdList.Size = new System.Drawing.Size(772, 257);
            this.grdList.TabIndex = 12;
            this.grdList.TabStop = false;
            this.grdList.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdList.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdList.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // txtthuoc
            // 
            this.txtthuoc._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtthuoc._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtthuoc.AllowedSelectPrice = false;
            this.txtthuoc.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtthuoc.AutoCompleteList")));
            this.txtthuoc.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtthuoc.CaseSensitive = false;
            this.txtthuoc.CompareNoID = true;
            this.txtthuoc.DefaultCode = "-1";
            this.txtthuoc.DefaultID = "-1";
            this.txtthuoc.Drug_ID = null;
            this.txtthuoc.ExtraWidth = 0;
            this.txtthuoc.ExtraWidth_Pre = 0;
            this.txtthuoc.FillValueAfterSelect = false;
            this.txtthuoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtthuoc.GridView = false;
            this.txtthuoc.Location = new System.Drawing.Point(140, 83);
            this.txtthuoc.MaxHeight = -1;
            this.txtthuoc.MinTypedCharacters = 2;
            this.txtthuoc.MyCode = "-1";
            this.txtthuoc.MyID = "-1";
            this.txtthuoc.Name = "txtthuoc";
            this.txtthuoc.RaiseEvent = false;
            this.txtthuoc.RaiseEventEnter = false;
            this.txtthuoc.RaiseEventEnterWhenEmpty = false;
            this.txtthuoc.SelectedIndex = -1;
            this.txtthuoc.Size = new System.Drawing.Size(581, 21);
            this.txtthuoc.splitChar = '@';
            this.txtthuoc.splitCharIDAndCode = '#';
            this.txtthuoc.TabIndex = 2;
            this.txtthuoc.txtMyCode = null;
            this.txtthuoc.txtMyCode_Edit = null;
            this.txtthuoc.txtMyID = null;
            this.txtthuoc.txtMyID_Edit = null;
            this.txtthuoc.txtMyName = null;
            this.txtthuoc.txtMyName_Edit = null;
            this.txtthuoc.txtNext = null;
            // 
            // 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.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtLoaithuoc._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            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 = 0;
            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(140, 56);
            this.txtLoaithuoc.MaxHeight = -1;
            this.txtLoaithuoc.MinTypedCharacters = 2;
            this.txtLoaithuoc.MyCode = "-1";
            this.txtLoaithuoc.MyID = "-1";
            this.txtLoaithuoc.MyText = "";
            this.txtLoaithuoc.Name = "txtLoaithuoc";
            this.txtLoaithuoc.RaiseEvent = true;
            this.txtLoaithuoc.RaiseEventEnter = true;
            this.txtLoaithuoc.RaiseEventEnterWhenEmpty = true;
            this.txtLoaithuoc.SelectedIndex = -1;
            this.txtLoaithuoc.Size = new System.Drawing.Size(581, 21);
            this.txtLoaithuoc.splitChar = '@';
            this.txtLoaithuoc.splitCharIDAndCode = '#';
            this.txtLoaithuoc.TabIndex = 1;
            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;
            // 
            // label6
            // 
            this.label6.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label6.Location = new System.Drawing.Point(7, 83);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(126, 23);
            this.label6.TabIndex = 33;
            this.label6.Text = "Tên thuốc";
            this.label6.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(7, 56);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(126, 23);
            this.label7.TabIndex = 32;
            this.label7.Text = "Loại thuốc";
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // chkBiendong
            // 
            this.chkBiendong.Checked = true;
            this.chkBiendong.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkBiendong.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkBiendong.Location = new System.Drawing.Point(139, 175);
            this.chkBiendong.Name = "chkBiendong";
            this.chkBiendong.Size = new System.Drawing.Size(220, 23);
            this.chkBiendong.TabIndex = 5;
            this.chkBiendong.Text = "Chỉ lấy dữ liệu thuốc có biến động?";
            // 
            // chkTheoNhomThuoc
            // 
            this.chkTheoNhomThuoc.Checked = true;
            this.chkTheoNhomThuoc.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkTheoNhomThuoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkTheoNhomThuoc.Location = new System.Drawing.Point(365, 175);
            this.chkTheoNhomThuoc.Name = "chkTheoNhomThuoc";
            this.chkTheoNhomThuoc.Size = new System.Drawing.Size(194, 23);
            this.chkTheoNhomThuoc.TabIndex = 7;
            this.chkTheoNhomThuoc.Text = "Báo cáo theo loại thuốc?";
            // 
            // 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(7, 27);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(126, 23);
            this.label3.TabIndex = 8;
            this.label3.Text = "Chọn kho";
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtToDate
            // 
            this.dtToDate.CustomFormat = "dd/MM/yyyy ";
            this.dtToDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtToDate.DropDownCalendar.Name = "";
            this.dtToDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtToDate.Location = new System.Drawing.Point(371, 136);
            this.dtToDate.Name = "dtToDate";
            this.dtToDate.ShowUpDown = true;
            this.dtToDate.Size = new System.Drawing.Size(139, 21);
            this.dtToDate.TabIndex = 4;
            this.dtToDate.Value = new System.DateTime(2014, 9, 11, 0, 0, 0, 0);
            // 
            // dtFromDate
            // 
            this.dtFromDate.CustomFormat = "dd/MM/yyyy ";
            this.dtFromDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtFromDate.DropDownCalendar.Name = "";
            this.dtFromDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtFromDate.Location = new System.Drawing.Point(140, 136);
            this.dtFromDate.Name = "dtFromDate";
            this.dtFromDate.ShowUpDown = true;
            this.dtFromDate.Size = new System.Drawing.Size(139, 21);
            this.dtFromDate.TabIndex = 3;
            this.dtFromDate.Value = new System.DateTime(2014, 9, 11, 0, 0, 0, 0);
            // 
            // cmdExportToExcel
            // 
            this.cmdExportToExcel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdExportToExcel.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdExportToExcel.Image = ((System.Drawing.Image)(resources.GetObject("cmdExportToExcel.Image")));
            this.cmdExportToExcel.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdExportToExcel.Location = new System.Drawing.Point(394, 525);
            this.cmdExportToExcel.Name = "cmdExportToExcel";
            this.cmdExportToExcel.Size = new System.Drawing.Size(122, 30);
            this.cmdExportToExcel.TabIndex = 9;
            this.cmdExportToExcel.Text = "Xuất Excel";
            this.cmdExportToExcel.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
            this.cmdExportToExcel.Click += new System.EventHandler(this.cmdExportToExcel_Click);
            // 
            // gridEXExporter1
            // 
            this.gridEXExporter1.GridEX = this.grdList;
            // 
            // printDialog1
            // 
            this.printDialog1.UseEXDialog = true;
            // 
            // frm_baocao_nhapxuaton_theoquy
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
            this.ClientSize = new System.Drawing.Size(784, 562);
            this.Controls.Add(this.cmdExportToExcel);
            this.Controls.Add(this.uiGroupBox1);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.dtNgayIn);
            this.Controls.Add(this.cmdBaoCao);
            this.Controls.Add(this.cmdExit);
            this.Controls.Add(this.panel1);
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frm_baocao_nhapxuaton_theoquy";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "BÁO CÁO NHẬP XUẤT TỒN";
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frm_baocao_nhapxuaton_theoquy_KeyDown_1);
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
            this.uiGroupBox1.ResumeLayout(false);
            this.uiGroupBox1.PerformLayout();
            this.panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Example #50
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_baocaothuvienphi));
     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 grdChitiet_DesignTimeLayout  = new Janus.Windows.GridEX.GridEXLayout();
     Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout     = new Janus.Windows.GridEX.GridEXLayout();
     this.gridEXExporter1  = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
     this.printDialog1     = new System.Windows.Forms.PrintDialog();
     this.saveFileDialog1  = new System.Windows.Forms.SaveFileDialog();
     this.cmdExportToExcel = new Janus.Windows.EditControls.UIButton();
     this.dtNgayInPhieu    = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.label3           = new System.Windows.Forms.Label();
     this.cmdPrint         = new Janus.Windows.EditControls.UIButton();
     this.cmdExit          = new Janus.Windows.EditControls.UIButton();
     this.uiGroupBox2      = new Janus.Windows.EditControls.UIGroupBox();
     this.chkChitiet       = new Janus.Windows.EditControls.UICheckBox();
     this.cboHoadon        = new Janus.Windows.EditControls.UIComboBox();
     this.label4           = new System.Windows.Forms.Label();
     this.chkLoaitimkiem   = new Janus.Windows.EditControls.UICheckBox();
     this.cboNTNT          = new Janus.Windows.EditControls.UIComboBox();
     this.label1           = new System.Windows.Forms.Label();
     this.label2           = new System.Windows.Forms.Label();
     this.panel1           = new System.Windows.Forms.Panel();
     this.grdChitiet       = new Janus.Windows.GridEX.GridEX();
     this.grdList          = new Janus.Windows.GridEX.GridEX();
     this.cboDoituongKCB   = new Janus.Windows.EditControls.UIComboBox();
     this.label10          = new System.Windows.Forms.Label();
     this.cbokhoa          = new Janus.Windows.EditControls.UIComboBox();
     this.label11          = new System.Windows.Forms.Label();
     this.cbonhanvien      = new Janus.Windows.EditControls.UIComboBox();
     this.label8           = new System.Windows.Forms.Label();
     this.dtToDate         = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtFromDate       = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.chkByDate        = new Janus.Windows.EditControls.UICheckBox();
     this.baocaO_TIEUDE1   = new VNS.HIS.UI.FORMs.BAOCAO.BHYT.UserControls.BAOCAO_TIEUDE();
     this.toolTip1         = new System.Windows.Forms.ToolTip(this.components);
     this.tabControl1      = new System.Windows.Forms.TabControl();
     this.tabPage1         = new System.Windows.Forms.TabPage();
     this.panel2           = new System.Windows.Forms.Panel();
     this.tabPage2         = new System.Windows.Forms.TabPage();
     this.label5           = new System.Windows.Forms.Label();
     this.dtpNgayThanhToan = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.radChotVet       = new System.Windows.Forms.RadioButton();
     this.radoChotMoi      = new System.Windows.Forms.RadioButton();
     this.cmdChotDanhSach  = new Janus.Windows.EditControls.UIButton();
     this.label7           = new System.Windows.Forms.Label();
     this.dtpNgayChot      = new Janus.Windows.CalendarCombo.CalendarCombo();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
     this.uiGroupBox2.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.SuspendLayout();
     //
     // printDialog1
     //
     this.printDialog1.UseEXDialog = true;
     //
     // cmdExportToExcel
     //
     this.cmdExportToExcel.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdExportToExcel.Font        = new System.Drawing.Font("Arial", 9F);
     this.cmdExportToExcel.Image       = ((System.Drawing.Image)(resources.GetObject("cmdExportToExcel.Image")));
     this.cmdExportToExcel.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdExportToExcel.Location    = new System.Drawing.Point(389, 13);
     this.cmdExportToExcel.Name        = "cmdExportToExcel";
     this.cmdExportToExcel.Size        = new System.Drawing.Size(119, 30);
     this.cmdExportToExcel.TabIndex    = 10;
     this.cmdExportToExcel.Text        = "Xuất Excel";
     this.cmdExportToExcel.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
     //
     // dtNgayInPhieu
     //
     this.dtNgayInPhieu.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.dtNgayInPhieu.CustomFormat = "dd/MM/yyyy";
     this.dtNgayInPhieu.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtNgayInPhieu.DropDownCalendar.Name = "";
     this.dtNgayInPhieu.Font       = new System.Drawing.Font("Arial", 9F);
     this.dtNgayInPhieu.Location   = new System.Drawing.Point(88, 19);
     this.dtNgayInPhieu.Name       = "dtNgayInPhieu";
     this.dtNgayInPhieu.ShowUpDown = true;
     this.dtNgayInPhieu.Size       = new System.Drawing.Size(200, 21);
     this.dtNgayInPhieu.TabIndex   = 12;
     this.dtNgayInPhieu.Value      = new System.DateTime(2014, 9, 27, 0, 0, 0, 0);
     //
     // label3
     //
     this.label3.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.AutoSize = true;
     this.label3.Font     = new System.Drawing.Font("Arial", 9F);
     this.label3.Location = new System.Drawing.Point(10, 23);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(48, 15);
     this.label3.TabIndex = 88;
     this.label3.Text     = "Ngày in";
     //
     // cmdPrint
     //
     this.cmdPrint.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdPrint.Font        = new System.Drawing.Font("Arial", 9F);
     this.cmdPrint.Image       = ((System.Drawing.Image)(resources.GetObject("cmdPrint.Image")));
     this.cmdPrint.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdPrint.Location    = new System.Drawing.Point(514, 13);
     this.cmdPrint.Name        = "cmdPrint";
     this.cmdPrint.Size        = new System.Drawing.Size(119, 30);
     this.cmdPrint.TabIndex    = 9;
     this.cmdPrint.Text        = "In báo cáo";
     this.cmdPrint.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
     //
     // cmdExit
     //
     this.cmdExit.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdExit.Font      = new System.Drawing.Font("Arial", 9F);
     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(639, 13);
     this.cmdExit.Name      = "cmdExit";
     this.cmdExit.Size      = new System.Drawing.Size(119, 30);
     this.cmdExit.TabIndex  = 11;
     this.cmdExit.Text      = "&Thoát(Esc)";
     //
     // uiGroupBox2
     //
     this.uiGroupBox2.Controls.Add(this.chkChitiet);
     this.uiGroupBox2.Controls.Add(this.cboHoadon);
     this.uiGroupBox2.Controls.Add(this.label4);
     this.uiGroupBox2.Controls.Add(this.chkLoaitimkiem);
     this.uiGroupBox2.Controls.Add(this.cboNTNT);
     this.uiGroupBox2.Controls.Add(this.label1);
     this.uiGroupBox2.Controls.Add(this.label2);
     this.uiGroupBox2.Controls.Add(this.panel1);
     this.uiGroupBox2.Controls.Add(this.cboDoituongKCB);
     this.uiGroupBox2.Controls.Add(this.label10);
     this.uiGroupBox2.Controls.Add(this.cbokhoa);
     this.uiGroupBox2.Controls.Add(this.label11);
     this.uiGroupBox2.Controls.Add(this.cbonhanvien);
     this.uiGroupBox2.Controls.Add(this.label8);
     this.uiGroupBox2.Controls.Add(this.dtToDate);
     this.uiGroupBox2.Controls.Add(this.dtFromDate);
     this.uiGroupBox2.Controls.Add(this.chkByDate);
     this.uiGroupBox2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.uiGroupBox2.Font     = new System.Drawing.Font("Arial", 9F);
     this.uiGroupBox2.Location = new System.Drawing.Point(3, 56);
     this.uiGroupBox2.Name     = "uiGroupBox2";
     this.uiGroupBox2.Size     = new System.Drawing.Size(785, 488);
     this.uiGroupBox2.TabIndex = 115;
     this.uiGroupBox2.Text     = "Thông tin tìm kiếm";
     //
     // chkChitiet
     //
     this.chkChitiet.Checked    = true;
     this.chkChitiet.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkChitiet.ForeColor  = System.Drawing.Color.Navy;
     this.chkChitiet.Location   = new System.Drawing.Point(645, 104);
     this.chkChitiet.Name       = "chkChitiet";
     this.chkChitiet.Size       = new System.Drawing.Size(119, 23);
     this.chkChitiet.TabIndex   = 273;
     this.chkChitiet.Text       = "In chi tiết?";
     this.toolTip1.SetToolTip(this.chkChitiet, "Bỏ check sẽ tìm theo ngày chốt viện phí");
     //
     // cboHoadon
     //
     this.cboHoadon.ComboStyle         = Janus.Windows.EditControls.ComboStyle.DropDownList;
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.IsSeparator       = false;
     uiComboBoxItem1.Text              = "Tất cả";
     uiComboBoxItem1.Value             = -1;
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator       = false;
     uiComboBoxItem2.Text              = "Không lấy hóa đơn";
     uiComboBoxItem2.Value             = 0;
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator       = false;
     uiComboBoxItem3.Text              = "Có lấy hóa đơn";
     uiComboBoxItem3.Value             = 1;
     this.cboHoadon.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2,
         uiComboBoxItem3
     });
     this.cboHoadon.Location = new System.Drawing.Point(550, 77);
     this.cboHoadon.Name     = "cboHoadon";
     this.cboHoadon.Size     = new System.Drawing.Size(214, 21);
     this.cboHoadon.TabIndex = 4;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(423, 79);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(121, 16);
     this.label4.TabIndex  = 272;
     this.label4.Text      = "Trạng thái hóa đơn:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // chkLoaitimkiem
     //
     this.chkLoaitimkiem.Checked    = true;
     this.chkLoaitimkiem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkLoaitimkiem.ForeColor  = System.Drawing.Color.Navy;
     this.chkLoaitimkiem.Location   = new System.Drawing.Point(450, 104);
     this.chkLoaitimkiem.Name       = "chkLoaitimkiem";
     this.chkLoaitimkiem.Size       = new System.Drawing.Size(183, 23);
     this.chkLoaitimkiem.TabIndex   = 8;
     this.chkLoaitimkiem.Text       = "Tìm theo ngày thanh toán?";
     this.toolTip1.SetToolTip(this.chkLoaitimkiem, "Bỏ check sẽ tìm theo ngày chốt viện phí");
     //
     // cboNTNT
     //
     this.cboNTNT.ComboStyle           = Janus.Windows.EditControls.ComboStyle.DropDownList;
     uiComboBoxItem4.FormatStyle.Alpha = 0;
     uiComboBoxItem4.IsSeparator       = false;
     uiComboBoxItem4.Text              = "Tất cả";
     uiComboBoxItem4.Value             = -1;
     uiComboBoxItem5.FormatStyle.Alpha = 0;
     uiComboBoxItem5.IsSeparator       = false;
     uiComboBoxItem5.Text              = "Ngoại trú";
     uiComboBoxItem5.Value             = 0;
     uiComboBoxItem6.FormatStyle.Alpha = 0;
     uiComboBoxItem6.IsSeparator       = false;
     uiComboBoxItem6.Text              = "Nội trú";
     uiComboBoxItem6.Value             = 1;
     this.cboNTNT.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem4,
         uiComboBoxItem5,
         uiComboBoxItem6
     });
     this.cboNTNT.Location = new System.Drawing.Point(138, 48);
     this.cboNTNT.Name     = "cboNTNT";
     this.cboNTNT.Size     = new System.Drawing.Size(279, 21);
     this.cboNTNT.TabIndex = 1;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(11, 50);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(121, 16);
     this.label1.TabIndex  = 269;
     this.label1.Text      = "Loại điều trị";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(270, 108);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(28, 15);
     this.label2.TabIndex = 58;
     this.label2.Text     = "đến";
     //
     // panel1
     //
     this.panel1.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.panel1.Controls.Add(this.grdChitiet);
     this.panel1.Controls.Add(this.grdList);
     this.panel1.Location = new System.Drawing.Point(6, 147);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(773, 283);
     this.panel1.TabIndex = 56;
     //
     // grdChitiet
     //
     this.grdChitiet.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     grdChitiet_DesignTimeLayout.LayoutString = resources.GetString("grdChitiet_DesignTimeLayout.LayoutString");
     this.grdChitiet.DesignTimeLayout         = grdChitiet_DesignTimeLayout;
     this.grdChitiet.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdChitiet.Font = new System.Drawing.Font("Arial", 9F);
     this.grdChitiet.GroupByBoxVisible                      = false;
     this.grdChitiet.GroupRowFormatStyle.FontBold           = Janus.Windows.GridEX.TriState.True;
     this.grdChitiet.GroupTotalRowFormatStyle.FontItalic    = Janus.Windows.GridEX.TriState.True;
     this.grdChitiet.GroupTotalRowFormatStyle.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
     this.grdChitiet.GroupTotals   = Janus.Windows.GridEX.GroupTotals.Always;
     this.grdChitiet.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdChitiet.Location      = new System.Drawing.Point(0, 0);
     this.grdChitiet.Name          = "grdChitiet";
     this.grdChitiet.RowHeaders    = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdChitiet.Size          = new System.Drawing.Size(773, 283);
     this.grdChitiet.TabIndex      = 21;
     this.grdChitiet.TabStop       = false;
     this.grdChitiet.TotalRow      = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdChitiet.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
     this.grdChitiet.TotalRowPosition             = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdChitiet.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // grdList
     //
     this.grdList.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     grdList_DesignTimeLayout.LayoutString = resources.GetString("grdList_DesignTimeLayout.LayoutString");
     this.grdList.DesignTimeLayout         = grdList_DesignTimeLayout;
     this.grdList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdList.Font = new System.Drawing.Font("Arial", 9F);
     this.grdList.GroupByBoxVisible                      = false;
     this.grdList.GroupRowFormatStyle.FontBold           = Janus.Windows.GridEX.TriState.True;
     this.grdList.GroupTotalRowFormatStyle.FontItalic    = Janus.Windows.GridEX.TriState.True;
     this.grdList.GroupTotalRowFormatStyle.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
     this.grdList.GroupTotals   = Janus.Windows.GridEX.GroupTotals.Always;
     this.grdList.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdList.Location      = new System.Drawing.Point(0, 0);
     this.grdList.Name          = "grdList";
     this.grdList.RowHeaders    = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.Size          = new System.Drawing.Size(773, 283);
     this.grdList.TabIndex      = 20;
     this.grdList.TabStop       = false;
     this.grdList.TotalRow      = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
     this.grdList.TotalRowPosition             = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdList.VisualStyle    = Janus.Windows.GridEX.VisualStyle.VS2005;
     this.grdList.FormattingRow += new Janus.Windows.GridEX.RowLoadEventHandler(this.grdList_FormattingRow);
     //
     // cboDoituongKCB
     //
     this.cboDoituongKCB.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboDoituongKCB.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboDoituongKCB.Location           = new System.Drawing.Point(550, 50);
     this.cboDoituongKCB.Name               = "cboDoituongKCB";
     this.cboDoituongKCB.SelectInDataSource = true;
     this.cboDoituongKCB.Size               = new System.Drawing.Size(214, 21);
     this.cboDoituongKCB.TabIndex           = 2;
     this.cboDoituongKCB.Text               = "Chọn loại đối tượng KCB";
     //
     // label10
     //
     this.label10.Location  = new System.Drawing.Point(423, 54);
     this.label10.Name      = "label10";
     this.label10.Size      = new System.Drawing.Size(121, 15);
     this.label10.TabIndex  = 54;
     this.label10.Text      = "Đối tượng KCB:";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cbokhoa
     //
     this.cbokhoa.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cbokhoa.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cbokhoa.Location           = new System.Drawing.Point(138, 22);
     this.cbokhoa.Name               = "cbokhoa";
     this.cbokhoa.SelectInDataSource = true;
     this.cbokhoa.Size               = new System.Drawing.Size(626, 21);
     this.cbokhoa.TabIndex           = 0;
     this.cbokhoa.Text               = "Chọn khoa KCB";
     //
     // label11
     //
     this.label11.Location  = new System.Drawing.Point(11, 25);
     this.label11.Name      = "label11";
     this.label11.Size      = new System.Drawing.Size(121, 15);
     this.label11.TabIndex  = 52;
     this.label11.Text      = "Khoa KCB:";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cbonhanvien
     //
     this.cbonhanvien.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cbonhanvien.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cbonhanvien.Location           = new System.Drawing.Point(138, 75);
     this.cbonhanvien.Name               = "cbonhanvien";
     this.cbonhanvien.SelectInDataSource = true;
     this.cbonhanvien.Size               = new System.Drawing.Size(279, 21);
     this.cbonhanvien.TabIndex           = 3;
     this.cbonhanvien.Text               = "Chọn thu ngân viên";
     //
     // label8
     //
     this.label8.Location  = new System.Drawing.Point(11, 81);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(121, 15);
     this.label8.TabIndex  = 36;
     this.label8.Text      = "Thu ngân viên:";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // dtToDate
     //
     this.dtToDate.CustomFormat = "dd/MM/yyyy";
     this.dtToDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtToDate.DropDownCalendar.Name = "";
     this.dtToDate.Location   = new System.Drawing.Point(304, 106);
     this.dtToDate.Name       = "dtToDate";
     this.dtToDate.ShowUpDown = true;
     this.dtToDate.Size       = new System.Drawing.Size(113, 21);
     this.dtToDate.TabIndex   = 7;
     this.dtToDate.Value      = new System.DateTime(2014, 9, 27, 0, 0, 0, 0);
     //
     // dtFromDate
     //
     this.dtFromDate.CustomFormat = "dd/MM/yyyy";
     this.dtFromDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtFromDate.DropDownCalendar.Name = "";
     this.dtFromDate.Location   = new System.Drawing.Point(138, 106);
     this.dtFromDate.Name       = "dtFromDate";
     this.dtFromDate.ShowUpDown = true;
     this.dtFromDate.Size       = new System.Drawing.Size(126, 21);
     this.dtFromDate.TabIndex   = 6;
     this.dtFromDate.Value      = new System.DateTime(2014, 9, 27, 0, 0, 0, 0);
     //
     // chkByDate
     //
     this.chkByDate.Checked    = true;
     this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkByDate.ForeColor  = System.Drawing.Color.Navy;
     this.chkByDate.Location   = new System.Drawing.Point(67, 106);
     this.chkByDate.Name       = "chkByDate";
     this.chkByDate.Size       = new System.Drawing.Size(65, 23);
     this.chkByDate.TabIndex   = 5;
     this.chkByDate.Text       = "Từ ngày";
     //
     // baocaO_TIEUDE1
     //
     this.baocaO_TIEUDE1.BackColor         = System.Drawing.SystemColors.Control;
     this.baocaO_TIEUDE1.Dock              = System.Windows.Forms.DockStyle.Top;
     this.baocaO_TIEUDE1.Location          = new System.Drawing.Point(3, 3);
     this.baocaO_TIEUDE1.MA_BAOCAO         = "THUOC_BCDSACH_BNHANLINHTHUOC";
     this.baocaO_TIEUDE1.Name              = "baocaO_TIEUDE1";
     this.baocaO_TIEUDE1.Phimtat           = "Bạn có thể sử dụng phím tắt";
     this.baocaO_TIEUDE1.PicImg            = ((System.Drawing.Image)(resources.GetObject("baocaO_TIEUDE1.PicImg")));
     this.baocaO_TIEUDE1.ShortcutAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.baocaO_TIEUDE1.ShortcutFont      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.baocaO_TIEUDE1.showHelp          = false;
     this.baocaO_TIEUDE1.Size              = new System.Drawing.Size(785, 53);
     this.baocaO_TIEUDE1.TabIndex          = 114;
     this.baocaO_TIEUDE1.TIEUDE            = "BÁO CÁO CHỐT VIỆN PHÍ";
     this.baocaO_TIEUDE1.TitleFont         = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     //
     // toolTip1
     //
     this.toolTip1.IsBalloon    = true;
     this.toolTip1.ToolTipTitle = "Trợ giúp";
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(799, 573);
     this.tabControl1.TabIndex      = 116;
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.SystemColors.Control;
     this.tabPage1.Controls.Add(this.panel2);
     this.tabPage1.Controls.Add(this.uiGroupBox2);
     this.tabPage1.Controls.Add(this.baocaO_TIEUDE1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size     = new System.Drawing.Size(791, 547);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Báo cáo thu viện phí";
     //
     // panel2
     //
     this.panel2.Controls.Add(this.cmdExportToExcel);
     this.panel2.Controls.Add(this.dtNgayInPhieu);
     this.panel2.Controls.Add(this.label3);
     this.panel2.Controls.Add(this.cmdExit);
     this.panel2.Controls.Add(this.cmdPrint);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel2.Location = new System.Drawing.Point(3, 492);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(785, 52);
     this.panel2.TabIndex = 115;
     //
     // tabPage2
     //
     this.tabPage2.BackColor = System.Drawing.SystemColors.Control;
     this.tabPage2.Controls.Add(this.label5);
     this.tabPage2.Controls.Add(this.dtpNgayThanhToan);
     this.tabPage2.Controls.Add(this.radChotVet);
     this.tabPage2.Controls.Add(this.radoChotMoi);
     this.tabPage2.Controls.Add(this.cmdChotDanhSach);
     this.tabPage2.Controls.Add(this.label7);
     this.tabPage2.Controls.Add(this.dtpNgayChot);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size     = new System.Drawing.Size(791, 547);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Chốt viện phí";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(20, 24);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(96, 15);
     this.label5.TabIndex = 17;
     this.label5.Text     = "Ngày thanh toán";
     //
     // dtpNgayThanhToan
     //
     //
     //
     //
     this.dtpNgayThanhToan.DropDownCalendar.Name = "";
     this.dtpNgayThanhToan.Font       = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtpNgayThanhToan.Location   = new System.Drawing.Point(136, 21);
     this.dtpNgayThanhToan.Name       = "dtpNgayThanhToan";
     this.dtpNgayThanhToan.ShowUpDown = true;
     this.dtpNgayThanhToan.Size       = new System.Drawing.Size(202, 21);
     this.dtpNgayThanhToan.TabIndex   = 16;
     //
     // radChotVet
     //
     this.radChotVet.AutoSize = true;
     this.radChotVet.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radChotVet.Location = new System.Drawing.Point(71, 161);
     this.radChotVet.Name     = "radChotVet";
     this.radChotVet.Size     = new System.Drawing.Size(271, 19);
     this.radChotVet.TabIndex = 15;
     this.radChotVet.Text     = "Chốt vét (Chốt các bản ghi còn lại trong ngày)";
     this.radChotVet.UseVisualStyleBackColor = true;
     //
     // radoChotMoi
     //
     this.radoChotMoi.AutoSize = true;
     this.radoChotMoi.Checked  = true;
     this.radoChotMoi.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radoChotMoi.Location = new System.Drawing.Point(71, 135);
     this.radoChotMoi.Name     = "radoChotMoi";
     this.radoChotMoi.Size     = new System.Drawing.Size(346, 19);
     this.radoChotMoi.TabIndex = 14;
     this.radoChotMoi.TabStop  = true;
     this.radoChotMoi.Text     = "Chốt danh sách(Chốt tất cả các bản ghi chưa được chốt)";
     this.radoChotMoi.UseVisualStyleBackColor = true;
     //
     // cmdChotDanhSach
     //
     this.cmdChotDanhSach.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdChotDanhSach.Image     = ((System.Drawing.Image)(resources.GetObject("cmdChotDanhSach.Image")));
     this.cmdChotDanhSach.ImageSize = new System.Drawing.Size(32, 32);
     this.cmdChotDanhSach.Location  = new System.Drawing.Point(136, 49);
     this.cmdChotDanhSach.Name      = "cmdChotDanhSach";
     this.cmdChotDanhSach.Size      = new System.Drawing.Size(202, 39);
     this.cmdChotDanhSach.TabIndex  = 13;
     this.cmdChotDanhSach.Text      = "Chốt danh sách ";
     //
     // 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(52, 99);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(61, 15);
     this.label7.TabIndex = 12;
     this.label7.Text     = "Ngày chốt";
     //
     // dtpNgayChot
     //
     //
     //
     //
     this.dtpNgayChot.DropDownCalendar.Name = "";
     this.dtpNgayChot.Font       = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtpNgayChot.Location   = new System.Drawing.Point(136, 94);
     this.dtpNgayChot.Name       = "dtpNgayChot";
     this.dtpNgayChot.ShowUpDown = true;
     this.dtpNgayChot.Size       = new System.Drawing.Size(202, 21);
     this.dtpNgayChot.TabIndex   = 11;
     //
     // frm_baocaothuvienphi
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(799, 573);
     this.Controls.Add(this.tabControl1);
     this.KeyPreview    = true;
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "frm_baocaothuvienphi";
     this.ShowIcon      = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Báo cáo thu viện phí";
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
     this.uiGroupBox2.ResumeLayout(false);
     this.uiGroupBox2.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.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();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_XD_BAOCAO_LOAI_XN));
            Janus.Windows.GridEX.GridEXLayout grdList_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();
            this.panel1 = new System.Windows.Forms.Panel();
            this.label7 = new System.Windows.Forms.Label();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.label6 = new System.Windows.Forms.Label();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.gridEXExporter1 = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
            this.printDialog1 = new System.Windows.Forms.PrintDialog();
            this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
            this.cboKhoa = new Janus.Windows.EditControls.UIComboBox();
            this.label11 = new System.Windows.Forms.Label();
            this.grdList = new Janus.Windows.GridEX.GridEX();
            this.cboDoiTuong = new Janus.Windows.EditControls.UIComboBox();
            this.label1 = new System.Windows.Forms.Label();
            this.dtToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.dtFromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.chkByDate = new Janus.Windows.EditControls.UICheckBox();
            this.label12 = new System.Windows.Forms.Label();
            this.cmdExportToExcel = new Janus.Windows.EditControls.UIButton();
            this.txtTieuDe = new Janus.Windows.GridEX.EditControls.EditBox();
            this.dtNgayInPhieu = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label3 = new System.Windows.Forms.Label();
            this.cmdInPhieuXN = new Janus.Windows.EditControls.UIButton();
            this.cmdExit = new Janus.Windows.EditControls.UIButton();
            this.cboHos_Status = new Janus.Windows.EditControls.UIComboBox();
            this.label4 = new System.Windows.Forms.Label();
            this.cboTestType = new Janus.Windows.EditControls.UIComboBox();
            this.label2 = new System.Windows.Forms.Label();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
            this.uiGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
            this.SuspendLayout();
            // 
            // panel1
            // 
            this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.panel1.Controls.Add(this.label7);
            this.panel1.Controls.Add(this.pictureBox1);
            this.panel1.Controls.Add(this.label6);
            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(777, 68);
            this.panel1.TabIndex = 84;
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label7.Location = new System.Drawing.Point(217, 42);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(319, 18);
            this.label7.TabIndex = 10;
            this.label7.Text = "(BẠN CÓ THỂ DÙNG PHÍM TẮT THỰC HIỆN )";
            // 
            // pictureBox1
            // 
            this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
            this.pictureBox1.Location = new System.Drawing.Point(0, 3);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(96, 65);
            this.pictureBox1.TabIndex = 9;
            this.pictureBox1.TabStop = false;
            // 
            // label6
            // 
            this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label6.Location = new System.Drawing.Point(51, 0);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(674, 50);
            this.label6.TabIndex = 1;
            this.label6.Text = "BÁO CÁO SỐ LƯỢNG LOẠI XÉT NGHIỆM";
            this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // printDialog1
            // 
            this.printDialog1.UseEXDialog = true;
            // 
            // uiGroupBox2
            // 
            this.uiGroupBox2.Controls.Add(this.cboHos_Status);
            this.uiGroupBox2.Controls.Add(this.label4);
            this.uiGroupBox2.Controls.Add(this.cboTestType);
            this.uiGroupBox2.Controls.Add(this.label2);
            this.uiGroupBox2.Controls.Add(this.cboKhoa);
            this.uiGroupBox2.Controls.Add(this.label11);
            this.uiGroupBox2.Controls.Add(this.grdList);
            this.uiGroupBox2.Controls.Add(this.cboDoiTuong);
            this.uiGroupBox2.Controls.Add(this.label1);
            this.uiGroupBox2.Controls.Add(this.dtToDate);
            this.uiGroupBox2.Controls.Add(this.dtFromDate);
            this.uiGroupBox2.Controls.Add(this.chkByDate);
            this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Top;
            this.uiGroupBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiGroupBox2.Image = ((System.Drawing.Image)(resources.GetObject("uiGroupBox2.Image")));
            this.uiGroupBox2.Location = new System.Drawing.Point(0, 68);
            this.uiGroupBox2.Name = "uiGroupBox2";
            this.uiGroupBox2.Size = new System.Drawing.Size(777, 428);
            this.uiGroupBox2.TabIndex = 85;
            this.uiGroupBox2.Text = "&Thông tin tìm kiếm";
            // 
            // cboKhoa
            // 
            this.cboKhoa.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboKhoa.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboKhoa.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cboKhoa.Location = new System.Drawing.Point(128, 25);
            this.cboKhoa.Name = "cboKhoa";
            this.cboKhoa.SelectInDataSource = true;
            this.cboKhoa.Size = new System.Drawing.Size(632, 21);
            this.cboKhoa.TabIndex = 49;
            this.cboKhoa.Text = "Khoa ";
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.Location = new System.Drawing.Point(11, 26);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(39, 15);
            this.label11.TabIndex = 48;
            this.label11.Text = "&Khoa ";
            // 
            // grdList
            // 
            this.grdList.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grdList.ColumnAutoResize = true;
            grdList_DesignTimeLayout.LayoutString = resources.GetString("grdList_DesignTimeLayout.LayoutString");
            this.grdList.DesignTimeLayout = grdList_DesignTimeLayout;
            this.grdList.GroupByBoxVisible = false;
            this.grdList.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdList.Location = new System.Drawing.Point(10, 162);
            this.grdList.Name = "grdList";
            this.grdList.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdList.Size = new System.Drawing.Size(755, 260);
            this.grdList.TabIndex = 35;
            this.grdList.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdList.TotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            this.grdList.TotalRowFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdList.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdList.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            // 
            // cboDoiTuong
            // 
            this.cboDoiTuong.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboDoiTuong.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboDoiTuong.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cboDoiTuong.Location = new System.Drawing.Point(128, 52);
            this.cboDoiTuong.Name = "cboDoiTuong";
            this.cboDoiTuong.SelectInDataSource = true;
            this.cboDoiTuong.Size = new System.Drawing.Size(632, 21);
            this.cboDoiTuong.TabIndex = 27;
            this.cboDoiTuong.Text = "Đối tượng";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(11, 53);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(60, 15);
            this.label1.TabIndex = 16;
            this.label1.Text = "&Đối tượng";
            // 
            // dtToDate
            // 
            this.dtToDate.CustomFormat = "dd/MM/yyyy";
            this.dtToDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtToDate.DropDownCalendar.Name = "";
            this.dtToDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtToDate.Location = new System.Drawing.Point(336, 133);
            this.dtToDate.Name = "dtToDate";
            this.dtToDate.ShowUpDown = true;
            this.dtToDate.Size = new System.Drawing.Size(200, 21);
            this.dtToDate.TabIndex = 15;
            // 
            // dtFromDate
            // 
            this.dtFromDate.CustomFormat = "dd/MM/yyyy";
            this.dtFromDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtFromDate.DropDownCalendar.Name = "";
            this.dtFromDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtFromDate.Location = new System.Drawing.Point(128, 133);
            this.dtFromDate.Name = "dtFromDate";
            this.dtFromDate.ShowUpDown = true;
            this.dtFromDate.Size = new System.Drawing.Size(200, 21);
            this.dtFromDate.TabIndex = 14;
            // 
            // chkByDate
            // 
            this.chkByDate.Checked = true;
            this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkByDate.Location = new System.Drawing.Point(11, 133);
            this.chkByDate.Name = "chkByDate";
            this.chkByDate.Size = new System.Drawing.Size(71, 23);
            this.chkByDate.TabIndex = 13;
            this.chkByDate.Text = "&Từ ngày";
            // 
            // 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.Location = new System.Drawing.Point(19, 538);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(56, 17);
            this.label12.TabIndex = 120;
            this.label12.Text = "&Tiêu đề";
            // 
            // cmdExportToExcel
            // 
            this.cmdExportToExcel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdExportToExcel.Image = ((System.Drawing.Image)(resources.GetObject("cmdExportToExcel.Image")));
            this.cmdExportToExcel.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdExportToExcel.Location = new System.Drawing.Point(153, 561);
            this.cmdExportToExcel.Name = "cmdExportToExcel";
            this.cmdExportToExcel.Size = new System.Drawing.Size(161, 30);
            this.cmdExportToExcel.TabIndex = 119;
            this.cmdExportToExcel.Text = "&Export to Excel (F5)";
            this.cmdExportToExcel.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
            this.cmdExportToExcel.Click += new System.EventHandler(this.cmdExportToExcel_Click);
            // 
            // txtTieuDe
            // 
            this.txtTieuDe.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            this.txtTieuDe.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTieuDe.Location = new System.Drawing.Point(97, 531);
            this.txtTieuDe.Name = "txtTieuDe";
            this.txtTieuDe.Size = new System.Drawing.Size(680, 26);
            this.txtTieuDe.TabIndex = 118;
            this.txtTieuDe.Text = "BÁO CÁO SỐ LƯỢNG LOẠI XÉT NGHIỆM";
            this.txtTieuDe.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // dtNgayInPhieu
            // 
            this.dtNgayInPhieu.CustomFormat = "dd/MM/yyyy";
            this.dtNgayInPhieu.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtNgayInPhieu.DropDownCalendar.Name = "";
            this.dtNgayInPhieu.Location = new System.Drawing.Point(98, 504);
            this.dtNgayInPhieu.Name = "dtNgayInPhieu";
            this.dtNgayInPhieu.ShowUpDown = true;
            this.dtNgayInPhieu.Size = new System.Drawing.Size(200, 20);
            this.dtNgayInPhieu.TabIndex = 117;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(19, 506);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(72, 13);
            this.label3.TabIndex = 116;
            this.label3.Text = "&Ngày in phiếu";
            // 
            // cmdInPhieuXN
            // 
            this.cmdInPhieuXN.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdInPhieuXN.Image = ((System.Drawing.Image)(resources.GetObject("cmdInPhieuXN.Image")));
            this.cmdInPhieuXN.Location = new System.Drawing.Point(324, 561);
            this.cmdInPhieuXN.Name = "cmdInPhieuXN";
            this.cmdInPhieuXN.Size = new System.Drawing.Size(133, 30);
            this.cmdInPhieuXN.TabIndex = 115;
            this.cmdInPhieuXN.Text = "&In báo cáo (F4)";
            this.cmdInPhieuXN.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
            this.cmdInPhieuXN.Click += new System.EventHandler(this.cmdInPhieuXN_Click);
            // 
            // cmdExit
            // 
            this.cmdExit.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, 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(464, 561);
            this.cmdExit.Name = "cmdExit";
            this.cmdExit.Size = new System.Drawing.Size(123, 30);
            this.cmdExit.TabIndex = 114;
            this.cmdExit.Text = "&Thoát(Esc)";
            this.cmdExit.Click += new System.EventHandler(this.cmdExit_Click);
            // 
            // cboHos_Status
            // 
            this.cboHos_Status.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboHos_Status.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "Tất cả";
            uiComboBoxItem1.Value = -1;
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "Ngoại trú";
            uiComboBoxItem2.Value = 0;
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "Nội trú";
            uiComboBoxItem3.Value = 1;
            this.cboHos_Status.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3});
            this.cboHos_Status.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cboHos_Status.Location = new System.Drawing.Point(128, 106);
            this.cboHos_Status.Name = "cboHos_Status";
            this.cboHos_Status.SelectInDataSource = true;
            this.cboHos_Status.Size = new System.Drawing.Size(632, 21);
            this.cboHos_Status.TabIndex = 60;
            this.cboHos_Status.Text = "Trạng thái";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(6, 107);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(124, 15);
            this.label4.TabIndex = 59;
            this.label4.Text = "&Trạng thái bệnh nhân";
            // 
            // cboTestType
            // 
            this.cboTestType.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboTestType.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboTestType.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.cboTestType.Location = new System.Drawing.Point(128, 79);
            this.cboTestType.Name = "cboTestType";
            this.cboTestType.SelectInDataSource = true;
            this.cboTestType.Size = new System.Drawing.Size(632, 21);
            this.cboTestType.TabIndex = 58;
            this.cboTestType.Text = "Loại xét nghiệm";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(6, 80);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(95, 15);
            this.label2.TabIndex = 57;
            this.label2.Text = "&Loại xét nghiệm";
            // 
            // frm_XD_BAOCAO_LOAI_XN
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(777, 600);
            this.Controls.Add(this.label12);
            this.Controls.Add(this.cmdExportToExcel);
            this.Controls.Add(this.txtTieuDe);
            this.Controls.Add(this.dtNgayInPhieu);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.cmdInPhieuXN);
            this.Controls.Add(this.cmdExit);
            this.Controls.Add(this.uiGroupBox2);
            this.Controls.Add(this.panel1);
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frm_XD_BAOCAO_LOAI_XN";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Báo cáo số lượng xét nghiệm";
            this.Load += new System.EventHandler(this.frm_XD_BAOCAO_LOAI_XN_Load);
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
            this.uiGroupBox2.ResumeLayout(false);
            this.uiGroupBox2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
            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_baocao_tonghopthuoc_hangngay));
     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 grdList_DesignTimeLayout     = new Janus.Windows.GridEX.GridEXLayout();
     this.panel1            = new System.Windows.Forms.Panel();
     this.baocaO_TIEUDE1    = new VNS.HIS.UI.FORMs.BAOCAO.BHYT.UserControls.BAOCAO_TIEUDE();
     this.uiGroupBox2       = new Janus.Windows.EditControls.UIGroupBox();
     this.label2            = new System.Windows.Forms.Label();
     this.cbotinhtrang      = new Janus.Windows.EditControls.UIComboBox();
     this.cboStock          = new Janus.Windows.EditControls.UIComboBox();
     this.label8            = new System.Windows.Forms.Label();
     this.cboDoiTuong       = new Janus.Windows.EditControls.UIComboBox();
     this.lblMoneyCharacter = new System.Windows.Forms.Label();
     this.label5            = new System.Windows.Forms.Label();
     this.grdList           = new Janus.Windows.GridEX.GridEX();
     this.label1            = new System.Windows.Forms.Label();
     this.dtToDate          = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtFromDate        = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.chkByDate         = new Janus.Windows.EditControls.UICheckBox();
     this.cmdExportToExcel  = new Janus.Windows.EditControls.UIButton();
     this.dtNgayInPhieu     = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.label3            = new System.Windows.Forms.Label();
     this.cmdInPhieuXN      = new Janus.Windows.EditControls.UIButton();
     this.cmdExit           = new Janus.Windows.EditControls.UIButton();
     this.saveFileDialog1   = new System.Windows.Forms.SaveFileDialog();
     this.gridEXExporter1   = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
     this.printDialog1      = new System.Windows.Forms.PrintDialog();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
     this.uiGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.Control;
     this.panel1.Controls.Add(this.baocaO_TIEUDE1);
     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(1003, 68);
     this.panel1.TabIndex = 84;
     //
     // baocaO_TIEUDE1
     //
     this.baocaO_TIEUDE1.BackColor         = System.Drawing.SystemColors.Control;
     this.baocaO_TIEUDE1.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.baocaO_TIEUDE1.Location          = new System.Drawing.Point(0, 0);
     this.baocaO_TIEUDE1.MA_BAOCAO         = "THUOC_BCDSACH_BNHANLINHTHUOC";
     this.baocaO_TIEUDE1.Name              = "baocaO_TIEUDE1";
     this.baocaO_TIEUDE1.Phimtat           = "Bạn có thể sử dụng phím tắt";
     this.baocaO_TIEUDE1.PicImg            = ((System.Drawing.Image)(resources.GetObject("baocaO_TIEUDE1.PicImg")));
     this.baocaO_TIEUDE1.ShortcutAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.baocaO_TIEUDE1.ShortcutFont      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.baocaO_TIEUDE1.showHelp          = false;
     this.baocaO_TIEUDE1.Size              = new System.Drawing.Size(1003, 68);
     this.baocaO_TIEUDE1.TabIndex          = 0;
     this.baocaO_TIEUDE1.TIEUDE            = "BÁO CÁO CẤP PHÁT THUỐC BỆNH NHÂN";
     this.baocaO_TIEUDE1.TitleFont         = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     //
     // uiGroupBox2
     //
     this.uiGroupBox2.Controls.Add(this.label2);
     this.uiGroupBox2.Controls.Add(this.cbotinhtrang);
     this.uiGroupBox2.Controls.Add(this.cboStock);
     this.uiGroupBox2.Controls.Add(this.label8);
     this.uiGroupBox2.Controls.Add(this.cboDoiTuong);
     this.uiGroupBox2.Controls.Add(this.lblMoneyCharacter);
     this.uiGroupBox2.Controls.Add(this.label5);
     this.uiGroupBox2.Controls.Add(this.grdList);
     this.uiGroupBox2.Controls.Add(this.label1);
     this.uiGroupBox2.Controls.Add(this.dtToDate);
     this.uiGroupBox2.Controls.Add(this.dtFromDate);
     this.uiGroupBox2.Controls.Add(this.chkByDate);
     this.uiGroupBox2.Dock        = System.Windows.Forms.DockStyle.Top;
     this.uiGroupBox2.Font        = new System.Drawing.Font("Arial", 9F);
     this.uiGroupBox2.Image       = ((System.Drawing.Image)(resources.GetObject("uiGroupBox2.Image")));
     this.uiGroupBox2.Location    = new System.Drawing.Point(0, 68);
     this.uiGroupBox2.Name        = "uiGroupBox2";
     this.uiGroupBox2.Size        = new System.Drawing.Size(1003, 446);
     this.uiGroupBox2.TabIndex    = 85;
     this.uiGroupBox2.Text        = "Thông tin tìm kiếm";
     this.uiGroupBox2.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2003;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font     = new System.Drawing.Font("Arial", 9F);
     this.label2.Location = new System.Drawing.Point(534, 24);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(43, 15);
     this.label2.TabIndex = 35;
     this.label2.Text     = "Nội trú";
     //
     // cbotinhtrang
     //
     this.cbotinhtrang.Font            = new System.Drawing.Font("Arial", 9F);
     uiComboBoxItem4.FormatStyle.Alpha = 0;
     uiComboBoxItem4.IsSeparator       = false;
     uiComboBoxItem4.Text              = "Tất cả";
     uiComboBoxItem4.Value             = ((short)(-1));
     uiComboBoxItem5.FormatStyle.Alpha = 0;
     uiComboBoxItem5.IsSeparator       = false;
     uiComboBoxItem5.Text              = "Ngoại trú";
     uiComboBoxItem5.Value             = ((short)(0));
     uiComboBoxItem6.FormatStyle.Alpha = 0;
     uiComboBoxItem6.IsSeparator       = false;
     uiComboBoxItem6.Text              = "Nội trú";
     uiComboBoxItem6.Value             = ((short)(1));
     this.cbotinhtrang.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem4,
         uiComboBoxItem5,
         uiComboBoxItem6
     });
     this.cbotinhtrang.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cbotinhtrang.Location           = new System.Drawing.Point(583, 21);
     this.cbotinhtrang.Name               = "cbotinhtrang";
     this.cbotinhtrang.SelectInDataSource = true;
     this.cbotinhtrang.Size               = new System.Drawing.Size(221, 21);
     this.cbotinhtrang.TabIndex           = 34;
     this.cbotinhtrang.Text               = "Tất cả";
     this.cbotinhtrang.VisualStyle        = Janus.Windows.UI.VisualStyle.Office2003;
     //
     // cboStock
     //
     this.cboStock.Font = new System.Drawing.Font("Arial", 9F);
     this.cboStock.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboStock.Location           = new System.Drawing.Point(583, 48);
     this.cboStock.Name               = "cboStock";
     this.cboStock.SelectInDataSource = true;
     this.cboStock.Size               = new System.Drawing.Size(221, 21);
     this.cboStock.TabIndex           = 33;
     this.cboStock.Text               = "Kho thuốc";
     this.cboStock.VisualStyle        = Janus.Windows.UI.VisualStyle.Office2003;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font     = new System.Drawing.Font("Arial", 9F);
     this.label8.Location = new System.Drawing.Point(515, 52);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(62, 15);
     this.label8.TabIndex = 32;
     this.label8.Text     = "Kho thuốc";
     //
     // cboDoiTuong
     //
     this.cboDoiTuong.Font = new System.Drawing.Font("Arial", 9F);
     this.cboDoiTuong.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboDoiTuong.Location           = new System.Drawing.Point(265, 48);
     this.cboDoiTuong.Name               = "cboDoiTuong";
     this.cboDoiTuong.SelectInDataSource = true;
     this.cboDoiTuong.Size               = new System.Drawing.Size(244, 21);
     this.cboDoiTuong.TabIndex           = 27;
     this.cboDoiTuong.Text               = "Đối tượng";
     this.cboDoiTuong.VisualStyle        = Janus.Windows.UI.VisualStyle.Office2003;
     //
     // lblMoneyCharacter
     //
     this.lblMoneyCharacter.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblMoneyCharacter.AutoSize  = true;
     this.lblMoneyCharacter.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.lblMoneyCharacter.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.lblMoneyCharacter.Location  = new System.Drawing.Point(85, 424);
     this.lblMoneyCharacter.Name      = "lblMoneyCharacter";
     this.lblMoneyCharacter.Size      = new System.Drawing.Size(15, 15);
     this.lblMoneyCharacter.TabIndex  = 24;
     this.lblMoneyCharacter.Text      = "0";
     //
     // label5
     //
     this.label5.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label5.AutoSize = true;
     this.label5.Font     = new System.Drawing.Font("Arial", 9F);
     this.label5.Location = new System.Drawing.Point(9, 424);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(66, 15);
     this.label5.TabIndex = 23;
     this.label5.Text     = "Bằng chữ :";
     //
     // grdList
     //
     this.grdList.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     this.grdList.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)));
     grdList_DesignTimeLayout.LayoutString = resources.GetString("grdList_DesignTimeLayout.LayoutString");
     this.grdList.DesignTimeLayout         = grdList_DesignTimeLayout;
     this.grdList.Font = new System.Drawing.Font("Arial", 9F);
     this.grdList.GroupByBoxVisible = false;
     this.grdList.HideSelection     = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdList.Location          = new System.Drawing.Point(3, 88);
     this.grdList.Name       = "grdList";
     this.grdList.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.Size       = new System.Drawing.Size(994, 327);
     this.grdList.TabIndex   = 20;
     this.grdList.TotalRow   = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.TotalRowFormatStyle.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
     this.grdList.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
     this.grdList.TotalRowPosition             = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdList.Visible     = false;
     this.grdList.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font     = new System.Drawing.Font("Arial", 9F);
     this.label1.Location = new System.Drawing.Point(192, 52);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(65, 15);
     this.label1.TabIndex = 16;
     this.label1.Text     = "Đối tượng:";
     //
     // dtToDate
     //
     this.dtToDate.CustomFormat = "dd/MM/yyyy";
     this.dtToDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtToDate.DropDownCalendar.Name        = "";
     this.dtToDate.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     this.dtToDate.Font        = new System.Drawing.Font("Arial", 9F);
     this.dtToDate.Location    = new System.Drawing.Point(392, 21);
     this.dtToDate.Name        = "dtToDate";
     this.dtToDate.ShowUpDown  = true;
     this.dtToDate.Size        = new System.Drawing.Size(117, 21);
     this.dtToDate.TabIndex    = 15;
     this.dtToDate.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     //
     // dtFromDate
     //
     this.dtFromDate.CustomFormat = "dd/MM/yyyy";
     this.dtFromDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtFromDate.DropDownCalendar.Name        = "";
     this.dtFromDate.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     this.dtFromDate.Font        = new System.Drawing.Font("Arial", 9F);
     this.dtFromDate.Location    = new System.Drawing.Point(265, 21);
     this.dtFromDate.Name        = "dtFromDate";
     this.dtFromDate.ShowUpDown  = true;
     this.dtFromDate.Size        = new System.Drawing.Size(117, 21);
     this.dtFromDate.TabIndex    = 14;
     this.dtFromDate.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     //
     // chkByDate
     //
     this.chkByDate.Checked    = true;
     this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkByDate.Font       = new System.Drawing.Font("Arial", 9F);
     this.chkByDate.Location   = new System.Drawing.Point(175, 22);
     this.chkByDate.Name       = "chkByDate";
     this.chkByDate.Size       = new System.Drawing.Size(79, 23);
     this.chkByDate.TabIndex   = 13;
     this.chkByDate.Text       = "Ngày chốt:";
     //
     // cmdExportToExcel
     //
     this.cmdExportToExcel.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdExportToExcel.Font        = new System.Drawing.Font("Arial", 9F);
     this.cmdExportToExcel.Image       = ((System.Drawing.Image)(resources.GetObject("cmdExportToExcel.Image")));
     this.cmdExportToExcel.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdExportToExcel.Location    = new System.Drawing.Point(360, 520);
     this.cmdExportToExcel.Name        = "cmdExportToExcel";
     this.cmdExportToExcel.Size        = new System.Drawing.Size(133, 30);
     this.cmdExportToExcel.TabIndex    = 118;
     this.cmdExportToExcel.Text        = "Xuất Excel";
     this.cmdExportToExcel.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
     //
     // dtNgayInPhieu
     //
     this.dtNgayInPhieu.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.dtNgayInPhieu.CustomFormat = "dd/MM/yyyy";
     this.dtNgayInPhieu.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtNgayInPhieu.DropDownCalendar.Name        = "";
     this.dtNgayInPhieu.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     this.dtNgayInPhieu.Font        = new System.Drawing.Font("Arial", 9F);
     this.dtNgayInPhieu.Location    = new System.Drawing.Point(99, 526);
     this.dtNgayInPhieu.Name        = "dtNgayInPhieu";
     this.dtNgayInPhieu.ShowUpDown  = true;
     this.dtNgayInPhieu.Size        = new System.Drawing.Size(200, 21);
     this.dtNgayInPhieu.TabIndex    = 116;
     this.dtNgayInPhieu.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     //
     // label3
     //
     this.label3.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.AutoSize = true;
     this.label3.Font     = new System.Drawing.Font("Arial", 9F);
     this.label3.Location = new System.Drawing.Point(11, 531);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(82, 15);
     this.label3.TabIndex = 115;
     this.label3.Text     = "Ngày in phiếu";
     //
     // cmdInPhieuXN
     //
     this.cmdInPhieuXN.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdInPhieuXN.Font        = new System.Drawing.Font("Arial", 9F);
     this.cmdInPhieuXN.Image       = ((System.Drawing.Image)(resources.GetObject("cmdInPhieuXN.Image")));
     this.cmdInPhieuXN.Location    = new System.Drawing.Point(638, 520);
     this.cmdInPhieuXN.Name        = "cmdInPhieuXN";
     this.cmdInPhieuXN.Size        = new System.Drawing.Size(133, 30);
     this.cmdInPhieuXN.TabIndex    = 114;
     this.cmdInPhieuXN.Text        = "In báo cáo";
     this.cmdInPhieuXN.Visible     = false;
     this.cmdInPhieuXN.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
     this.cmdInPhieuXN.Click      += new System.EventHandler(this.cmdInPhieuXN_Click_1);
     //
     // cmdExit
     //
     this.cmdExit.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdExit.Font        = new System.Drawing.Font("Arial", 9F);
     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(499, 520);
     this.cmdExit.Name        = "cmdExit";
     this.cmdExit.Size        = new System.Drawing.Size(133, 30);
     this.cmdExit.TabIndex    = 113;
     this.cmdExit.Text        = "Thoát (Esc)";
     this.cmdExit.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
     //
     // gridEXExporter1
     //
     this.gridEXExporter1.GridEX = this.grdList;
     //
     // printDialog1
     //
     this.printDialog1.UseEXDialog = true;
     //
     // frm_baocao_tonghopthuoc_hangngay
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize    = new System.Drawing.Size(1003, 562);
     this.Controls.Add(this.cmdExportToExcel);
     this.Controls.Add(this.dtNgayInPhieu);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.cmdInPhieuXN);
     this.Controls.Add(this.cmdExit);
     this.Controls.Add(this.uiGroupBox2);
     this.Controls.Add(this.panel1);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "frm_baocao_tonghopthuoc_hangngay";
     this.ShowIcon      = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "THỐNG KÊ THUỐC ĐÃ PHÁT CHO BỆNH NHÂN";
     this.Load         += new System.EventHandler(this.frm_baocao_tonghopthuoc_hangngay_Load);
     this.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.frm_baocao_tonghopthuoc_hangngay_KeyDown);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
     this.uiGroupBox2.ResumeLayout(false);
     this.uiGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #53
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_baocaodanhsachbenhnhantheodotuoi));
     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.GridEX.GridEXLayout grdChitiet_DesignTimeLayout  = new Janus.Windows.GridEX.GridEXLayout();
     this.cmdExportToExcel = new Janus.Windows.EditControls.UIButton();
     this.dtNgayInPhieu    = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.label3           = new System.Windows.Forms.Label();
     this.cmdInPhieuXN     = new Janus.Windows.EditControls.UIButton();
     this.cmdExit          = new Janus.Windows.EditControls.UIButton();
     this.saveFileDialog1  = new System.Windows.Forms.SaveFileDialog();
     this.gridEXExporter1  = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
     this.printDialog1     = new System.Windows.Forms.PrintDialog();
     this.cboSoSanh        = new Janus.Windows.EditControls.UIGroupBox();
     this.cboEqual         = new System.Windows.Forms.ComboBox();
     this.txtTuTuoi        = new System.Windows.Forms.TextBox();
     this.cboGT            = new Janus.Windows.EditControls.UIComboBox();
     this.label6           = new System.Windows.Forms.Label();
     this.txtDenTuoi       = new System.Windows.Forms.TextBox();
     this.chkDoTuoi        = new Janus.Windows.EditControls.UICheckBox();
     this.label2           = new System.Windows.Forms.Label();
     this.panel1           = new System.Windows.Forms.Panel();
     this.grdChitiet       = new Janus.Windows.GridEX.GridEX();
     this.cboKhoa          = new Janus.Windows.EditControls.UIComboBox();
     this.label4           = new System.Windows.Forms.Label();
     this.cboDoituongKCB   = new Janus.Windows.EditControls.UIComboBox();
     this.label1           = new System.Windows.Forms.Label();
     this.dtToDate         = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtFromDate       = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.chkByDate        = new Janus.Windows.EditControls.UICheckBox();
     this.toolTip1         = new System.Windows.Forms.ToolTip(this.components);
     this.baocaO_TIEUDE1   = new VNS.HIS.UI.FORMs.BAOCAO.BHYT.UserControls.BAOCAO_TIEUDE();
     this.label5           = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.cboSoSanh)).BeginInit();
     this.cboSoSanh.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).BeginInit();
     this.SuspendLayout();
     //
     // cmdExportToExcel
     //
     this.cmdExportToExcel.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdExportToExcel.Font        = new System.Drawing.Font("Arial", 9F);
     this.cmdExportToExcel.Image       = ((System.Drawing.Image)(resources.GetObject("cmdExportToExcel.Image")));
     this.cmdExportToExcel.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdExportToExcel.Location    = new System.Drawing.Point(364, 530);
     this.cmdExportToExcel.Name        = "cmdExportToExcel";
     this.cmdExportToExcel.Size        = new System.Drawing.Size(133, 30);
     this.cmdExportToExcel.TabIndex    = 9;
     this.cmdExportToExcel.Text        = "Xuất Excel";
     this.cmdExportToExcel.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
     this.cmdExportToExcel.Click      += new System.EventHandler(this.cmdExportToExcel_Click);
     //
     // dtNgayInPhieu
     //
     this.dtNgayInPhieu.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.dtNgayInPhieu.CustomFormat = "dd/MM/yyyy";
     this.dtNgayInPhieu.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtNgayInPhieu.DropDownCalendar.Name = "";
     this.dtNgayInPhieu.Font       = new System.Drawing.Font("Arial", 9F);
     this.dtNgayInPhieu.Location   = new System.Drawing.Point(81, 530);
     this.dtNgayInPhieu.Name       = "dtNgayInPhieu";
     this.dtNgayInPhieu.ShowUpDown = true;
     this.dtNgayInPhieu.Size       = new System.Drawing.Size(200, 21);
     this.dtNgayInPhieu.TabIndex   = 11;
     this.dtNgayInPhieu.TabStop    = false;
     this.dtNgayInPhieu.Value      = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
     //
     // label3
     //
     this.label3.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.AutoSize = true;
     this.label3.Font     = new System.Drawing.Font("Arial", 9F);
     this.label3.Location = new System.Drawing.Point(3, 534);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(48, 15);
     this.label3.TabIndex = 88;
     this.label3.Text     = "Ngày in";
     //
     // cmdInPhieuXN
     //
     this.cmdInPhieuXN.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdInPhieuXN.Font        = new System.Drawing.Font("Arial", 9F);
     this.cmdInPhieuXN.Image       = ((System.Drawing.Image)(resources.GetObject("cmdInPhieuXN.Image")));
     this.cmdInPhieuXN.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdInPhieuXN.Location    = new System.Drawing.Point(503, 530);
     this.cmdInPhieuXN.Name        = "cmdInPhieuXN";
     this.cmdInPhieuXN.Size        = new System.Drawing.Size(133, 30);
     this.cmdInPhieuXN.TabIndex    = 8;
     this.cmdInPhieuXN.Text        = "In báo cáo";
     this.cmdInPhieuXN.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
     this.cmdInPhieuXN.Click      += new System.EventHandler(this.cmdInPhieuXN_Click);
     //
     // cmdExit
     //
     this.cmdExit.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdExit.Font      = new System.Drawing.Font("Arial", 9F);
     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(642, 530);
     this.cmdExit.Name      = "cmdExit";
     this.cmdExit.Size      = new System.Drawing.Size(133, 30);
     this.cmdExit.TabIndex  = 10;
     this.cmdExit.Text      = "Thoát (Esc)";
     //
     // printDialog1
     //
     this.printDialog1.UseEXDialog = true;
     //
     // cboSoSanh
     //
     this.cboSoSanh.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.cboSoSanh.Controls.Add(this.cboEqual);
     this.cboSoSanh.Controls.Add(this.txtTuTuoi);
     this.cboSoSanh.Controls.Add(this.cboGT);
     this.cboSoSanh.Controls.Add(this.label6);
     this.cboSoSanh.Controls.Add(this.txtDenTuoi);
     this.cboSoSanh.Controls.Add(this.label5);
     this.cboSoSanh.Controls.Add(this.chkDoTuoi);
     this.cboSoSanh.Controls.Add(this.label2);
     this.cboSoSanh.Controls.Add(this.panel1);
     this.cboSoSanh.Controls.Add(this.cboKhoa);
     this.cboSoSanh.Controls.Add(this.label4);
     this.cboSoSanh.Controls.Add(this.cboDoituongKCB);
     this.cboSoSanh.Controls.Add(this.label1);
     this.cboSoSanh.Controls.Add(this.dtToDate);
     this.cboSoSanh.Controls.Add(this.dtFromDate);
     this.cboSoSanh.Controls.Add(this.chkByDate);
     this.cboSoSanh.Font     = new System.Drawing.Font("Arial", 9F);
     this.cboSoSanh.Image    = ((System.Drawing.Image)(resources.GetObject("cboSoSanh.Image")));
     this.cboSoSanh.Location = new System.Drawing.Point(0, 59);
     this.cboSoSanh.Name     = "cboSoSanh";
     this.cboSoSanh.Size     = new System.Drawing.Size(784, 465);
     this.cboSoSanh.TabIndex = 116;
     this.cboSoSanh.Text     = "Thông tin tìm kiếm";
     //
     // cboEqual
     //
     this.cboEqual.FormattingEnabled = true;
     this.cboEqual.Items.AddRange(new object[] {
         "---- Chọn so sách -----",
         "     Bằng(=)",
         "     Lớn hơn(>=)",
         "     Nhỏ hơn(<=)"
     });
     this.cboEqual.Location = new System.Drawing.Point(481, 53);
     this.cboEqual.Name     = "cboEqual";
     this.cboEqual.Size     = new System.Drawing.Size(95, 23);
     this.cboEqual.TabIndex = 124;
     this.cboEqual.Visible  = false;
     //
     // txtTuTuoi
     //
     this.txtTuTuoi.Location = new System.Drawing.Point(483, 56);
     this.txtTuTuoi.Name     = "txtTuTuoi";
     this.txtTuTuoi.Size     = new System.Drawing.Size(92, 21);
     this.txtTuTuoi.TabIndex = 127;
     //
     // cboGT
     //
     this.cboGT.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              = "Giới tính";
     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              = "Nữ";
     uiComboBoxItem3.Value             = 1;
     this.cboGT.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2,
         uiComboBoxItem3
     });
     this.cboGT.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboGT.Location           = new System.Drawing.Point(642, 80);
     this.cboGT.Name               = "cboGT";
     this.cboGT.SelectedIndex      = 0;
     this.cboGT.SelectInDataSource = true;
     this.cboGT.Size               = new System.Drawing.Size(92, 21);
     this.cboGT.TabIndex           = 126;
     this.cboGT.Text               = "Giới tính";
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(557, 81);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(75, 22);
     this.label6.TabIndex  = 125;
     this.label6.Text      = "Giới tính: ";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtDenTuoi
     //
     this.txtDenTuoi.Location = new System.Drawing.Point(642, 56);
     this.txtDenTuoi.Name     = "txtDenTuoi";
     this.txtDenTuoi.Size     = new System.Drawing.Size(92, 21);
     this.txtDenTuoi.TabIndex = 123;
     //
     // chkDoTuoi
     //
     this.chkDoTuoi.Checked         = true;
     this.chkDoTuoi.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.chkDoTuoi.Location        = new System.Drawing.Point(388, 54);
     this.chkDoTuoi.Name            = "chkDoTuoi";
     this.chkDoTuoi.Size            = new System.Drawing.Size(95, 23);
     this.chkDoTuoi.TabIndex        = 48;
     this.chkDoTuoi.Text            = "Từ khoảng";
     this.chkDoTuoi.CheckedChanged += new System.EventHandler(this.chkDoTuoi_CheckedChanged);
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(329, 55);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(43, 22);
     this.label2.TabIndex  = 47;
     this.label2.Text      = "Tuổi";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // panel1
     //
     this.panel1.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.panel1.Controls.Add(this.grdChitiet);
     this.panel1.Location = new System.Drawing.Point(6, 123);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(772, 336);
     this.panel1.TabIndex = 46;
     //
     // grdChitiet
     //
     this.grdChitiet.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     grdChitiet_DesignTimeLayout.LayoutString = resources.GetString("grdChitiet_DesignTimeLayout.LayoutString");
     this.grdChitiet.DesignTimeLayout         = grdChitiet_DesignTimeLayout;
     this.grdChitiet.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdChitiet.Font = new System.Drawing.Font("Arial", 9F);
     this.grdChitiet.GroupByBoxVisible = false;
     this.grdChitiet.HideSelection     = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdChitiet.Location          = new System.Drawing.Point(0, 0);
     this.grdChitiet.Name             = "grdChitiet";
     this.grdChitiet.RowHeaders       = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdChitiet.Size             = new System.Drawing.Size(772, 336);
     this.grdChitiet.TabIndex         = 21;
     this.grdChitiet.TabStop          = false;
     this.grdChitiet.TotalRow         = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdChitiet.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdChitiet.VisualStyle      = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // cboKhoa
     //
     this.cboKhoa.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboKhoa.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboKhoa.Location           = new System.Drawing.Point(123, 27);
     this.cboKhoa.Name               = "cboKhoa";
     this.cboKhoa.SelectInDataSource = true;
     this.cboKhoa.Size               = new System.Drawing.Size(611, 21);
     this.cboKhoa.TabIndex           = 0;
     this.cboKhoa.Text               = "Khoa thực hiện";
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(13, 29);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(104, 15);
     this.label4.TabIndex  = 44;
     this.label4.Text      = "Khoa KCB";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboDoituongKCB
     //
     this.cboDoituongKCB.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboDoituongKCB.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboDoituongKCB.Location           = new System.Drawing.Point(123, 54);
     this.cboDoituongKCB.Name               = "cboDoituongKCB";
     this.cboDoituongKCB.SelectInDataSource = true;
     this.cboDoituongKCB.Size               = new System.Drawing.Size(200, 21);
     this.cboDoituongKCB.TabIndex           = 1;
     this.cboDoituongKCB.Text               = "Đối tượng";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(13, 56);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(104, 15);
     this.label1.TabIndex  = 16;
     this.label1.Text      = "Đối tượng KCB:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // dtToDate
     //
     this.dtToDate.CustomFormat = "dd/MM/yyyy";
     this.dtToDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtToDate.DropDownCalendar.Name = "";
     this.dtToDate.Font       = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtToDate.Location   = new System.Drawing.Point(331, 81);
     this.dtToDate.Name       = "dtToDate";
     this.dtToDate.ShowUpDown = true;
     this.dtToDate.Size       = new System.Drawing.Size(200, 21);
     this.dtToDate.TabIndex   = 6;
     this.dtToDate.Value      = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
     //
     // dtFromDate
     //
     this.dtFromDate.CustomFormat = "dd/MM/yyyy";
     this.dtFromDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtFromDate.DropDownCalendar.Name = "";
     this.dtFromDate.Font       = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtFromDate.Location   = new System.Drawing.Point(123, 81);
     this.dtFromDate.Name       = "dtFromDate";
     this.dtFromDate.ShowUpDown = true;
     this.dtFromDate.Size       = new System.Drawing.Size(200, 21);
     this.dtFromDate.TabIndex   = 5;
     this.dtFromDate.Value      = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
     //
     // chkByDate
     //
     this.chkByDate.Checked    = true;
     this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkByDate.Location   = new System.Drawing.Point(48, 82);
     this.chkByDate.Name       = "chkByDate";
     this.chkByDate.Size       = new System.Drawing.Size(69, 23);
     this.chkByDate.TabIndex   = 4;
     this.chkByDate.Text       = "Từ ngày";
     //
     // toolTip1
     //
     this.toolTip1.IsBalloon    = true;
     this.toolTip1.ToolTipTitle = "Trợ giúp";
     //
     // baocaO_TIEUDE1
     //
     this.baocaO_TIEUDE1.BackColor         = System.Drawing.SystemColors.Control;
     this.baocaO_TIEUDE1.Dock              = System.Windows.Forms.DockStyle.Top;
     this.baocaO_TIEUDE1.Location          = new System.Drawing.Point(0, 0);
     this.baocaO_TIEUDE1.MA_BAOCAO         = "baocao_thongkebn_theodotuoi_ct";
     this.baocaO_TIEUDE1.Name              = "baocaO_TIEUDE1";
     this.baocaO_TIEUDE1.Phimtat           = "Bạn có thể sử dụng phím tắt";
     this.baocaO_TIEUDE1.PicImg            = ((System.Drawing.Image)(resources.GetObject("baocaO_TIEUDE1.PicImg")));
     this.baocaO_TIEUDE1.ShortcutAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.baocaO_TIEUDE1.ShortcutFont      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.baocaO_TIEUDE1.showHelp          = false;
     this.baocaO_TIEUDE1.Size              = new System.Drawing.Size(784, 53);
     this.baocaO_TIEUDE1.TabIndex          = 115;
     this.baocaO_TIEUDE1.TIEUDE            = "THỐNG KÊ BỆNH NHÂN THEO ĐỘ TUỔI";
     this.baocaO_TIEUDE1.TitleFont         = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     //
     // label5
     //
     this.label5.Font       = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Image      = ((System.Drawing.Image)(resources.GetObject("label5.Image")));
     this.label5.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.label5.Location   = new System.Drawing.Point(581, 60);
     this.label5.Name       = "label5";
     this.label5.Size       = new System.Drawing.Size(51, 17);
     this.label5.TabIndex   = 122;
     //
     // frm_baocaodanhsachbenhnhantheodotuoi
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(784, 562);
     this.Controls.Add(this.cboSoSanh);
     this.Controls.Add(this.baocaO_TIEUDE1);
     this.Controls.Add(this.cmdExportToExcel);
     this.Controls.Add(this.dtNgayInPhieu);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.cmdInPhieuXN);
     this.Controls.Add(this.cmdExit);
     this.KeyPreview    = true;
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "frm_baocaodanhsachbenhnhantheodotuoi";
     this.ShowIcon      = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "BÁO CÁO TÌNH HÌNH TIẾP ĐÓN BỆNH NHÂN";
     this.Load         += new System.EventHandler(this.frm_BAOCAO_TONGHOP_TAI_KKB_DTUONG_THUPHI_Load);
     ((System.ComponentModel.ISupportInitialize)(this.cboSoSanh)).EndInit();
     this.cboSoSanh.ResumeLayout(false);
     this.cboSoSanh.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).EndInit();
     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_kedonthuoctaiquay));
            Janus.Windows.GridEX.GridEXLayout grdPresDetail_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.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel6 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
            Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel7 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
            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.GridEX.GridEXLayout grd_ICD_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            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.EditControls.UIComboBoxItem uiComboBoxItem7 = new Janus.Windows.EditControls.UIComboBoxItem();
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.mnuDelele = new System.Windows.Forms.ToolStripMenuItem();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.cmdDelete = new Janus.Windows.EditControls.UIButton();
            this.cmdPrintPres = new Janus.Windows.EditControls.UIButton();
            this.cmdSavePres = new Janus.Windows.EditControls.UIButton();
            this.cmdExit = new Janus.Windows.EditControls.UIButton();
            this.chkHienthithuoctheonhom = new Janus.Windows.EditControls.UICheckBox();
            this.txtdrug = new VNS.HIS.UCs.AutoCompleteTextbox_Thuoc();
            this.cmdAddDetail = new Janus.Windows.EditControls.UIButton();
            this.grdPresDetail = new Janus.Windows.GridEX.GridEX();
            this.chkDefault = new Janus.Windows.EditControls.UICheckBox();
            this.StatusBar = new Janus.Windows.UI.StatusBar.UIStatusBar();
            this.cmdCauHinh = new Janus.Windows.EditControls.UIButton();
            this.tabKeDonThuoc = new Janus.Windows.UI.Tab.UITab();
            this.uiTabPage1 = new Janus.Windows.UI.Tab.UITabPage();
            this.panel2 = new System.Windows.Forms.Panel();
            this.pnlKedon = new System.Windows.Forms.Panel();
            this.txtSoluong = new MaskedTextBox.MaskedTextBox();
            this.chkThemmoilientuc = new Janus.Windows.EditControls.UICheckBox();
            this.chkAutoPaymentAfterSave = new Janus.Windows.EditControls.UICheckBox();
            this.label33 = new System.Windows.Forms.Label();
            this.lblMsg = new System.Windows.Forms.Label();
            this.chkTutuc = new Janus.Windows.EditControls.UICheckBox();
            this.label10 = new System.Windows.Forms.Label();
            this.txtChiDanThem = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label9 = new System.Windows.Forms.Label();
            this.label15 = new System.Windows.Forms.Label();
            this.label21 = new System.Windows.Forms.Label();
            this.dtExpire_Date = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.txtDrug_Name = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label31 = new System.Windows.Forms.Label();
            this.txtDrugID = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtTonKho = new Janus.Windows.GridEX.EditControls.EditBox();
            this.cboStock = new System.Windows.Forms.ComboBox();
            this.label17 = new System.Windows.Forms.Label();
            this.txtThanhtien = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label13 = new System.Windows.Forms.Label();
            this.txtPrice = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label11 = new System.Windows.Forms.Label();
            this.vbLine3 = new VNS.UCs.VBLine();
            this.pnlCusInfor = new System.Windows.Forms.Panel();
            this.txtBacsi = new VNS.HIS.UCs.AutoCompleteTextbox();
            this.txtPhone = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label34 = new System.Windows.Forms.Label();
            this.cboPatientSex = new Janus.Windows.EditControls.UIComboBox();
            this.pnlHide = new System.Windows.Forms.Panel();
            this.label2 = new System.Windows.Forms.Label();
            this.label24 = new System.Windows.Forms.Label();
            this.txtCachDung = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.txtBietduoc = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtYearBirth = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtdiachiBhyt = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtdrugtypeCode = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtLoiDanBS = new Janus.Windows.GridEX.EditControls.EditBox();
            this.grd_ICD = new Janus.Windows.GridEX.GridEX();
            this.txtPtramBHYT = new Janus.Windows.GridEX.EditControls.EditBox();
            this.vbLine4 = new VNS.UCs.VBLine();
            this.label23 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.txtKhamLai = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtChiDanDungThuoc = new Janus.Windows.GridEX.EditControls.EditBox();
            this.cmdSearchBenhChinh = new Janus.Windows.EditControls.UIButton();
            this.cmdDonThuocDaKe = new Janus.Windows.EditControls.UIButton();
            this.chkNgayTaiKham = new Janus.Windows.EditControls.UICheckBox();
            this.label1 = new System.Windows.Forms.Label();
            this.cmdSearchBenhPhu = new Janus.Windows.EditControls.UIButton();
            this.txtMaLankham = new Janus.Windows.GridEX.EditControls.EditBox();
            this.dtNgayKhamLai = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.cmdMauDonThuoc = new Janus.Windows.EditControls.UIButton();
            this.cmdUpdaeChiDan = new Janus.Windows.EditControls.UIButton();
            this.txtChanDoan = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.txtObjectName = new Janus.Windows.GridEX.EditControls.EditBox();
            this.cmdLuuSotayBS = new Janus.Windows.EditControls.UIButton();
            this.label46 = new System.Windows.Forms.Label();
            this.txtSoDT = new System.Windows.Forms.TextBox();
            this.txtSolan = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtTenBenhPhu = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label18 = new System.Windows.Forms.Label();
            this.label26 = new System.Windows.Forms.Label();
            this.txtMaBenhphu = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtMaBenhChinh = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label16 = new System.Windows.Forms.Label();
            this.txtSoBHYT = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label32 = new System.Windows.Forms.Label();
            this.txtTenBenhChinh = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtSoLuongDung = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label3 = new System.Windows.Forms.Label();
            this.label38 = new System.Windows.Forms.Label();
            this.txtDonViDung = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label14 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.label12 = new System.Windows.Forms.Label();
            this.vbLine1 = new VNS.UCs.VBLine();
            this.label28 = new System.Windows.Forms.Label();
            this.barcode = new Mabry.Windows.Forms.Barcode.Barcode();
            this.label27 = new System.Windows.Forms.Label();
            this.label20 = new System.Windows.Forms.Label();
            this.txtTEN_BN = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label6 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.txtPres_ID = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtDiachi = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label25 = new System.Windows.Forms.Label();
            this.dtpCreatedDate = new System.Windows.Forms.DateTimePicker();
            this.label29 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.txtMaBN = new Janus.Windows.GridEX.EditControls.EditBox();
            this.panel4 = new System.Windows.Forms.Panel();
            this.dtNgayIn = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label30 = new System.Windows.Forms.Label();
            this.uiTabPage2 = new Janus.Windows.UI.Tab.UITabPage();
            this.pnlPrint = new System.Windows.Forms.Panel();
            this.chkAskbeforeDeletedrug = new Janus.Windows.EditControls.UICheckBox();
            this.vbLine5 = new VNS.UCs.VBLine();
            this.cboLaserPrinters = new System.Windows.Forms.ComboBox();
            this.chkSaveAndPrint = new Janus.Windows.EditControls.UICheckBox();
            this.cboPrintPreview = new Janus.Windows.EditControls.UIComboBox();
            this.label22 = new System.Windows.Forms.Label();
            this.cboA4 = new Janus.Windows.EditControls.UIComboBox();
            this.label19 = new System.Windows.Forms.Label();
            this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
            this.chkBoquachidanthem = new Janus.Windows.EditControls.UICheckBox();
            this.contextMenuStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdPresDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tabKeDonThuoc)).BeginInit();
            this.tabKeDonThuoc.SuspendLayout();
            this.uiTabPage1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.pnlKedon.SuspendLayout();
            this.pnlCusInfor.SuspendLayout();
            this.pnlHide.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grd_ICD)).BeginInit();
            this.panel4.SuspendLayout();
            this.uiTabPage2.SuspendLayout();
            this.pnlPrint.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
            this.SuspendLayout();
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuDelele});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(129, 26);
            // 
            // mnuDelele
            // 
            this.mnuDelele.Name = "mnuDelele";
            this.mnuDelele.Size = new System.Drawing.Size(128, 22);
            this.mnuDelele.Text = "Xóa thuốc";
            // 
            // toolTip1
            // 
            this.toolTip1.IsBalloon = true;
            // 
            // cmdDelete
            // 
            this.cmdDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdDelete.Image = ((System.Drawing.Image)(resources.GetObject("cmdDelete.Image")));
            this.cmdDelete.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdDelete.Location = new System.Drawing.Point(673, 6);
            this.cmdDelete.Name = "cmdDelete";
            this.cmdDelete.Size = new System.Drawing.Size(104, 35);
            this.cmdDelete.TabIndex = 27;
            this.cmdDelete.Text = "Xóa";
            this.toolTip1.SetToolTip(this.cmdDelete, "Xóa các chi tiết được chọn");
            // 
            // cmdPrintPres
            // 
            this.cmdPrintPres.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdPrintPres.Image = ((System.Drawing.Image)(resources.GetObject("cmdPrintPres.Image")));
            this.cmdPrintPres.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdPrintPres.Location = new System.Drawing.Point(563, 6);
            this.cmdPrintPres.Name = "cmdPrintPres";
            this.cmdPrintPres.Size = new System.Drawing.Size(104, 35);
            this.cmdPrintPres.TabIndex = 26;
            this.cmdPrintPres.Text = "Lưu và In";
            this.toolTip1.SetToolTip(this.cmdPrintPres, "Nhấn vào đây để lưu và in đơn thuốc(Ctrl+P)");
            this.cmdPrintPres.ToolTipText = "In thông tin đơn thuốc";
            this.cmdPrintPres.Visible = false;
            // 
            // cmdSavePres
            // 
            this.cmdSavePres.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdSavePres.Image = ((System.Drawing.Image)(resources.GetObject("cmdSavePres.Image")));
            this.cmdSavePres.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdSavePres.Location = new System.Drawing.Point(783, 6);
            this.cmdSavePres.Name = "cmdSavePres";
            this.cmdSavePres.Size = new System.Drawing.Size(104, 35);
            this.cmdSavePres.TabIndex = 25;
            this.cmdSavePres.Text = "Ghi(Ctrl+S)";
            this.toolTip1.SetToolTip(this.cmdSavePres, "Nhấn vào đây để lưu đơn thuốc(Ctrl+S)");
            // 
            // cmdExit
            // 
            this.cmdExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            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(891, 6);
            this.cmdExit.Name = "cmdExit";
            this.cmdExit.Size = new System.Drawing.Size(104, 35);
            this.cmdExit.TabIndex = 28;
            this.cmdExit.Text = "Thoát(Esc)";
            this.toolTip1.SetToolTip(this.cmdExit, "Nhấn vào đây để thoát khỏi chức năng");
            // 
            // chkHienthithuoctheonhom
            // 
            this.chkHienthithuoctheonhom.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkHienthithuoctheonhom.Location = new System.Drawing.Point(92, 134);
            this.chkHienthithuoctheonhom.Name = "chkHienthithuoctheonhom";
            this.chkHienthithuoctheonhom.Size = new System.Drawing.Size(176, 23);
            this.chkHienthithuoctheonhom.TabIndex = 17;
            this.chkHienthithuoctheonhom.TabStop = false;
            this.chkHienthithuoctheonhom.Text = "Hiển thị thuốc theo nhóm?";
            this.toolTip1.SetToolTip(this.chkHienthithuoctheonhom, "Nhấn vào đây để hiển thị đơn thuốc theo nhóm thuốc");
            // 
            // txtdrug
            // 
            this.txtdrug._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtdrug._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtdrug.AllowedSelectPrice = false;
            this.txtdrug.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtdrug.AutoCompleteList")));
            this.txtdrug.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtdrug.CaseSensitive = false;
            this.txtdrug.CompareNoID = true;
            this.txtdrug.DefaultCode = "-1";
            this.txtdrug.DefaultID = "-1";
            this.txtdrug.Drug_ID = null;
            this.txtdrug.ExtraWidth = 300;
            this.txtdrug.ExtraWidth_Pre = 0;
            this.txtdrug.FillValueAfterSelect = true;
            this.txtdrug.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtdrug.GridView = false;
            this.txtdrug.Location = new System.Drawing.Point(92, 56);
            this.txtdrug.MaxHeight = 300;
            this.txtdrug.MinTypedCharacters = 2;
            this.txtdrug.MyCode = "-1";
            this.txtdrug.MyID = "-1";
            this.txtdrug.Name = "txtdrug";
            this.txtdrug.RaiseEvent = false;
            this.txtdrug.RaiseEventEnter = false;
            this.txtdrug.RaiseEventEnterWhenEmpty = false;
            this.txtdrug.SelectedIndex = -1;
            this.txtdrug.Size = new System.Drawing.Size(337, 21);
            this.txtdrug.splitChar = '@';
            this.txtdrug.splitCharIDAndCode = '#';
            this.txtdrug.TabIndex = 7;
            this.toolTip1.SetToolTip(this.txtdrug, "Gõ bất kỳ thông tin gì liên quan đến thuốc để tìm thuốc cần kê đơn");
            this.txtdrug.txtMyCode = null;
            this.txtdrug.txtMyCode_Edit = null;
            this.txtdrug.txtMyID = null;
            this.txtdrug.txtMyID_Edit = null;
            this.txtdrug.txtMyName = null;
            this.txtdrug.txtMyName_Edit = null;
            this.txtdrug.txtNext = null;
            // 
            // cmdAddDetail
            // 
            this.cmdAddDetail.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdAddDetail.Image = ((System.Drawing.Image)(resources.GetObject("cmdAddDetail.Image")));
            this.cmdAddDetail.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdAddDetail.Location = new System.Drawing.Point(727, 81);
            this.cmdAddDetail.Name = "cmdAddDetail";
            this.cmdAddDetail.Size = new System.Drawing.Size(272, 48);
            this.cmdAddDetail.TabIndex = 16;
            this.cmdAddDetail.Text = "Chấp nhận";
            this.toolTip1.SetToolTip(this.cmdAddDetail, "Nhấn vào đây để thêm thuốc đang chọn vào chi tiết đơn thuốc(Ctrl+A)");
            // 
            // grdPresDetail
            // 
            this.grdPresDetail.ContextMenuStrip = this.contextMenuStrip1;
            grdPresDetail_DesignTimeLayout.LayoutString = resources.GetString("grdPresDetail_DesignTimeLayout.LayoutString");
            this.grdPresDetail.DesignTimeLayout = grdPresDetail_DesignTimeLayout;
            this.grdPresDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdPresDetail.EnterKeyBehavior = Janus.Windows.GridEX.EnterKeyBehavior.None;
            this.grdPresDetail.Font = new System.Drawing.Font("Arial", 9F);
            this.grdPresDetail.GroupByBoxVisible = false;
            this.grdPresDetail.GroupRowFormatStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
            this.grdPresDetail.GroupTotalRowFormatStyle.BackColor = System.Drawing.Color.White;
            this.grdPresDetail.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdPresDetail.Location = new System.Drawing.Point(0, 279);
            this.grdPresDetail.Name = "grdPresDetail";
            this.grdPresDetail.RowFormatStyle.Font = new System.Drawing.Font("Arial", 9F);
            this.grdPresDetail.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdPresDetail.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdPresDetail.Size = new System.Drawing.Size(1004, 356);
            this.grdPresDetail.TabIndex = 20;
            this.grdPresDetail.TabStop = false;
            this.toolTip1.SetToolTip(this.grdPresDetail, "Chi tiết đơn thuốc");
            this.grdPresDetail.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdPresDetail.TotalRowFormatStyle.BackColor = System.Drawing.Color.White;
            this.grdPresDetail.TotalRowFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
            this.grdPresDetail.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdPresDetail.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdPresDetail.UpdateMode = Janus.Windows.GridEX.UpdateMode.CellUpdate;
            this.grdPresDetail.UseGroupRowSelector = true;
            this.grdPresDetail.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // chkDefault
            // 
            this.chkDefault.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkDefault.ForeColor = System.Drawing.Color.Navy;
            this.chkDefault.Location = new System.Drawing.Point(912, 81);
            this.chkDefault.Name = "chkDefault";
            this.chkDefault.Size = new System.Drawing.Size(80, 23);
            this.chkDefault.TabIndex = 565;
            this.chkDefault.Text = "Mặc định";
            this.toolTip1.SetToolTip(this.chkDefault, "Chọn mụ này nếu muốn biến Khách hàng này thành Khách hàng vãng lai");
            // 
            // StatusBar
            // 
            this.StatusBar.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.StatusBar.Location = new System.Drawing.Point(0, 707);
            this.StatusBar.Name = "StatusBar";
            uiStatusBarPanel1.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel1.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel1.Key = "";
            uiStatusBarPanel1.ProgressBarValue = 0;
            uiStatusBarPanel1.Text = "Tổng :";
            uiStatusBarPanel1.Width = 52;
            uiStatusBarPanel2.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel2.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel2.Key = "lblTong";
            uiStatusBarPanel2.ProgressBarValue = 0;
            uiStatusBarPanel2.Text = "0";
            uiStatusBarPanel2.Width = 23;
            uiStatusBarPanel3.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel3.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel3.Key = "";
            uiStatusBarPanel3.ProgressBarValue = 0;
            uiStatusBarPanel3.Text = "Ctrl+A: Thêm thuốc";
            uiStatusBarPanel3.Width = 129;
            uiStatusBarPanel4.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel4.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel4.Key = "";
            uiStatusBarPanel4.ProgressBarValue = 0;
            uiStatusBarPanel4.Text = "Ctrl+S: Lưu đơn thuốc";
            uiStatusBarPanel4.Width = 147;
            uiStatusBarPanel5.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel5.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel5.Key = "";
            uiStatusBarPanel5.ProgressBarValue = 0;
            uiStatusBarPanel5.Text = "F4: In đơn thuốc";
            uiStatusBarPanel5.Width = 112;
            uiStatusBarPanel6.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel6.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel6.Key = "";
            uiStatusBarPanel6.ProgressBarValue = 0;
            uiStatusBarPanel6.Text = "F2: Quay lại ô tìm kiếm thuốc";
            uiStatusBarPanel6.Width = 188;
            uiStatusBarPanel7.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            uiStatusBarPanel7.BorderColor = System.Drawing.Color.Empty;
            uiStatusBarPanel7.Key = "";
            uiStatusBarPanel7.ProgressBarValue = 0;
            uiStatusBarPanel7.Text = "Esc: Thoát Form";
            uiStatusBarPanel7.Width = 113;
            this.StatusBar.Panels.AddRange(new Janus.Windows.UI.StatusBar.UIStatusBarPanel[] {
            uiStatusBarPanel1,
            uiStatusBarPanel2,
            uiStatusBarPanel3,
            uiStatusBarPanel4,
            uiStatusBarPanel5,
            uiStatusBarPanel6,
            uiStatusBarPanel7});
            this.StatusBar.Size = new System.Drawing.Size(1008, 23);
            this.StatusBar.TabIndex = 519;
            this.StatusBar.TabStop = false;
            this.StatusBar.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
            // 
            // cmdCauHinh
            // 
            this.cmdCauHinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdCauHinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdCauHinh.Image")));
            this.cmdCauHinh.Location = new System.Drawing.Point(967, 707);
            this.cmdCauHinh.Name = "cmdCauHinh";
            this.cmdCauHinh.Size = new System.Drawing.Size(41, 23);
            this.cmdCauHinh.TabIndex = 520;
            this.cmdCauHinh.TabStop = false;
            // 
            // tabKeDonThuoc
            // 
            this.tabKeDonThuoc.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabKeDonThuoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tabKeDonThuoc.Location = new System.Drawing.Point(0, 0);
            this.tabKeDonThuoc.Name = "tabKeDonThuoc";
            this.tabKeDonThuoc.Size = new System.Drawing.Size(1008, 707);
            this.tabKeDonThuoc.TabIndex = 521;
            this.tabKeDonThuoc.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
            this.uiTabPage1,
            this.uiTabPage2});
            this.tabKeDonThuoc.TabStop = false;
            // 
            // uiTabPage1
            // 
            this.uiTabPage1.Controls.Add(this.panel2);
            this.uiTabPage1.Location = new System.Drawing.Point(1, 23);
            this.uiTabPage1.Name = "uiTabPage1";
            this.uiTabPage1.Size = new System.Drawing.Size(1004, 681);
            this.uiTabPage1.TabStop = true;
            this.uiTabPage1.Text = "Kê đơn thuốc cho bệnh nhân";
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.grdPresDetail);
            this.panel2.Controls.Add(this.pnlKedon);
            this.panel2.Controls.Add(this.pnlCusInfor);
            this.panel2.Controls.Add(this.panel4);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(0, 0);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(1004, 681);
            this.panel2.TabIndex = 5;
            // 
            // pnlKedon
            // 
            this.pnlKedon.Controls.Add(this.chkBoquachidanthem);
            this.pnlKedon.Controls.Add(this.txtSoluong);
            this.pnlKedon.Controls.Add(this.chkAutoPaymentAfterSave);
            this.pnlKedon.Controls.Add(this.label33);
            this.pnlKedon.Controls.Add(this.chkHienthithuoctheonhom);
            this.pnlKedon.Controls.Add(this.lblMsg);
            this.pnlKedon.Controls.Add(this.chkTutuc);
            this.pnlKedon.Controls.Add(this.label10);
            this.pnlKedon.Controls.Add(this.txtChiDanThem);
            this.pnlKedon.Controls.Add(this.label9);
            this.pnlKedon.Controls.Add(this.txtdrug);
            this.pnlKedon.Controls.Add(this.label15);
            this.pnlKedon.Controls.Add(this.label21);
            this.pnlKedon.Controls.Add(this.dtExpire_Date);
            this.pnlKedon.Controls.Add(this.txtDrug_Name);
            this.pnlKedon.Controls.Add(this.cmdAddDetail);
            this.pnlKedon.Controls.Add(this.label31);
            this.pnlKedon.Controls.Add(this.txtDrugID);
            this.pnlKedon.Controls.Add(this.txtTonKho);
            this.pnlKedon.Controls.Add(this.cboStock);
            this.pnlKedon.Controls.Add(this.label17);
            this.pnlKedon.Controls.Add(this.txtThanhtien);
            this.pnlKedon.Controls.Add(this.label13);
            this.pnlKedon.Controls.Add(this.txtPrice);
            this.pnlKedon.Controls.Add(this.label11);
            this.pnlKedon.Controls.Add(this.vbLine3);
            this.pnlKedon.Dock = System.Windows.Forms.DockStyle.Top;
            this.pnlKedon.Location = new System.Drawing.Point(0, 118);
            this.pnlKedon.Name = "pnlKedon";
            this.pnlKedon.Size = new System.Drawing.Size(1004, 161);
            this.pnlKedon.TabIndex = 551;
            this.pnlKedon.TabStop = true;
            // 
            // 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(92, 81);
            this.txtSoluong.Masked = MaskedTextBox.Mask.Digit;
            this.txtSoluong.Name = "txtSoluong";
            this.txtSoluong.Size = new System.Drawing.Size(139, 21);
            this.txtSoluong.TabIndex = 12;
            this.txtSoluong.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // chkThemmoilientuc
            // 
            this.chkThemmoilientuc.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkThemmoilientuc.Location = new System.Drawing.Point(11, 12);
            this.chkThemmoilientuc.Name = "chkThemmoilientuc";
            this.chkThemmoilientuc.Size = new System.Drawing.Size(153, 23);
            this.chkThemmoilientuc.TabIndex = 547;
            this.chkThemmoilientuc.TabStop = false;
            this.chkThemmoilientuc.Text = "Thêm mới liên tục";
            // 
            // chkAutoPaymentAfterSave
            // 
            this.chkAutoPaymentAfterSave.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkAutoPaymentAfterSave.Location = new System.Drawing.Point(274, 132);
            this.chkAutoPaymentAfterSave.Name = "chkAutoPaymentAfterSave";
            this.chkAutoPaymentAfterSave.Size = new System.Drawing.Size(299, 23);
            this.chkAutoPaymentAfterSave.TabIndex = 548;
            this.chkAutoPaymentAfterSave.TabStop = false;
            this.chkAutoPaymentAfterSave.Text = "Tự động thanh toán ngay sau khi ghi đơn thuốc?";
            // 
            // label33
            // 
            this.label33.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label33.ForeColor = System.Drawing.Color.Black;
            this.label33.Location = new System.Drawing.Point(247, 79);
            this.label33.Name = "label33";
            this.label33.Size = new System.Drawing.Size(88, 23);
            this.label33.TabIndex = 555;
            this.label33.Text = "Đơn giá:";
            this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // lblMsg
            // 
            this.lblMsg.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblMsg.ForeColor = System.Drawing.Color.Red;
            this.lblMsg.Location = new System.Drawing.Point(435, 27);
            this.lblMsg.Name = "lblMsg";
            this.lblMsg.Size = new System.Drawing.Size(569, 23);
            this.lblMsg.TabIndex = 554;
            this.lblMsg.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // chkTutuc
            // 
            this.chkTutuc.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkTutuc.ForeColor = System.Drawing.Color.Navy;
            this.chkTutuc.Location = new System.Drawing.Point(973, 25);
            this.chkTutuc.Name = "chkTutuc";
            this.chkTutuc.Size = new System.Drawing.Size(20, 23);
            this.chkTutuc.TabIndex = 553;
            this.chkTutuc.Text = "Thuốc tự túc";
            this.chkTutuc.Visible = false;
            // 
            // label10
            // 
            this.label10.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label10.ForeColor = System.Drawing.Color.Black;
            this.label10.Location = new System.Drawing.Point(6, 106);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(84, 23);
            this.label10.TabIndex = 549;
            this.label10.Text = "Chỉ dẫn thêm:";
            this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtChiDanThem
            // 
            this.txtChiDanThem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtChiDanThem.Location = new System.Drawing.Point(92, 106);
            this.txtChiDanThem.Name = "txtChiDanThem";
            this.txtChiDanThem.Size = new System.Drawing.Size(549, 21);
            this.txtChiDanThem.TabIndex = 15;
            this.txtChiDanThem.TextAlignment = Janus.Windows.GridEX.TextAlignment.Near;
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label9.ForeColor = System.Drawing.Color.Black;
            this.label9.Location = new System.Drawing.Point(432, 59);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(82, 15);
            this.label9.TabIndex = 547;
            this.label9.Text = "Ngày hết hạn:";
            // 
            // label15
            // 
            this.label15.BackColor = System.Drawing.Color.Transparent;
            this.label15.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label15.ForeColor = System.Drawing.Color.Black;
            this.label15.Location = new System.Drawing.Point(6, 27);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(84, 23);
            this.label15.TabIndex = 539;
            this.label15.Text = "Kho thuốc";
            this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label21
            // 
            this.label21.AutoSize = true;
            this.label21.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label21.ForeColor = System.Drawing.Color.Black;
            this.label21.Location = new System.Drawing.Point(501, 238);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(36, 15);
            this.label21.TabIndex = 521;
            this.label21.Text = "(Vnđ)";
            this.label21.Visible = false;
            // 
            // dtExpire_Date
            // 
            this.dtExpire_Date.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.dtExpire_Date.DropDownCalendar.Name = "";
            this.dtExpire_Date.Enabled = false;
            this.dtExpire_Date.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtExpire_Date.Location = new System.Drawing.Point(517, 56);
            this.dtExpire_Date.Name = "dtExpire_Date";
            this.dtExpire_Date.ShowDropDown = false;
            this.dtExpire_Date.Size = new System.Drawing.Size(124, 21);
            this.dtExpire_Date.TabIndex = 8;
            this.dtExpire_Date.TabStop = false;
            this.dtExpire_Date.Value = new System.DateTime(2013, 11, 18, 0, 0, 0, 0);
            // 
            // txtDrug_Name
            // 
            this.txtDrug_Name.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDrug_Name.Location = new System.Drawing.Point(913, 54);
            this.txtDrug_Name.Name = "txtDrug_Name";
            this.txtDrug_Name.ReadOnly = true;
            this.txtDrug_Name.Size = new System.Drawing.Size(87, 21);
            this.txtDrug_Name.TabIndex = 11;
            this.txtDrug_Name.TabStop = false;
            // 
            // label31
            // 
            this.label31.AutoSize = true;
            this.label31.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label31.ForeColor = System.Drawing.Color.Black;
            this.label31.Location = new System.Drawing.Point(645, 59);
            this.label31.Name = "label31";
            this.label31.Size = new System.Drawing.Size(76, 15);
            this.label31.TabIndex = 542;
            this.label31.Text = "Còn tồn kho:";
            // 
            // txtDrugID
            // 
            this.txtDrugID.ButtonFont = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
            this.txtDrugID.Enabled = false;
            this.txtDrugID.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDrugID.Location = new System.Drawing.Point(819, 55);
            this.txtDrugID.Name = "txtDrugID";
            this.txtDrugID.Size = new System.Drawing.Size(88, 21);
            this.txtDrugID.TabIndex = 10;
            this.txtDrugID.TabStop = false;
            // 
            // txtTonKho
            // 
            this.txtTonKho.BackColor = System.Drawing.Color.SteelBlue;
            this.txtTonKho.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTonKho.ForeColor = System.Drawing.Color.White;
            this.txtTonKho.Location = new System.Drawing.Point(727, 55);
            this.txtTonKho.Name = "txtTonKho";
            this.txtTonKho.Size = new System.Drawing.Size(87, 21);
            this.txtTonKho.TabIndex = 9;
            this.txtTonKho.TabStop = false;
            this.txtTonKho.Text = "1234";
            this.txtTonKho.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // cboStock
            // 
            this.cboStock.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboStock.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboStock.FormattingEnabled = true;
            this.cboStock.Location = new System.Drawing.Point(92, 27);
            this.cboStock.Name = "cboStock";
            this.cboStock.Size = new System.Drawing.Size(337, 23);
            this.cboStock.TabIndex = 6;
            // 
            // label17
            // 
            this.label17.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label17.ForeColor = System.Drawing.Color.Black;
            this.label17.Location = new System.Drawing.Point(6, 55);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(84, 23);
            this.label17.TabIndex = 8;
            this.label17.Text = "Chọn thuốc";
            this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtThanhtien
            // 
            this.txtThanhtien.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtThanhtien.Location = new System.Drawing.Point(517, 81);
            this.txtThanhtien.Name = "txtThanhtien";
            this.txtThanhtien.Size = new System.Drawing.Size(124, 21);
            this.txtThanhtien.TabIndex = 14;
            this.txtThanhtien.TabStop = false;
            this.txtThanhtien.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            // 
            // label13
            // 
            this.label13.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label13.ForeColor = System.Drawing.Color.Black;
            this.label13.Location = new System.Drawing.Point(436, 79);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(78, 23);
            this.label13.TabIndex = 74;
            this.label13.Text = "Thành tiền";
            this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // txtPrice
            // 
            this.txtPrice.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPrice.Location = new System.Drawing.Point(341, 81);
            this.txtPrice.Name = "txtPrice";
            this.txtPrice.Size = new System.Drawing.Size(88, 21);
            this.txtPrice.TabIndex = 13;
            this.txtPrice.TabStop = false;
            this.txtPrice.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
            // 
            // label11
            // 
            this.label11.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label11.ForeColor = System.Drawing.Color.Black;
            this.label11.Location = new System.Drawing.Point(6, 79);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(84, 23);
            this.label11.TabIndex = 70;
            this.label11.Text = "Số lượng";
            this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // vbLine3
            // 
            this.vbLine3._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine3.BackColor = System.Drawing.Color.Transparent;
            this.vbLine3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine3.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine3.Location = new System.Drawing.Point(8, 4);
            this.vbLine3.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine3.Name = "vbLine3";
            this.vbLine3.Size = new System.Drawing.Size(999, 22);
            this.vbLine3.TabIndex = 545;
            this.vbLine3.TabStop = false;
            this.vbLine3.YourText = "Kê đơn thuốc";
            // 
            // pnlCusInfor
            // 
            this.pnlCusInfor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.pnlCusInfor.Controls.Add(this.txtBacsi);
            this.pnlCusInfor.Controls.Add(this.chkDefault);
            this.pnlCusInfor.Controls.Add(this.txtPhone);
            this.pnlCusInfor.Controls.Add(this.label34);
            this.pnlCusInfor.Controls.Add(this.cboPatientSex);
            this.pnlCusInfor.Controls.Add(this.pnlHide);
            this.pnlCusInfor.Controls.Add(this.vbLine1);
            this.pnlCusInfor.Controls.Add(this.label28);
            this.pnlCusInfor.Controls.Add(this.barcode);
            this.pnlCusInfor.Controls.Add(this.label27);
            this.pnlCusInfor.Controls.Add(this.label20);
            this.pnlCusInfor.Controls.Add(this.txtTEN_BN);
            this.pnlCusInfor.Controls.Add(this.label6);
            this.pnlCusInfor.Controls.Add(this.label5);
            this.pnlCusInfor.Controls.Add(this.txtPres_ID);
            this.pnlCusInfor.Controls.Add(this.txtDiachi);
            this.pnlCusInfor.Controls.Add(this.label25);
            this.pnlCusInfor.Controls.Add(this.dtpCreatedDate);
            this.pnlCusInfor.Controls.Add(this.label29);
            this.pnlCusInfor.Controls.Add(this.label4);
            this.pnlCusInfor.Controls.Add(this.txtMaBN);
            this.pnlCusInfor.Dock = System.Windows.Forms.DockStyle.Top;
            this.pnlCusInfor.Location = new System.Drawing.Point(0, 0);
            this.pnlCusInfor.Name = "pnlCusInfor";
            this.pnlCusInfor.Size = new System.Drawing.Size(1004, 118);
            this.pnlCusInfor.TabIndex = 549;
            // 
            // txtBacsi
            // 
            this.txtBacsi._backcolor = System.Drawing.Color.WhiteSmoke;
            this.txtBacsi._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtBacsi._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.txtBacsi.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtBacsi.AutoCompleteList")));
            this.txtBacsi.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtBacsi.CaseSensitive = false;
            this.txtBacsi.CompareNoID = true;
            this.txtBacsi.DefaultCode = "-1";
            this.txtBacsi.DefaultID = "-1";
            this.txtBacsi.Drug_ID = null;
            this.txtBacsi.ExtraWidth = 0;
            this.txtBacsi.FillValueAfterSelect = false;
            this.txtBacsi.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtBacsi.Location = new System.Drawing.Point(516, 82);
            this.txtBacsi.MaxHeight = 289;
            this.txtBacsi.MinTypedCharacters = 2;
            this.txtBacsi.MyCode = "-1";
            this.txtBacsi.MyID = "-1";
            this.txtBacsi.MyText = "";
            this.txtBacsi.Name = "txtBacsi";
            this.txtBacsi.RaiseEvent = true;
            this.txtBacsi.RaiseEventEnter = true;
            this.txtBacsi.RaiseEventEnterWhenEmpty = true;
            this.txtBacsi.SelectedIndex = -1;
            this.txtBacsi.Size = new System.Drawing.Size(390, 21);
            this.txtBacsi.splitChar = '@';
            this.txtBacsi.splitCharIDAndCode = '#';
            this.txtBacsi.TabIndex = 5;
            this.txtBacsi.TakeCode = false;
            this.txtBacsi.txtMyCode = null;
            this.txtBacsi.txtMyCode_Edit = null;
            this.txtBacsi.txtMyID = null;
            this.txtBacsi.txtMyID_Edit = null;
            this.txtBacsi.txtMyName = null;
            this.txtBacsi.txtMyName_Edit = null;
            this.txtBacsi.txtNext = null;
            // 
            // txtPhone
            // 
            this.txtPhone.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPhone.Location = new System.Drawing.Point(309, 55);
            this.txtPhone.Name = "txtPhone";
            this.txtPhone.Size = new System.Drawing.Size(111, 21);
            this.txtPhone.TabIndex = 2;
            // 
            // label34
            // 
            this.label34.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label34.Location = new System.Drawing.Point(197, 59);
            this.label34.Name = "label34";
            this.label34.Size = new System.Drawing.Size(106, 15);
            this.label34.TabIndex = 564;
            this.label34.Text = "Số điện thoại";
            this.label34.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cboPatientSex
            // 
            this.cboPatientSex.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboPatientSex.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "Nam";
            uiComboBoxItem1.Value = 0;
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "Nữ";
            uiComboBoxItem2.Value = 1;
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "Khác";
            uiComboBoxItem3.Value = 2;
            this.cboPatientSex.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2,
            uiComboBoxItem3});
            this.cboPatientSex.Location = new System.Drawing.Point(107, 56);
            this.cboPatientSex.Name = "cboPatientSex";
            this.cboPatientSex.Size = new System.Drawing.Size(84, 21);
            this.cboPatientSex.TabIndex = 1;
            this.cboPatientSex.Text = "Giới tính";
            // 
            // pnlHide
            // 
            this.pnlHide.Controls.Add(this.label2);
            this.pnlHide.Controls.Add(this.label24);
            this.pnlHide.Controls.Add(this.txtCachDung);
            this.pnlHide.Controls.Add(this.txtBietduoc);
            this.pnlHide.Controls.Add(this.txtYearBirth);
            this.pnlHide.Controls.Add(this.txtdiachiBhyt);
            this.pnlHide.Controls.Add(this.txtdrugtypeCode);
            this.pnlHide.Controls.Add(this.txtLoiDanBS);
            this.pnlHide.Controls.Add(this.grd_ICD);
            this.pnlHide.Controls.Add(this.txtPtramBHYT);
            this.pnlHide.Controls.Add(this.vbLine4);
            this.pnlHide.Controls.Add(this.label23);
            this.pnlHide.Controls.Add(this.label7);
            this.pnlHide.Controls.Add(this.txtKhamLai);
            this.pnlHide.Controls.Add(this.txtChiDanDungThuoc);
            this.pnlHide.Controls.Add(this.cmdSearchBenhChinh);
            this.pnlHide.Controls.Add(this.cmdDonThuocDaKe);
            this.pnlHide.Controls.Add(this.chkNgayTaiKham);
            this.pnlHide.Controls.Add(this.label1);
            this.pnlHide.Controls.Add(this.cmdSearchBenhPhu);
            this.pnlHide.Controls.Add(this.txtMaLankham);
            this.pnlHide.Controls.Add(this.dtNgayKhamLai);
            this.pnlHide.Controls.Add(this.cmdMauDonThuoc);
            this.pnlHide.Controls.Add(this.cmdUpdaeChiDan);
            this.pnlHide.Controls.Add(this.txtChanDoan);
            this.pnlHide.Controls.Add(this.txtObjectName);
            this.pnlHide.Controls.Add(this.cmdLuuSotayBS);
            this.pnlHide.Controls.Add(this.label46);
            this.pnlHide.Controls.Add(this.txtSoDT);
            this.pnlHide.Controls.Add(this.txtSolan);
            this.pnlHide.Controls.Add(this.txtTenBenhPhu);
            this.pnlHide.Controls.Add(this.label18);
            this.pnlHide.Controls.Add(this.label26);
            this.pnlHide.Controls.Add(this.txtMaBenhphu);
            this.pnlHide.Controls.Add(this.txtMaBenhChinh);
            this.pnlHide.Controls.Add(this.label16);
            this.pnlHide.Controls.Add(this.txtSoBHYT);
            this.pnlHide.Controls.Add(this.label32);
            this.pnlHide.Controls.Add(this.txtTenBenhChinh);
            this.pnlHide.Controls.Add(this.txtSoLuongDung);
            this.pnlHide.Controls.Add(this.label3);
            this.pnlHide.Controls.Add(this.label38);
            this.pnlHide.Controls.Add(this.txtDonViDung);
            this.pnlHide.Controls.Add(this.label14);
            this.pnlHide.Controls.Add(this.label8);
            this.pnlHide.Controls.Add(this.label12);
            this.pnlHide.Location = new System.Drawing.Point(984, 4);
            this.pnlHide.Name = "pnlHide";
            this.pnlHide.Size = new System.Drawing.Size(10, 10);
            this.pnlHide.TabIndex = 562;
            this.pnlHide.Visible = false;
            // 
            // 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.Black;
            this.label2.Location = new System.Drawing.Point(3, 14);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(95, 21);
            this.label2.TabIndex = 48;
            this.label2.Text = "&Lời dặn BS :";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label24
            // 
            this.label24.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label24.Location = new System.Drawing.Point(420, 17);
            this.label24.Name = "label24";
            this.label24.Size = new System.Drawing.Size(95, 15);
            this.label24.TabIndex = 547;
            this.label24.Text = "Địa chỉ BHYT";
            this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtCachDung
            // 
            this.txtCachDung._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.txtCachDung._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtCachDung.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtCachDung.AutoCompleteList")));
            this.txtCachDung.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtCachDung.CaseSensitive = false;
            this.txtCachDung.CompareNoID = true;
            this.txtCachDung.DefaultCode = "-1";
            this.txtCachDung.DefaultID = "-1";
            this.txtCachDung.Drug_ID = null;
            this.txtCachDung.ExtraWidth = 0;
            this.txtCachDung.FillValueAfterSelect = false;
            this.txtCachDung.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtCachDung.LOAI_DANHMUC = "CDDT";
            this.txtCachDung.Location = new System.Drawing.Point(97, 141);
            this.txtCachDung.MaxHeight = -1;
            this.txtCachDung.MinTypedCharacters = 2;
            this.txtCachDung.MyCode = "-1";
            this.txtCachDung.MyID = "-1";
            this.txtCachDung.Name = "txtCachDung";
            this.txtCachDung.RaiseEvent = false;
            this.txtCachDung.RaiseEventEnter = false;
            this.txtCachDung.RaiseEventEnterWhenEmpty = false;
            this.txtCachDung.SelectedIndex = -1;
            this.txtCachDung.Size = new System.Drawing.Size(10, 21);
            this.txtCachDung.splitChar = '@';
            this.txtCachDung.splitCharIDAndCode = '#';
            this.txtCachDung.TabIndex = 5;
            this.txtCachDung.TakeCode = false;
            this.txtCachDung.txtMyCode = null;
            this.txtCachDung.txtMyCode_Edit = null;
            this.txtCachDung.txtMyID = null;
            this.txtCachDung.txtMyID_Edit = null;
            this.txtCachDung.txtMyName = null;
            this.txtCachDung.txtMyName_Edit = null;
            this.txtCachDung.txtNext = null;
            // 
            // txtBietduoc
            // 
            this.txtBietduoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtBietduoc.Location = new System.Drawing.Point(570, 35);
            this.txtBietduoc.Name = "txtBietduoc";
            this.txtBietduoc.ReadOnly = true;
            this.txtBietduoc.Size = new System.Drawing.Size(87, 21);
            this.txtBietduoc.TabIndex = 552;
            this.txtBietduoc.TabStop = false;
            this.txtBietduoc.Visible = false;
            // 
            // txtYearBirth
            // 
            this.txtYearBirth.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtYearBirth.Location = new System.Drawing.Point(401, 52);
            this.txtYearBirth.Name = "txtYearBirth";
            this.txtYearBirth.Size = new System.Drawing.Size(111, 21);
            this.txtYearBirth.TabIndex = 5;
            this.txtYearBirth.TabStop = false;
            // 
            // txtdiachiBhyt
            // 
            this.txtdiachiBhyt.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtdiachiBhyt.Location = new System.Drawing.Point(520, 15);
            this.txtdiachiBhyt.Name = "txtdiachiBhyt";
            this.txtdiachiBhyt.ReadOnly = true;
            this.txtdiachiBhyt.Size = new System.Drawing.Size(10, 21);
            this.txtdiachiBhyt.TabIndex = 546;
            this.txtdiachiBhyt.TabStop = false;
            // 
            // txtdrugtypeCode
            // 
            this.txtdrugtypeCode.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtdrugtypeCode.Location = new System.Drawing.Point(570, 10);
            this.txtdrugtypeCode.Name = "txtdrugtypeCode";
            this.txtdrugtypeCode.ReadOnly = true;
            this.txtdrugtypeCode.Size = new System.Drawing.Size(87, 21);
            this.txtdrugtypeCode.TabIndex = 551;
            this.txtdrugtypeCode.TabStop = false;
            // 
            // txtLoiDanBS
            // 
            this.txtLoiDanBS.BackColor = System.Drawing.Color.White;
            this.txtLoiDanBS.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtLoiDanBS.ForeColor = System.Drawing.Color.Black;
            this.txtLoiDanBS.Location = new System.Drawing.Point(99, 14);
            this.txtLoiDanBS.Name = "txtLoiDanBS";
            this.txtLoiDanBS.Size = new System.Drawing.Size(10, 21);
            this.txtLoiDanBS.TabIndex = 17;
            // 
            // grd_ICD
            // 
            this.grd_ICD.AllowDelete = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grd_ICD.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grd_ICD.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)));
            grd_ICD_DesignTimeLayout.LayoutString = resources.GetString("grd_ICD_DesignTimeLayout.LayoutString");
            this.grd_ICD.DesignTimeLayout = grd_ICD_DesignTimeLayout;
            this.grd_ICD.Font = new System.Drawing.Font("Arial", 9F);
            this.grd_ICD.GroupByBoxVisible = false;
            this.grd_ICD.Location = new System.Drawing.Point(202, 93);
            this.grd_ICD.Name = "grd_ICD";
            this.grd_ICD.Size = new System.Drawing.Size(0, 0);
            this.grd_ICD.TabIndex = 558;
            this.grd_ICD.TableViewHorizontalScrollIncrement = 21;
            this.grd_ICD.TabStop = false;
            this.grd_ICD.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // txtPtramBHYT
            // 
            this.txtPtramBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPtramBHYT.Location = new System.Drawing.Point(381, 13);
            this.txtPtramBHYT.Name = "txtPtramBHYT";
            this.txtPtramBHYT.Size = new System.Drawing.Size(10, 21);
            this.txtPtramBHYT.TabIndex = 538;
            this.txtPtramBHYT.TabStop = false;
            this.txtPtramBHYT.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // vbLine4
            // 
            this.vbLine4._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine4.BackColor = System.Drawing.Color.Transparent;
            this.vbLine4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine4.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine4.Location = new System.Drawing.Point(155, 35);
            this.vbLine4.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine4.Name = "vbLine4";
            this.vbLine4.Size = new System.Drawing.Size(10, 22);
            this.vbLine4.TabIndex = 559;
            this.vbLine4.TabStop = false;
            this.vbLine4.YourText = "Thông tin đơn thuốc";
            // 
            // label23
            // 
            this.label23.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label23.Location = new System.Drawing.Point(312, 55);
            this.label23.Name = "label23";
            this.label23.Size = new System.Drawing.Size(83, 15);
            this.label23.TabIndex = 58;
            this.label23.Text = "Năm sinh:";
            this.label23.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.ForeColor = System.Drawing.Color.Black;
            this.label7.Location = new System.Drawing.Point(3, 43);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(95, 21);
            this.label7.TabIndex = 76;
            this.label7.Text = "&Khám lại :";
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtKhamLai
            // 
            this.txtKhamLai.BackColor = System.Drawing.Color.White;
            this.txtKhamLai.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtKhamLai.ForeColor = System.Drawing.Color.Black;
            this.txtKhamLai.Location = new System.Drawing.Point(99, 43);
            this.txtKhamLai.Name = "txtKhamLai";
            this.txtKhamLai.Size = new System.Drawing.Size(10, 21);
            this.txtKhamLai.TabIndex = 18;
            // 
            // txtChiDanDungThuoc
            // 
            this.txtChiDanDungThuoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtChiDanDungThuoc.Location = new System.Drawing.Point(97, 167);
            this.txtChiDanDungThuoc.Multiline = true;
            this.txtChiDanDungThuoc.Name = "txtChiDanDungThuoc";
            this.txtChiDanDungThuoc.Size = new System.Drawing.Size(10, 17);
            this.txtChiDanDungThuoc.TabIndex = 550;
            this.txtChiDanDungThuoc.TabStop = false;
            this.txtChiDanDungThuoc.TextAlignment = Janus.Windows.GridEX.TextAlignment.Near;
            // 
            // cmdSearchBenhChinh
            // 
            this.cmdSearchBenhChinh.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdSearchBenhChinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdSearchBenhChinh.Image")));
            this.cmdSearchBenhChinh.Location = new System.Drawing.Point(285, 59);
            this.cmdSearchBenhChinh.Name = "cmdSearchBenhChinh";
            this.cmdSearchBenhChinh.Size = new System.Drawing.Size(29, 21);
            this.cmdSearchBenhChinh.TabIndex = 556;
            this.cmdSearchBenhChinh.TabStop = false;
            // 
            // cmdDonThuocDaKe
            // 
            this.cmdDonThuocDaKe.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdDonThuocDaKe.Image = ((System.Drawing.Image)(resources.GetObject("cmdDonThuocDaKe.Image")));
            this.cmdDonThuocDaKe.Location = new System.Drawing.Point(164, 108);
            this.cmdDonThuocDaKe.Name = "cmdDonThuocDaKe";
            this.cmdDonThuocDaKe.Size = new System.Drawing.Size(10, 29);
            this.cmdDonThuocDaKe.TabIndex = 505;
            this.cmdDonThuocDaKe.TabStop = false;
            this.cmdDonThuocDaKe.Text = "&Đơn đã kê";
            this.cmdDonThuocDaKe.Visible = false;
            // 
            // chkNgayTaiKham
            // 
            this.chkNgayTaiKham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkNgayTaiKham.Location = new System.Drawing.Point(14, 71);
            this.chkNgayTaiKham.Name = "chkNgayTaiKham";
            this.chkNgayTaiKham.Size = new System.Drawing.Size(95, 23);
            this.chkNgayTaiKham.TabIndex = 19;
            this.chkNgayTaiKham.Text = "Tái khám";
            // 
            // 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.Black;
            this.label1.Location = new System.Drawing.Point(58, 91);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(10, 15);
            this.label1.TabIndex = 70;
            this.label1.Text = "Mã lần khám :";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cmdSearchBenhPhu
            // 
            this.cmdSearchBenhPhu.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdSearchBenhPhu.Image = ((System.Drawing.Image)(resources.GetObject("cmdSearchBenhPhu.Image")));
            this.cmdSearchBenhPhu.Location = new System.Drawing.Point(285, 85);
            this.cmdSearchBenhPhu.Name = "cmdSearchBenhPhu";
            this.cmdSearchBenhPhu.Size = new System.Drawing.Size(29, 21);
            this.cmdSearchBenhPhu.TabIndex = 557;
            this.cmdSearchBenhPhu.TabStop = false;
            // 
            // txtMaLankham
            // 
            this.txtMaLankham.Enabled = false;
            this.txtMaLankham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaLankham.Location = new System.Drawing.Point(88, 88);
            this.txtMaLankham.Name = "txtMaLankham";
            this.txtMaLankham.ReadOnly = true;
            this.txtMaLankham.Size = new System.Drawing.Size(10, 21);
            this.txtMaLankham.TabIndex = 1;
            this.txtMaLankham.TabStop = false;
            // 
            // dtNgayKhamLai
            // 
            this.dtNgayKhamLai.CustomFormat = "dd/MM/yyyy";
            this.dtNgayKhamLai.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtNgayKhamLai.DropDownCalendar.Name = "";
            this.dtNgayKhamLai.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtNgayKhamLai.Location = new System.Drawing.Point(110, 73);
            this.dtNgayKhamLai.Name = "dtNgayKhamLai";
            this.dtNgayKhamLai.Size = new System.Drawing.Size(10, 21);
            this.dtNgayKhamLai.TabIndex = 20;
            this.dtNgayKhamLai.Value = new System.DateTime(2013, 10, 7, 0, 0, 0, 0);
            // 
            // cmdMauDonThuoc
            // 
            this.cmdMauDonThuoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdMauDonThuoc.Image = ((System.Drawing.Image)(resources.GetObject("cmdMauDonThuoc.Image")));
            this.cmdMauDonThuoc.Location = new System.Drawing.Point(180, 113);
            this.cmdMauDonThuoc.Name = "cmdMauDonThuoc";
            this.cmdMauDonThuoc.Size = new System.Drawing.Size(10, 29);
            this.cmdMauDonThuoc.TabIndex = 504;
            this.cmdMauDonThuoc.TabStop = false;
            this.cmdMauDonThuoc.Text = "&Mẫu đơn thuốc";
            this.cmdMauDonThuoc.Visible = false;
            // 
            // cmdUpdaeChiDan
            // 
            this.cmdUpdaeChiDan.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdUpdaeChiDan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdUpdaeChiDan.Image = ((System.Drawing.Image)(resources.GetObject("cmdUpdaeChiDan.Image")));
            this.cmdUpdaeChiDan.Location = new System.Drawing.Point(-182, 169);
            this.cmdUpdaeChiDan.Name = "cmdUpdaeChiDan";
            this.cmdUpdaeChiDan.Size = new System.Drawing.Size(36, 29);
            this.cmdUpdaeChiDan.TabIndex = 544;
            this.cmdUpdaeChiDan.TabStop = false;
            this.cmdUpdaeChiDan.ToolTipText = "Lưu lại cách thức sử dụng cho thuốc này(Nhấn Alt+S hoặc Shift+S)";
            this.cmdUpdaeChiDan.Visible = false;
            // 
            // txtChanDoan
            // 
            this.txtChanDoan._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtChanDoan._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtChanDoan.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtChanDoan.AutoCompleteList")));
            this.txtChanDoan.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtChanDoan.CaseSensitive = false;
            this.txtChanDoan.CompareNoID = true;
            this.txtChanDoan.DefaultCode = "-1";
            this.txtChanDoan.DefaultID = "-1";
            this.txtChanDoan.Drug_ID = null;
            this.txtChanDoan.ExtraWidth = 0;
            this.txtChanDoan.FillValueAfterSelect = false;
            this.txtChanDoan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtChanDoan.LOAI_DANHMUC = "CHANDOAN";
            this.txtChanDoan.Location = new System.Drawing.Point(259, 35);
            this.txtChanDoan.MaxHeight = -1;
            this.txtChanDoan.MinTypedCharacters = 2;
            this.txtChanDoan.MyCode = "-1";
            this.txtChanDoan.MyID = "-1";
            this.txtChanDoan.Name = "txtChanDoan";
            this.txtChanDoan.RaiseEvent = false;
            this.txtChanDoan.RaiseEventEnter = false;
            this.txtChanDoan.RaiseEventEnterWhenEmpty = false;
            this.txtChanDoan.SelectedIndex = -1;
            this.txtChanDoan.Size = new System.Drawing.Size(10, 21);
            this.txtChanDoan.splitChar = '@';
            this.txtChanDoan.splitCharIDAndCode = '#';
            this.txtChanDoan.TabIndex = 21;
            this.txtChanDoan.TakeCode = false;
            this.txtChanDoan.txtMyCode = null;
            this.txtChanDoan.txtMyCode_Edit = null;
            this.txtChanDoan.txtMyID = null;
            this.txtChanDoan.txtMyID_Edit = null;
            this.txtChanDoan.txtMyName = null;
            this.txtChanDoan.txtMyName_Edit = null;
            this.txtChanDoan.txtNext = null;
            // 
            // txtObjectName
            // 
            this.txtObjectName.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtObjectName.Location = new System.Drawing.Point(242, 11);
            this.txtObjectName.Name = "txtObjectName";
            this.txtObjectName.ReadOnly = true;
            this.txtObjectName.Size = new System.Drawing.Size(10, 21);
            this.txtObjectName.TabIndex = 7;
            this.txtObjectName.TabStop = false;
            // 
            // cmdLuuSotayBS
            // 
            this.cmdLuuSotayBS.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdLuuSotayBS.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdLuuSotayBS.Image = ((System.Drawing.Image)(resources.GetObject("cmdLuuSotayBS.Image")));
            this.cmdLuuSotayBS.Location = new System.Drawing.Point(-182, 140);
            this.cmdLuuSotayBS.Name = "cmdLuuSotayBS";
            this.cmdLuuSotayBS.Size = new System.Drawing.Size(36, 29);
            this.cmdLuuSotayBS.TabIndex = 537;
            this.cmdLuuSotayBS.TabStop = false;
            this.cmdLuuSotayBS.ToolTipText = "Lưu lại cách thức sử dụng cho thuốc này(Nhấn Alt+S hoặc Shift+S)";
            this.cmdLuuSotayBS.Visible = false;
            // 
            // label46
            // 
            this.label46.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label46.Location = new System.Drawing.Point(152, 34);
            this.label46.Name = "label46";
            this.label46.Size = new System.Drawing.Size(103, 21);
            this.label46.TabIndex = 553;
            this.label46.Text = "Chẩn đoán:";
            this.label46.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtSoDT
            // 
            this.txtSoDT.BackColor = System.Drawing.Color.White;
            this.txtSoDT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSoDT.Location = new System.Drawing.Point(397, 15);
            this.txtSoDT.MaxLength = 3;
            this.txtSoDT.Name = "txtSoDT";
            this.txtSoDT.ReadOnly = true;
            this.txtSoDT.Size = new System.Drawing.Size(10, 21);
            this.txtSoDT.TabIndex = 6;
            this.txtSoDT.TabStop = false;
            this.txtSoDT.Visible = false;
            // 
            // txtSolan
            // 
            this.txtSolan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSolan.Location = new System.Drawing.Point(192, 114);
            this.txtSolan.Name = "txtSolan";
            this.txtSolan.Size = new System.Drawing.Size(10, 21);
            this.txtSolan.TabIndex = 4;
            this.txtSolan.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // txtTenBenhPhu
            // 
            this.txtTenBenhPhu.Font = new System.Drawing.Font("Arial", 9F);
            this.txtTenBenhPhu.Location = new System.Drawing.Point(274, 83);
            this.txtTenBenhPhu.Name = "txtTenBenhPhu";
            this.txtTenBenhPhu.Size = new System.Drawing.Size(10, 21);
            this.txtTenBenhPhu.TabIndex = 549;
            this.txtTenBenhPhu.TabStop = false;
            // 
            // label18
            // 
            this.label18.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label18.ForeColor = System.Drawing.Color.Black;
            this.label18.Location = new System.Drawing.Point(11, 169);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(84, 23);
            this.label18.TabIndex = 516;
            this.label18.Text = "Chỉ dẫn:";
            this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label26
            // 
            this.label26.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label26.Location = new System.Drawing.Point(260, 15);
            this.label26.Name = "label26";
            this.label26.Size = new System.Drawing.Size(95, 15);
            this.label26.TabIndex = 60;
            this.label26.Text = "Số BHYT:";
            this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtMaBenhphu
            // 
            this.txtMaBenhphu.BackColor = System.Drawing.Color.LightBlue;
            this.txtMaBenhphu.Font = new System.Drawing.Font("Arial", 9F);
            this.txtMaBenhphu.Location = new System.Drawing.Point(259, 84);
            this.txtMaBenhphu.Name = "txtMaBenhphu";
            this.txtMaBenhphu.Size = new System.Drawing.Size(10, 21);
            this.txtMaBenhphu.TabIndex = 23;
            // 
            // txtMaBenhChinh
            // 
            this.txtMaBenhChinh.BackColor = System.Drawing.Color.LightBlue;
            this.txtMaBenhChinh.Font = new System.Drawing.Font("Arial", 9F);
            this.txtMaBenhChinh.Location = new System.Drawing.Point(259, 58);
            this.txtMaBenhChinh.Name = "txtMaBenhChinh";
            this.txtMaBenhChinh.Size = new System.Drawing.Size(10, 21);
            this.txtMaBenhChinh.TabIndex = 22;
            // 
            // 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(11, 140);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(84, 23);
            this.label16.TabIndex = 515;
            this.label16.Text = "Cách dùng";
            this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtSoBHYT
            // 
            this.txtSoBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSoBHYT.Location = new System.Drawing.Point(360, 13);
            this.txtSoBHYT.Name = "txtSoBHYT";
            this.txtSoBHYT.ReadOnly = true;
            this.txtSoBHYT.Size = new System.Drawing.Size(10, 21);
            this.txtSoBHYT.TabIndex = 2;
            this.txtSoBHYT.TabStop = false;
            // 
            // label32
            // 
            this.label32.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label32.Location = new System.Drawing.Point(152, 59);
            this.label32.Name = "label32";
            this.label32.Size = new System.Drawing.Size(103, 21);
            this.label32.TabIndex = 554;
            this.label32.Text = "Bệnh chính:";
            this.label32.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtTenBenhChinh
            // 
            this.txtTenBenhChinh.Font = new System.Drawing.Font("Arial", 9F);
            this.txtTenBenhChinh.Location = new System.Drawing.Point(274, 57);
            this.txtTenBenhChinh.Name = "txtTenBenhChinh";
            this.txtTenBenhChinh.Size = new System.Drawing.Size(10, 21);
            this.txtTenBenhChinh.TabIndex = 548;
            this.txtTenBenhChinh.TabStop = false;
            // 
            // txtSoLuongDung
            // 
            this.txtSoLuongDung.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSoLuongDung.Location = new System.Drawing.Point(97, 116);
            this.txtSoLuongDung.Name = "txtSoLuongDung";
            this.txtSoLuongDung.Size = new System.Drawing.Size(10, 21);
            this.txtSoLuongDung.TabIndex = 3;
            this.txtSoLuongDung.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // 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(142, 14);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(95, 15);
            this.label3.TabIndex = 64;
            this.label3.Text = "Đối tượng:";
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label38
            // 
            this.label38.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label38.Location = new System.Drawing.Point(152, 84);
            this.label38.Name = "label38";
            this.label38.Size = new System.Drawing.Size(103, 21);
            this.label38.TabIndex = 555;
            this.label38.Text = "Bệnh phụ:";
            this.label38.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtDonViDung
            // 
            this.txtDonViDung.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDonViDung.Location = new System.Drawing.Point(113, 117);
            this.txtDonViDung.Name = "txtDonViDung";
            this.txtDonViDung.Size = new System.Drawing.Size(10, 21);
            this.txtDonViDung.TabIndex = 11;
            this.txtDonViDung.TabStop = false;
            // 
            // label14
            // 
            this.label14.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label14.ForeColor = System.Drawing.Color.Black;
            this.label14.Location = new System.Drawing.Point(11, 114);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(84, 23);
            this.label14.TabIndex = 83;
            this.label14.Text = "Mỗi ngày";
            this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // 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.ForeColor = System.Drawing.Color.Black;
            this.label8.Location = new System.Drawing.Point(208, 118);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(32, 15);
            this.label8.TabIndex = 538;
            this.label8.Text = "(lần)";
            // 
            // label12
            // 
            this.label12.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label12.ForeColor = System.Drawing.Color.Black;
            this.label12.Location = new System.Drawing.Point(129, 116);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(57, 23);
            this.label12.TabIndex = 85;
            this.label12.Text = "Chia làm";
            // 
            // vbLine1
            // 
            this.vbLine1._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine1.BackColor = System.Drawing.Color.Transparent;
            this.vbLine1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine1.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine1.Location = new System.Drawing.Point(4, 4);
            this.vbLine1.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine1.Name = "vbLine1";
            this.vbLine1.Size = new System.Drawing.Size(994, 22);
            this.vbLine1.TabIndex = 535;
            this.vbLine1.TabStop = false;
            this.vbLine1.YourText = "Thông tin bệnh nhân";
            // 
            // 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.Black;
            this.label28.Location = new System.Drawing.Point(6, 32);
            this.label28.Name = "label28";
            this.label28.Size = new System.Drawing.Size(95, 15);
            this.label28.TabIndex = 50;
            this.label28.Text = "Mã BN :";
            this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // barcode
            // 
            this.barcode.BackColor = System.Drawing.Color.White;
            this.barcode.BarColor = System.Drawing.Color.Black;
            this.barcode.BarRatio = 2F;
            this.barcode.Data = "00000000000000000";
            this.barcode.DataExtension = null;
            this.barcode.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.barcode.Location = new System.Drawing.Point(381, 600);
            this.barcode.Name = "barcode";
            this.barcode.Size = new System.Drawing.Size(210, 69);
            this.barcode.Symbology = Mabry.Windows.Forms.Barcode.Barcode.BarcodeSymbologies.Code128;
            this.barcode.TabIndex = 80;
            this.barcode.TabStop = false;
            this.barcode.Text = "00000000";
            this.barcode.Visible = false;
            // 
            // 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(421, 55);
            this.label27.Name = "label27";
            this.label27.Size = new System.Drawing.Size(92, 15);
            this.label27.TabIndex = 52;
            this.label27.Text = "Địa chỉ";
            this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label20
            // 
            this.label20.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label20.Location = new System.Drawing.Point(6, 58);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(95, 15);
            this.label20.TabIndex = 56;
            this.label20.Text = "Giới tính";
            this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtTEN_BN
            // 
            this.txtTEN_BN.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTEN_BN.Location = new System.Drawing.Point(309, 27);
            this.txtTEN_BN.Name = "txtTEN_BN";
            this.txtTEN_BN.Size = new System.Drawing.Size(597, 21);
            this.txtTEN_BN.TabIndex = 0;
            // 
            // 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.Black;
            this.label6.Location = new System.Drawing.Point(421, 83);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(92, 21);
            this.label6.TabIndex = 52;
            this.label6.Text = "Người kê đơn";
            this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // 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.Black;
            this.label5.Location = new System.Drawing.Point(934, 31);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(20, 21);
            this.label5.TabIndex = 50;
            this.label5.Text = "ID";
            // 
            // txtPres_ID
            // 
            this.txtPres_ID.Enabled = false;
            this.txtPres_ID.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPres_ID.Location = new System.Drawing.Point(963, 31);
            this.txtPres_ID.Name = "txtPres_ID";
            this.txtPres_ID.ReadOnly = true;
            this.txtPres_ID.Size = new System.Drawing.Size(35, 21);
            this.txtPres_ID.TabIndex = 0;
            this.txtPres_ID.TabStop = false;
            // 
            // txtDiachi
            // 
            this.txtDiachi.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDiachi.Location = new System.Drawing.Point(516, 53);
            this.txtDiachi.Name = "txtDiachi";
            this.txtDiachi.Size = new System.Drawing.Size(390, 21);
            this.txtDiachi.TabIndex = 3;
            // 
            // label25
            // 
            this.label25.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label25.ForeColor = System.Drawing.Color.Black;
            this.label25.Location = new System.Drawing.Point(6, 82);
            this.label25.Name = "label25";
            this.label25.Size = new System.Drawing.Size(95, 23);
            this.label25.TabIndex = 47;
            this.label25.Text = "Ngày tạo đơn:";
            this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dtpCreatedDate
            // 
            this.dtpCreatedDate.CustomFormat = "dd/MM/yyyy";
            this.dtpCreatedDate.Enabled = false;
            this.dtpCreatedDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtpCreatedDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtpCreatedDate.Location = new System.Drawing.Point(106, 83);
            this.dtpCreatedDate.Name = "dtpCreatedDate";
            this.dtpCreatedDate.ShowUpDown = true;
            this.dtpCreatedDate.Size = new System.Drawing.Size(314, 21);
            this.dtpCreatedDate.TabIndex = 4;
            // 
            // label29
            // 
            this.label29.AutoSize = true;
            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(952, 61);
            this.label29.Name = "label29";
            this.label29.Size = new System.Drawing.Size(46, 15);
            this.label29.TabIndex = 62;
            this.label29.Text = "Số  ĐT:";
            this.label29.Visible = false;
            // 
            // label4
            // 
            this.label4.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label4.Location = new System.Drawing.Point(197, 31);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(106, 15);
            this.label4.TabIndex = 66;
            this.label4.Text = "Tên Bệnh nhân:";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtMaBN
            // 
            this.txtMaBN.Enabled = false;
            this.txtMaBN.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMaBN.Location = new System.Drawing.Point(107, 28);
            this.txtMaBN.Name = "txtMaBN";
            this.txtMaBN.ReadOnly = true;
            this.txtMaBN.Size = new System.Drawing.Size(84, 21);
            this.txtMaBN.TabIndex = 0;
            this.txtMaBN.TabStop = false;
            // 
            // panel4
            // 
            this.panel4.Controls.Add(this.cmdDelete);
            this.panel4.Controls.Add(this.cmdPrintPres);
            this.panel4.Controls.Add(this.chkThemmoilientuc);
            this.panel4.Controls.Add(this.cmdSavePres);
            this.panel4.Controls.Add(this.cmdExit);
            this.panel4.Controls.Add(this.dtNgayIn);
            this.panel4.Controls.Add(this.label30);
            this.panel4.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel4.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.panel4.Location = new System.Drawing.Point(0, 635);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(1004, 46);
            this.panel4.TabIndex = 547;
            // 
            // dtNgayIn
            // 
            // 
            // 
            // 
            this.dtNgayIn.DropDownCalendar.Name = "";
            this.dtNgayIn.Location = new System.Drawing.Point(253, 12);
            this.dtNgayIn.Name = "dtNgayIn";
            this.dtNgayIn.ShowUpDown = true;
            this.dtNgayIn.Size = new System.Drawing.Size(123, 21);
            this.dtNgayIn.TabIndex = 16;
            this.dtNgayIn.TabStop = false;
            this.dtNgayIn.Value = new System.DateTime(2013, 10, 7, 0, 0, 0, 0);
            // 
            // label30
            // 
            this.label30.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label30.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.label30.Location = new System.Drawing.Point(180, 13);
            this.label30.Name = "label30";
            this.label30.Size = new System.Drawing.Size(67, 21);
            this.label30.TabIndex = 534;
            this.label30.Text = "Ngày in";
            this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // uiTabPage2
            // 
            this.uiTabPage2.Controls.Add(this.pnlPrint);
            this.uiTabPage2.Location = new System.Drawing.Point(1, 23);
            this.uiTabPage2.Name = "uiTabPage2";
            this.uiTabPage2.Size = new System.Drawing.Size(1004, 681);
            this.uiTabPage2.TabStop = true;
            this.uiTabPage2.Text = "Cấu hình";
            // 
            // pnlPrint
            // 
            this.pnlPrint.Controls.Add(this.chkAskbeforeDeletedrug);
            this.pnlPrint.Controls.Add(this.vbLine5);
            this.pnlPrint.Controls.Add(this.cboLaserPrinters);
            this.pnlPrint.Controls.Add(this.chkSaveAndPrint);
            this.pnlPrint.Controls.Add(this.cboPrintPreview);
            this.pnlPrint.Controls.Add(this.label22);
            this.pnlPrint.Controls.Add(this.cboA4);
            this.pnlPrint.Controls.Add(this.label19);
            this.pnlPrint.Dock = System.Windows.Forms.DockStyle.Top;
            this.pnlPrint.Location = new System.Drawing.Point(0, 0);
            this.pnlPrint.Name = "pnlPrint";
            this.pnlPrint.Size = new System.Drawing.Size(1004, 239);
            this.pnlPrint.TabIndex = 546;
            // 
            // chkAskbeforeDeletedrug
            // 
            this.chkAskbeforeDeletedrug.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkAskbeforeDeletedrug.Location = new System.Drawing.Point(92, 113);
            this.chkAskbeforeDeletedrug.Name = "chkAskbeforeDeletedrug";
            this.chkAskbeforeDeletedrug.Size = new System.Drawing.Size(266, 23);
            this.chkAskbeforeDeletedrug.TabIndex = 545;
            this.chkAskbeforeDeletedrug.TabStop = false;
            this.chkAskbeforeDeletedrug.Text = "Luôn hỏi người dùng khi xóa thuốc?";
            // 
            // vbLine5
            // 
            this.vbLine5._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine5.BackColor = System.Drawing.Color.Transparent;
            this.vbLine5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine5.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine5.Location = new System.Drawing.Point(6, 4);
            this.vbLine5.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine5.Name = "vbLine5";
            this.vbLine5.Size = new System.Drawing.Size(361, 22);
            this.vbLine5.TabIndex = 544;
            this.vbLine5.TabStop = false;
            this.vbLine5.YourText = "Cấu hình in đơn thuốc";
            // 
            // cboLaserPrinters
            // 
            this.cboLaserPrinters.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboLaserPrinters.FormattingEnabled = true;
            this.cboLaserPrinters.Location = new System.Drawing.Point(91, 30);
            this.cboLaserPrinters.Name = "cboLaserPrinters";
            this.cboLaserPrinters.Size = new System.Drawing.Size(266, 23);
            this.cboLaserPrinters.TabIndex = 542;
            // 
            // chkSaveAndPrint
            // 
            this.chkSaveAndPrint.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkSaveAndPrint.Location = new System.Drawing.Point(91, 144);
            this.chkSaveAndPrint.Name = "chkSaveAndPrint";
            this.chkSaveAndPrint.Size = new System.Drawing.Size(266, 18);
            this.chkSaveAndPrint.TabIndex = 451;
            this.chkSaveAndPrint.TabStop = false;
            this.chkSaveAndPrint.Text = "&In ngay sau khi thêm mới hoặc cập nhật";
            this.chkSaveAndPrint.Visible = 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);
            uiComboBoxItem4.FormatStyle.Alpha = 0;
            uiComboBoxItem4.IsSeparator = false;
            uiComboBoxItem4.Text = "Xem trước khi in";
            uiComboBoxItem4.Value = "0";
            uiComboBoxItem5.FormatStyle.Alpha = 0;
            uiComboBoxItem5.IsSeparator = false;
            uiComboBoxItem5.Text = "In ngay";
            uiComboBoxItem5.Value = "1";
            this.cboPrintPreview.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem4,
            uiComboBoxItem5});
            this.cboPrintPreview.Location = new System.Drawing.Point(148, 57);
            this.cboPrintPreview.Name = "cboPrintPreview";
            this.cboPrintPreview.Size = new System.Drawing.Size(210, 21);
            this.cboPrintPreview.TabIndex = 541;
            this.cboPrintPreview.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
            // 
            // label22
            // 
            this.label22.Font = new System.Drawing.Font("Arial", 9F);
            this.label22.Location = new System.Drawing.Point(11, 57);
            this.label22.Name = "label22";
            this.label22.Size = new System.Drawing.Size(74, 21);
            this.label22.TabIndex = 539;
            this.label22.Text = "Khổ giấy";
            this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // 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);
            uiComboBoxItem6.FormatStyle.Alpha = 0;
            uiComboBoxItem6.IsSeparator = false;
            uiComboBoxItem6.Text = "A4";
            uiComboBoxItem6.Value = "A4";
            uiComboBoxItem7.FormatStyle.Alpha = 0;
            uiComboBoxItem7.IsSeparator = false;
            uiComboBoxItem7.Text = "A5";
            uiComboBoxItem7.Value = "A5";
            this.cboA4.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem6,
            uiComboBoxItem7});
            this.cboA4.Location = new System.Drawing.Point(91, 57);
            this.cboA4.Name = "cboA4";
            this.cboA4.Size = new System.Drawing.Size(55, 21);
            this.cboA4.TabIndex = 540;
            this.cboA4.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
            // 
            // label19
            // 
            this.label19.AutoSize = true;
            this.label19.Location = new System.Drawing.Point(3, 34);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(76, 15);
            this.label19.TabIndex = 543;
            this.label19.Text = "Chọn máy in";
            // 
            // errorProvider1
            // 
            this.errorProvider1.ContainerControl = this;
            // 
            // chkBoquachidanthem
            // 
            this.chkBoquachidanthem.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkBoquachidanthem.Location = new System.Drawing.Point(588, 132);
            this.chkBoquachidanthem.Name = "chkBoquachidanthem";
            this.chkBoquachidanthem.Size = new System.Drawing.Size(153, 23);
            this.chkBoquachidanthem.TabIndex = 556;
            this.chkBoquachidanthem.TabStop = false;
            this.chkBoquachidanthem.Text = "Bỏ qua chỉ dẫn thêm?";
            // 
            // frm_kedonthuoctaiquay
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
            this.ClientSize = new System.Drawing.Size(1008, 730);
            this.Controls.Add(this.tabKeDonThuoc);
            this.Controls.Add(this.StatusBar);
            this.Controls.Add(this.cmdCauHinh);
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frm_kedonthuoctaiquay";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Kê đơn thuốc";
            this.contextMenuStrip1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdPresDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tabKeDonThuoc)).EndInit();
            this.tabKeDonThuoc.ResumeLayout(false);
            this.uiTabPage1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.pnlKedon.ResumeLayout(false);
            this.pnlKedon.PerformLayout();
            this.pnlCusInfor.ResumeLayout(false);
            this.pnlCusInfor.PerformLayout();
            this.pnlHide.ResumeLayout(false);
            this.pnlHide.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grd_ICD)).EndInit();
            this.panel4.ResumeLayout(false);
            this.panel4.PerformLayout();
            this.uiTabPage2.ResumeLayout(false);
            this.pnlPrint.ResumeLayout(false);
            this.pnlPrint.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     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()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(frm_baocaodoanhthutiencls));
     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.GridEX.GridEXLayout grdChitiet_DesignTimeLayout  = new Janus.Windows.GridEX.GridEXLayout();
     Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout     = new Janus.Windows.GridEX.GridEXLayout();
     this.cmdExportToExcel = new Janus.Windows.EditControls.UIButton();
     this.dtNgayInPhieu    = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.label3           = new System.Windows.Forms.Label();
     this.cmdInPhieuXN     = new Janus.Windows.EditControls.UIButton();
     this.cmdExit          = new Janus.Windows.EditControls.UIButton();
     this.saveFileDialog1  = new System.Windows.Forms.SaveFileDialog();
     this.gridEXExporter1  = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
     this.printDialog1     = new System.Windows.Forms.PrintDialog();
     this.baocaO_TIEUDE1   = new VNS.HIS.UI.FORMs.BAOCAO.BHYT.UserControls.BAOCAO_TIEUDE();
     this.uiGroupBox2      = new Janus.Windows.EditControls.UIGroupBox();
     this.cboLoaidichvu    = new Janus.Windows.EditControls.UIComboBox();
     this.label2           = new System.Windows.Forms.Label();
     this.chkChitiet       = new Janus.Windows.EditControls.UICheckBox();
     this.panel1           = new System.Windows.Forms.Panel();
     this.grdChitiet       = new Janus.Windows.GridEX.GridEX();
     this.grdList          = new Janus.Windows.GridEX.GridEX();
     this.cboKhoa          = new Janus.Windows.EditControls.UIComboBox();
     this.label4           = new System.Windows.Forms.Label();
     this.cboNhanvien      = new Janus.Windows.EditControls.UIComboBox();
     this.label8           = new System.Windows.Forms.Label();
     this.cboDoituongKCB   = new Janus.Windows.EditControls.UIComboBox();
     this.label1           = new System.Windows.Forms.Label();
     this.dtToDate         = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtFromDate       = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.chkByDate        = new Janus.Windows.EditControls.UICheckBox();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
     this.uiGroupBox2.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     this.SuspendLayout();
     //
     // cmdExportToExcel
     //
     this.cmdExportToExcel.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdExportToExcel.Font        = new System.Drawing.Font("Arial", 9F);
     this.cmdExportToExcel.Image       = ((System.Drawing.Image)(resources.GetObject("cmdExportToExcel.Image")));
     this.cmdExportToExcel.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdExportToExcel.Location    = new System.Drawing.Point(364, 530);
     this.cmdExportToExcel.Name        = "cmdExportToExcel";
     this.cmdExportToExcel.Size        = new System.Drawing.Size(133, 30);
     this.cmdExportToExcel.TabIndex    = 91;
     this.cmdExportToExcel.Text        = "Xuất Excel";
     this.cmdExportToExcel.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
     this.cmdExportToExcel.Click      += new System.EventHandler(this.cmdExportToExcel_Click);
     //
     // dtNgayInPhieu
     //
     this.dtNgayInPhieu.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.dtNgayInPhieu.CustomFormat = "dd/MM/yyyy";
     this.dtNgayInPhieu.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtNgayInPhieu.DropDownCalendar.Name = "";
     this.dtNgayInPhieu.Font       = new System.Drawing.Font("Arial", 9F);
     this.dtNgayInPhieu.Location   = new System.Drawing.Point(81, 530);
     this.dtNgayInPhieu.Name       = "dtNgayInPhieu";
     this.dtNgayInPhieu.ShowUpDown = true;
     this.dtNgayInPhieu.Size       = new System.Drawing.Size(200, 21);
     this.dtNgayInPhieu.TabIndex   = 89;
     this.dtNgayInPhieu.Value      = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
     //
     // label3
     //
     this.label3.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.AutoSize = true;
     this.label3.Font     = new System.Drawing.Font("Arial", 9F);
     this.label3.Location = new System.Drawing.Point(3, 534);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(48, 15);
     this.label3.TabIndex = 88;
     this.label3.Text     = "Ngày in";
     //
     // cmdInPhieuXN
     //
     this.cmdInPhieuXN.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdInPhieuXN.Font        = new System.Drawing.Font("Arial", 9F);
     this.cmdInPhieuXN.Image       = ((System.Drawing.Image)(resources.GetObject("cmdInPhieuXN.Image")));
     this.cmdInPhieuXN.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdInPhieuXN.Location    = new System.Drawing.Point(503, 530);
     this.cmdInPhieuXN.Name        = "cmdInPhieuXN";
     this.cmdInPhieuXN.Size        = new System.Drawing.Size(133, 30);
     this.cmdInPhieuXN.TabIndex    = 87;
     this.cmdInPhieuXN.Text        = "In báo cáo";
     this.cmdInPhieuXN.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
     this.cmdInPhieuXN.Click      += new System.EventHandler(this.cmdInPhieuXN_Click);
     //
     // cmdExit
     //
     this.cmdExit.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdExit.Font      = new System.Drawing.Font("Arial", 9F);
     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(642, 530);
     this.cmdExit.Name      = "cmdExit";
     this.cmdExit.Size      = new System.Drawing.Size(133, 30);
     this.cmdExit.TabIndex  = 86;
     this.cmdExit.Text      = "Thoát (Esc)";
     //
     // printDialog1
     //
     this.printDialog1.UseEXDialog = true;
     //
     // baocaO_TIEUDE1
     //
     this.baocaO_TIEUDE1.BackColor         = System.Drawing.SystemColors.Control;
     this.baocaO_TIEUDE1.Dock              = System.Windows.Forms.DockStyle.Top;
     this.baocaO_TIEUDE1.Location          = new System.Drawing.Point(0, 0);
     this.baocaO_TIEUDE1.MA_BAOCAO         = "";
     this.baocaO_TIEUDE1.Name              = "baocaO_TIEUDE1";
     this.baocaO_TIEUDE1.Phimtat           = "Bạn có thể sử dụng phím tắt";
     this.baocaO_TIEUDE1.PicImg            = ((System.Drawing.Image)(resources.GetObject("baocaO_TIEUDE1.PicImg")));
     this.baocaO_TIEUDE1.ShortcutAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.baocaO_TIEUDE1.ShortcutFont      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.baocaO_TIEUDE1.showHelp          = false;
     this.baocaO_TIEUDE1.Size              = new System.Drawing.Size(784, 53);
     this.baocaO_TIEUDE1.TabIndex          = 115;
     this.baocaO_TIEUDE1.TIEUDE            = "BÁO CÁO THU TIỀN DỊCH VỤ KCB";
     this.baocaO_TIEUDE1.TitleFont         = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     //
     // uiGroupBox2
     //
     this.uiGroupBox2.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.uiGroupBox2.Controls.Add(this.cboLoaidichvu);
     this.uiGroupBox2.Controls.Add(this.label2);
     this.uiGroupBox2.Controls.Add(this.chkChitiet);
     this.uiGroupBox2.Controls.Add(this.panel1);
     this.uiGroupBox2.Controls.Add(this.cboKhoa);
     this.uiGroupBox2.Controls.Add(this.label4);
     this.uiGroupBox2.Controls.Add(this.cboNhanvien);
     this.uiGroupBox2.Controls.Add(this.label8);
     this.uiGroupBox2.Controls.Add(this.cboDoituongKCB);
     this.uiGroupBox2.Controls.Add(this.label1);
     this.uiGroupBox2.Controls.Add(this.dtToDate);
     this.uiGroupBox2.Controls.Add(this.dtFromDate);
     this.uiGroupBox2.Controls.Add(this.chkByDate);
     this.uiGroupBox2.Font     = new System.Drawing.Font("Arial", 9F);
     this.uiGroupBox2.Image    = ((System.Drawing.Image)(resources.GetObject("uiGroupBox2.Image")));
     this.uiGroupBox2.Location = new System.Drawing.Point(0, 59);
     this.uiGroupBox2.Name     = "uiGroupBox2";
     this.uiGroupBox2.Size     = new System.Drawing.Size(784, 465);
     this.uiGroupBox2.TabIndex = 116;
     this.uiGroupBox2.Text     = "Thông tin tìm kiếm";
     //
     // cboLoaidichvu
     //
     this.cboLoaidichvu.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              = "Tất cả";
     uiComboBoxItem1.Value             = ((short)(-1));
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator       = false;
     uiComboBoxItem2.Text              = "Phí khám chữa bệnh";
     uiComboBoxItem2.Value             = ((short)(1));
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator       = false;
     uiComboBoxItem3.Text              = "Chi phí dịch vụ Cận lâm sàng(XN,CĐHA...)";
     uiComboBoxItem3.Value             = ((short)(2));
     this.cboLoaidichvu.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2,
         uiComboBoxItem3
     });
     this.cboLoaidichvu.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboLoaidichvu.Location           = new System.Drawing.Point(419, 55);
     this.cboLoaidichvu.Name               = "cboLoaidichvu";
     this.cboLoaidichvu.SelectInDataSource = true;
     this.cboLoaidichvu.Size               = new System.Drawing.Size(336, 21);
     this.cboLoaidichvu.TabIndex           = 60;
     this.cboLoaidichvu.Text               = "Chọn loại chi phí";
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(329, 57);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(84, 15);
     this.label2.TabIndex  = 61;
     this.label2.Text      = "Loại chi phí:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // chkChitiet
     //
     this.chkChitiet.Checked    = true;
     this.chkChitiet.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkChitiet.Location   = new System.Drawing.Point(546, 108);
     this.chkChitiet.Name       = "chkChitiet";
     this.chkChitiet.Size       = new System.Drawing.Size(209, 23);
     this.chkChitiet.TabIndex   = 58;
     this.chkChitiet.Text       = "Chi tiết theo từng Bệnh nhân?";
     //
     // panel1
     //
     this.panel1.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.panel1.Controls.Add(this.grdChitiet);
     this.panel1.Controls.Add(this.grdList);
     this.panel1.Location = new System.Drawing.Point(6, 146);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(772, 313);
     this.panel1.TabIndex = 46;
     //
     // grdChitiet
     //
     this.grdChitiet.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     grdChitiet_DesignTimeLayout.LayoutString = resources.GetString("grdChitiet_DesignTimeLayout.LayoutString");
     this.grdChitiet.DesignTimeLayout         = grdChitiet_DesignTimeLayout;
     this.grdChitiet.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdChitiet.GroupByBoxVisible = false;
     this.grdChitiet.HideSelection     = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdChitiet.Location          = new System.Drawing.Point(0, 0);
     this.grdChitiet.Name             = "grdChitiet";
     this.grdChitiet.RowHeaders       = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdChitiet.Size             = new System.Drawing.Size(772, 313);
     this.grdChitiet.TabIndex         = 21;
     this.grdChitiet.TotalRow         = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdChitiet.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdChitiet.VisualStyle      = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // grdList
     //
     this.grdList.ColumnAutoResize         = true;
     grdList_DesignTimeLayout.LayoutString = resources.GetString("grdList_DesignTimeLayout.LayoutString");
     this.grdList.DesignTimeLayout         = grdList_DesignTimeLayout;
     this.grdList.Dock = System.Windows.Forms.DockStyle.Fill;
     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.RowHeaders       = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.Size             = new System.Drawing.Size(772, 313);
     this.grdList.TabIndex         = 20;
     this.grdList.TotalRow         = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdList.VisualStyle      = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // cboKhoa
     //
     this.cboKhoa.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboKhoa.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboKhoa.Location           = new System.Drawing.Point(123, 27);
     this.cboKhoa.Name               = "cboKhoa";
     this.cboKhoa.SelectInDataSource = true;
     this.cboKhoa.Size               = new System.Drawing.Size(632, 21);
     this.cboKhoa.TabIndex           = 45;
     this.cboKhoa.Text               = "Khoa thực hiện";
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(13, 29);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(104, 15);
     this.label4.TabIndex  = 44;
     this.label4.Text      = "Khoa KCB";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboNhanvien
     //
     this.cboNhanvien.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboNhanvien.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboNhanvien.Location           = new System.Drawing.Point(123, 81);
     this.cboNhanvien.Name               = "cboNhanvien";
     this.cboNhanvien.SelectInDataSource = true;
     this.cboNhanvien.Size               = new System.Drawing.Size(408, 21);
     this.cboNhanvien.TabIndex           = 31;
     this.cboNhanvien.Text               = "Nhân viên";
     //
     // label8
     //
     this.label8.Location  = new System.Drawing.Point(13, 82);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(104, 15);
     this.label8.TabIndex  = 30;
     this.label8.Text      = "Thu ngân viên:";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboDoituongKCB
     //
     this.cboDoituongKCB.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboDoituongKCB.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboDoituongKCB.Location           = new System.Drawing.Point(123, 54);
     this.cboDoituongKCB.Name               = "cboDoituongKCB";
     this.cboDoituongKCB.SelectInDataSource = true;
     this.cboDoituongKCB.Size               = new System.Drawing.Size(200, 21);
     this.cboDoituongKCB.TabIndex           = 27;
     this.cboDoituongKCB.Text               = "Đối tượng";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(13, 55);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(104, 15);
     this.label1.TabIndex  = 16;
     this.label1.Text      = "Đối tượng KCB:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // dtToDate
     //
     this.dtToDate.CustomFormat = "dd/MM/yyyy";
     this.dtToDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtToDate.DropDownCalendar.Name = "";
     this.dtToDate.Font       = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtToDate.Location   = new System.Drawing.Point(331, 108);
     this.dtToDate.Name       = "dtToDate";
     this.dtToDate.ShowUpDown = true;
     this.dtToDate.Size       = new System.Drawing.Size(200, 21);
     this.dtToDate.TabIndex   = 15;
     this.dtToDate.Value      = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
     //
     // dtFromDate
     //
     this.dtFromDate.CustomFormat = "dd/MM/yyyy";
     this.dtFromDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtFromDate.DropDownCalendar.Name = "";
     this.dtFromDate.Font       = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtFromDate.Location   = new System.Drawing.Point(123, 108);
     this.dtFromDate.Name       = "dtFromDate";
     this.dtFromDate.ShowUpDown = true;
     this.dtFromDate.Size       = new System.Drawing.Size(200, 21);
     this.dtFromDate.TabIndex   = 14;
     this.dtFromDate.Value      = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
     //
     // chkByDate
     //
     this.chkByDate.Checked    = true;
     this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkByDate.Location   = new System.Drawing.Point(48, 109);
     this.chkByDate.Name       = "chkByDate";
     this.chkByDate.Size       = new System.Drawing.Size(69, 23);
     this.chkByDate.TabIndex   = 13;
     this.chkByDate.Text       = "Từ ngày";
     //
     // frm_baocaodoanhthutiencls
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(784, 562);
     this.Controls.Add(this.uiGroupBox2);
     this.Controls.Add(this.baocaO_TIEUDE1);
     this.Controls.Add(this.cmdExportToExcel);
     this.Controls.Add(this.dtNgayInPhieu);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.cmdInPhieuXN);
     this.Controls.Add(this.cmdExit);
     this.KeyPreview    = true;
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "frm_baocaodoanhthutiencls";
     this.ShowIcon      = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "BÁO CÁO THU TIỀN CẬN LÂM SÀNG";
     this.Load         += new System.EventHandler(this.frm_BAOCAO_TONGHOP_TAI_KKB_DTUONG_THUPHI_Load);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
     this.uiGroupBox2.ResumeLayout(false);
     this.uiGroupBox2.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #57
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_baocao_thuockedon_theobacsy));
     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.GridEX.GridEXLayout cboBacSyChiDinh_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout         = new Janus.Windows.GridEX.GridEXLayout();
     this.cmdExportToExcel = new Janus.Windows.EditControls.UIButton();
     this.dtNgayInPhieu    = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.label3           = new System.Windows.Forms.Label();
     this.cmdInPhieuXN     = new Janus.Windows.EditControls.UIButton();
     this.cmdExit          = new Janus.Windows.EditControls.UIButton();
     this.saveFileDialog1  = new System.Windows.Forms.SaveFileDialog();
     this.gridEXExporter1  = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
     this.printDialog1     = new System.Windows.Forms.PrintDialog();
     this.pnlHeader        = new System.Windows.Forms.Panel();
     this.baocaO_TIEUDE1   = new VNS.HIS.UI.FORMs.BAOCAO.BHYT.UserControls.BAOCAO_TIEUDE();
     this.uiGroupBox2      = new Janus.Windows.EditControls.UIGroupBox();
     this.cboTrangthai     = new Janus.Windows.EditControls.UIComboBox();
     this.label4           = new System.Windows.Forms.Label();
     this.txtthuoc         = new VNS.HIS.UCs.AutoCompleteTextbox_Thuoc();
     this.label11          = new System.Windows.Forms.Label();
     this.cboBacSyChiDinh  = new Janus.Windows.GridEX.EditControls.CheckedComboBox();
     this.label2           = new System.Windows.Forms.Label();
     this.cboStock         = new Janus.Windows.EditControls.UIComboBox();
     this.label8           = new System.Windows.Forms.Label();
     this.cboDoiTuong      = new Janus.Windows.EditControls.UIComboBox();
     this.grdList          = new Janus.Windows.GridEX.GridEX();
     this.label1           = new System.Windows.Forms.Label();
     this.dtToDate         = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtFromDate       = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.chkByDate        = new Janus.Windows.EditControls.UICheckBox();
     this.pnlHeader.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
     this.uiGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     this.SuspendLayout();
     //
     // cmdExportToExcel
     //
     this.cmdExportToExcel.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdExportToExcel.Font        = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdExportToExcel.Image       = ((System.Drawing.Image)(resources.GetObject("cmdExportToExcel.Image")));
     this.cmdExportToExcel.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdExportToExcel.Location    = new System.Drawing.Point(362, 520);
     this.cmdExportToExcel.Name        = "cmdExportToExcel";
     this.cmdExportToExcel.Size        = new System.Drawing.Size(133, 30);
     this.cmdExportToExcel.TabIndex    = 9;
     this.cmdExportToExcel.Text        = "Xuất Excel";
     this.cmdExportToExcel.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
     this.cmdExportToExcel.Click      += new System.EventHandler(this.cmdExportToExcel_Click_1);
     //
     // dtNgayInPhieu
     //
     this.dtNgayInPhieu.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.dtNgayInPhieu.CustomFormat = "dd/MM/yyyy";
     this.dtNgayInPhieu.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtNgayInPhieu.DropDownCalendar.Name = "";
     this.dtNgayInPhieu.Font       = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtNgayInPhieu.Location   = new System.Drawing.Point(72, 526);
     this.dtNgayInPhieu.Name       = "dtNgayInPhieu";
     this.dtNgayInPhieu.ShowUpDown = true;
     this.dtNgayInPhieu.Size       = new System.Drawing.Size(165, 21);
     this.dtNgayInPhieu.TabIndex   = 11;
     //
     // label3
     //
     this.label3.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     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.Location = new System.Drawing.Point(12, 529);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(54, 15);
     this.label3.TabIndex = 115;
     this.label3.Text     = "Ngày in :";
     //
     // cmdInPhieuXN
     //
     this.cmdInPhieuXN.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdInPhieuXN.Font        = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdInPhieuXN.Image       = ((System.Drawing.Image)(resources.GetObject("cmdInPhieuXN.Image")));
     this.cmdInPhieuXN.Location    = new System.Drawing.Point(506, 520);
     this.cmdInPhieuXN.Name        = "cmdInPhieuXN";
     this.cmdInPhieuXN.Size        = new System.Drawing.Size(133, 30);
     this.cmdInPhieuXN.TabIndex    = 8;
     this.cmdInPhieuXN.Text        = "In báo cáo";
     this.cmdInPhieuXN.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
     //
     // cmdExit
     //
     this.cmdExit.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     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.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdExit.Location  = new System.Drawing.Point(645, 520);
     this.cmdExit.Name      = "cmdExit";
     this.cmdExit.Size      = new System.Drawing.Size(133, 30);
     this.cmdExit.TabIndex  = 10;
     this.cmdExit.Text      = "Thoát (Esc)";
     //
     // printDialog1
     //
     this.printDialog1.UseEXDialog = true;
     //
     // pnlHeader
     //
     this.pnlHeader.Controls.Add(this.baocaO_TIEUDE1);
     this.pnlHeader.Dock     = System.Windows.Forms.DockStyle.Top;
     this.pnlHeader.Location = new System.Drawing.Point(0, 0);
     this.pnlHeader.Name     = "pnlHeader";
     this.pnlHeader.Size     = new System.Drawing.Size(784, 56);
     this.pnlHeader.TabIndex = 120;
     //
     // baocaO_TIEUDE1
     //
     this.baocaO_TIEUDE1.Dock              = System.Windows.Forms.DockStyle.Top;
     this.baocaO_TIEUDE1.Location          = new System.Drawing.Point(0, 0);
     this.baocaO_TIEUDE1.MA_BAOCAO         = "BC_BSYKEDON";
     this.baocaO_TIEUDE1.Name              = "baocaO_TIEUDE1";
     this.baocaO_TIEUDE1.Phimtat           = "";
     this.baocaO_TIEUDE1.PicImg            = ((System.Drawing.Image)(resources.GetObject("baocaO_TIEUDE1.PicImg")));
     this.baocaO_TIEUDE1.ShortcutAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.baocaO_TIEUDE1.ShortcutFont      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.baocaO_TIEUDE1.showHelp          = false;
     this.baocaO_TIEUDE1.Size              = new System.Drawing.Size(784, 54);
     this.baocaO_TIEUDE1.TabIndex          = 1;
     this.baocaO_TIEUDE1.TIEUDE            = "BÁO CÁO KÊ THUỐC THEO BÁC SỸ";
     this.baocaO_TIEUDE1.TitleFont         = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     //
     // uiGroupBox2
     //
     this.uiGroupBox2.Controls.Add(this.cboTrangthai);
     this.uiGroupBox2.Controls.Add(this.label4);
     this.uiGroupBox2.Controls.Add(this.txtthuoc);
     this.uiGroupBox2.Controls.Add(this.label11);
     this.uiGroupBox2.Controls.Add(this.cboBacSyChiDinh);
     this.uiGroupBox2.Controls.Add(this.label2);
     this.uiGroupBox2.Controls.Add(this.cboStock);
     this.uiGroupBox2.Controls.Add(this.label8);
     this.uiGroupBox2.Controls.Add(this.cboDoiTuong);
     this.uiGroupBox2.Controls.Add(this.grdList);
     this.uiGroupBox2.Controls.Add(this.label1);
     this.uiGroupBox2.Controls.Add(this.dtToDate);
     this.uiGroupBox2.Controls.Add(this.dtFromDate);
     this.uiGroupBox2.Controls.Add(this.chkByDate);
     this.uiGroupBox2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.uiGroupBox2.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox2.Location = new System.Drawing.Point(0, 56);
     this.uiGroupBox2.Name     = "uiGroupBox2";
     this.uiGroupBox2.Size     = new System.Drawing.Size(784, 448);
     this.uiGroupBox2.TabIndex = 121;
     this.uiGroupBox2.Text     = "Thông tin tìm kiếm";
     //
     // cboTrangthai
     //
     this.cboTrangthai.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              = "Đã cấp phát";
     uiComboBoxItem1.Value             = ((short)(1));
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator       = false;
     uiComboBoxItem2.Text              = "Chưa cấp phát";
     uiComboBoxItem2.Value             = ((short)(0));
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator       = false;
     uiComboBoxItem3.Text              = "Tất cả";
     uiComboBoxItem3.Value             = ((short)(-1));
     this.cboTrangthai.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem1,
         uiComboBoxItem2,
         uiComboBoxItem3
     });
     this.cboTrangthai.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboTrangthai.Location           = new System.Drawing.Point(543, 71);
     this.cboTrangthai.Name               = "cboTrangthai";
     this.cboTrangthai.SelectedIndex      = 0;
     this.cboTrangthai.SelectInDataSource = true;
     this.cboTrangthai.Size               = new System.Drawing.Size(214, 21);
     this.cboTrangthai.TabIndex           = 3;
     this.cboTrangthai.Text               = "Đã cấp phát";
     //
     // label4
     //
     this.label4.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location  = new System.Drawing.Point(406, 74);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(131, 15);
     this.label4.TabIndex  = 40;
     this.label4.Text      = "Trạng thái đơn thuốc:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtthuoc
     //
     this.txtthuoc._backcolor           = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.txtthuoc._Font                = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtthuoc.AllowedSelectPrice   = false;
     this.txtthuoc.AutoCompleteList     = ((System.Collections.Generic.List <string>)(resources.GetObject("txtthuoc.AutoCompleteList")));
     this.txtthuoc.BorderStyle          = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtthuoc.CaseSensitive        = false;
     this.txtthuoc.CompareNoID          = true;
     this.txtthuoc.DefaultCode          = "-1";
     this.txtthuoc.DefaultID            = "-1";
     this.txtthuoc.Drug_ID              = null;
     this.txtthuoc.ExtraWidth           = 0;
     this.txtthuoc.ExtraWidth_Pre       = 0;
     this.txtthuoc.FillValueAfterSelect = true;
     this.txtthuoc.Font                     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtthuoc.GridView                 = false;
     this.txtthuoc.Location                 = new System.Drawing.Point(138, 95);
     this.txtthuoc.MaxHeight                = 300;
     this.txtthuoc.MinTypedCharacters       = 2;
     this.txtthuoc.MyCode                   = "-1";
     this.txtthuoc.MyID                     = "-1";
     this.txtthuoc.MyText                   = "";
     this.txtthuoc.Name                     = "txtthuoc";
     this.txtthuoc.RaiseEvent               = false;
     this.txtthuoc.RaiseEventEnter          = false;
     this.txtthuoc.RaiseEventEnterWhenEmpty = false;
     this.txtthuoc.SelectedIndex            = -1;
     this.txtthuoc.Size                     = new System.Drawing.Size(619, 21);
     this.txtthuoc.splitChar                = '@';
     this.txtthuoc.splitCharIDAndCode       = '#';
     this.txtthuoc.TabIndex                 = 4;
     this.txtthuoc.TakeCode                 = false;
     this.txtthuoc.txtMyCode                = null;
     this.txtthuoc.txtMyCode_Edit           = null;
     this.txtthuoc.txtMyID                  = null;
     this.txtthuoc.txtMyID_Edit             = null;
     this.txtthuoc.txtMyName                = null;
     this.txtthuoc.txtMyName_Edit           = null;
     this.txtthuoc.txtNext                  = null;
     //
     // 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(1, 98);
     this.label11.Name      = "label11";
     this.label11.Size      = new System.Drawing.Size(131, 15);
     this.label11.TabIndex  = 38;
     this.label11.Text      = "Tên thuốc:";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboBacSyChiDinh
     //
     cboBacSyChiDinh_DesignTimeLayout.LayoutString = resources.GetString("cboBacSyChiDinh_DesignTimeLayout.LayoutString");
     this.cboBacSyChiDinh.DesignTimeLayout         = cboBacSyChiDinh_DesignTimeLayout;
     this.cboBacSyChiDinh.DropDownDisplayMember    = "ten_nhanvien";
     this.cboBacSyChiDinh.DropDownValueMember      = "id_nhanvien";
     this.cboBacSyChiDinh.Font             = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboBacSyChiDinh.Location         = new System.Drawing.Point(138, 71);
     this.cboBacSyChiDinh.Name             = "cboBacSyChiDinh";
     this.cboBacSyChiDinh.SaveSettings     = false;
     this.cboBacSyChiDinh.Size             = new System.Drawing.Size(262, 21);
     this.cboBacSyChiDinh.TabIndex         = 2;
     this.cboBacSyChiDinh.ValuesDataMember = null;
     this.cboBacSyChiDinh.VisualStyle      = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // label2
     //
     this.label2.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location  = new System.Drawing.Point(1, 74);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(131, 15);
     this.label2.TabIndex  = 35;
     this.label2.Text      = "Tên bác sỹ chỉ định";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboStock
     //
     this.cboStock.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboStock.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboStock.Location           = new System.Drawing.Point(138, 47);
     this.cboStock.Name               = "cboStock";
     this.cboStock.SelectInDataSource = true;
     this.cboStock.Size               = new System.Drawing.Size(619, 21);
     this.cboStock.TabIndex           = 1;
     this.cboStock.Text               = "Kho thuốc";
     //
     // label8
     //
     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(1, 51);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(131, 15);
     this.label8.TabIndex  = 32;
     this.label8.Text      = "Kho thuốc";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboDoiTuong
     //
     this.cboDoiTuong.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboDoiTuong.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboDoiTuong.Location           = new System.Drawing.Point(138, 22);
     this.cboDoiTuong.Name               = "cboDoiTuong";
     this.cboDoiTuong.SelectInDataSource = true;
     this.cboDoiTuong.Size               = new System.Drawing.Size(619, 21);
     this.cboDoiTuong.TabIndex           = 0;
     this.cboDoiTuong.Text               = "Đối tượng";
     //
     // grdList
     //
     this.grdList.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     this.grdList.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.grdList.ColumnAutoResize         = true;
     grdList_DesignTimeLayout.LayoutString = resources.GetString("grdList_DesignTimeLayout.LayoutString");
     this.grdList.DesignTimeLayout         = grdList_DesignTimeLayout;
     this.grdList.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grdList.GroupByBoxVisible                 = false;
     this.grdList.GroupRowFormatStyle.FontBold      = Janus.Windows.GridEX.TriState.True;
     this.grdList.GroupTotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
     this.grdList.HideSelection                = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdList.Location                     = new System.Drawing.Point(3, 165);
     this.grdList.Name                         = "grdList";
     this.grdList.RowHeaders                   = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.Size                         = new System.Drawing.Size(775, 277);
     this.grdList.TabIndex                     = 20;
     this.grdList.TabStop                      = false;
     this.grdList.TotalRow                     = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.TotalRowFormatStyle.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
     this.grdList.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
     this.grdList.TotalRowPosition             = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdList.VisualStyle                  = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // label1
     //
     this.label1.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location  = new System.Drawing.Point(1, 26);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(131, 15);
     this.label1.TabIndex  = 16;
     this.label1.Text      = "Đối tượng Kcb";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // dtToDate
     //
     this.dtToDate.CustomFormat = "dd/MM/yyyy";
     this.dtToDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtToDate.DropDownCalendar.Name = "";
     this.dtToDate.Font       = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtToDate.Location   = new System.Drawing.Point(330, 125);
     this.dtToDate.Name       = "dtToDate";
     this.dtToDate.ShowUpDown = true;
     this.dtToDate.Size       = new System.Drawing.Size(200, 21);
     this.dtToDate.TabIndex   = 7;
     //
     // dtFromDate
     //
     this.dtFromDate.CustomFormat = "dd/MM/yyyy";
     this.dtFromDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtFromDate.DropDownCalendar.Name = "";
     this.dtFromDate.Font       = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtFromDate.Location   = new System.Drawing.Point(138, 125);
     this.dtFromDate.Name       = "dtFromDate";
     this.dtFromDate.ShowUpDown = true;
     this.dtFromDate.Size       = new System.Drawing.Size(187, 21);
     this.dtFromDate.TabIndex   = 6;
     //
     // chkByDate
     //
     this.chkByDate.Checked    = true;
     this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkByDate.Font       = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkByDate.Location   = new System.Drawing.Point(61, 125);
     this.chkByDate.Name       = "chkByDate";
     this.chkByDate.Size       = new System.Drawing.Size(71, 23);
     this.chkByDate.TabIndex   = 5;
     this.chkByDate.Text       = "Từ ngày";
     //
     // frm_baocao_thuockedon_theobacsy
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(784, 562);
     this.Controls.Add(this.uiGroupBox2);
     this.Controls.Add(this.pnlHeader);
     this.Controls.Add(this.cmdExportToExcel);
     this.Controls.Add(this.dtNgayInPhieu);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.cmdInPhieuXN);
     this.Controls.Add(this.cmdExit);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "frm_baocao_thuockedon_theobacsy";
     this.ShowIcon      = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "BÁO CÁO KÊ ĐƠN THUỐC THEO BÁC SĨ";
     this.Load         += new System.EventHandler(this.frm_baocao_thuockedon_theobacsy_Load);
     this.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.frm_baocao_thuockedon_theobacsy_KeyDown);
     this.pnlHeader.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
     this.uiGroupBox2.ResumeLayout(false);
     this.uiGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #58
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_baocaodoanhthutiemchung));
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem9  = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem10 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem11 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem12 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.GridEX.GridEXLayout grdChitiet_DesignTimeLayout   = new Janus.Windows.GridEX.GridEXLayout();
     Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout      = new Janus.Windows.GridEX.GridEXLayout();
     this.cmdExportToExcel = new Janus.Windows.EditControls.UIButton();
     this.dtNgayInPhieu    = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.label3           = new System.Windows.Forms.Label();
     this.cmdInPhieuXN     = new Janus.Windows.EditControls.UIButton();
     this.cmdExit          = new Janus.Windows.EditControls.UIButton();
     this.saveFileDialog1  = new System.Windows.Forms.SaveFileDialog();
     this.gridEXExporter1  = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
     this.printDialog1     = new System.Windows.Forms.PrintDialog();
     this.uiGroupBox2      = new Janus.Windows.EditControls.UIGroupBox();
     this.cboLoaidichvu    = new Janus.Windows.EditControls.UIComboBox();
     this.label2           = new System.Windows.Forms.Label();
     this.chkChitiet       = new Janus.Windows.EditControls.UICheckBox();
     this.panel1           = new System.Windows.Forms.Panel();
     this.grdChitiet       = new Janus.Windows.GridEX.GridEX();
     this.grdList          = new Janus.Windows.GridEX.GridEX();
     this.cboKhoa          = new Janus.Windows.EditControls.UIComboBox();
     this.label4           = new System.Windows.Forms.Label();
     this.cboNhanvien      = new Janus.Windows.EditControls.UIComboBox();
     this.label8           = new System.Windows.Forms.Label();
     this.cboDoituongKCB   = new Janus.Windows.EditControls.UIComboBox();
     this.label1           = new System.Windows.Forms.Label();
     this.dtToDate         = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtFromDate       = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.chkByDate        = new Janus.Windows.EditControls.UICheckBox();
     this.uiGroupBox1      = new Janus.Windows.EditControls.UIGroupBox();
     this.chktienkham      = new Janus.Windows.EditControls.UICheckBox();
     this.chktientiem      = new Janus.Windows.EditControls.UICheckBox();
     this.chktienvacxin    = new Janus.Windows.EditControls.UICheckBox();
     this.baocaO_TIEUDE1   = new VNS.HIS.UI.FORMs.BAOCAO.BHYT.UserControls.BAOCAO_TIEUDE();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
     this.uiGroupBox2.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
     this.uiGroupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // cmdExportToExcel
     //
     this.cmdExportToExcel.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdExportToExcel.Font        = new System.Drawing.Font("Arial", 9F);
     this.cmdExportToExcel.Image       = ((System.Drawing.Image)(resources.GetObject("cmdExportToExcel.Image")));
     this.cmdExportToExcel.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdExportToExcel.Location    = new System.Drawing.Point(364, 623);
     this.cmdExportToExcel.Name        = "cmdExportToExcel";
     this.cmdExportToExcel.Size        = new System.Drawing.Size(133, 30);
     this.cmdExportToExcel.TabIndex    = 9;
     this.cmdExportToExcel.Text        = "Xuất Excel";
     this.cmdExportToExcel.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
     this.cmdExportToExcel.Click      += new System.EventHandler(this.cmdExportToExcel_Click);
     //
     // dtNgayInPhieu
     //
     this.dtNgayInPhieu.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.dtNgayInPhieu.CustomFormat = "dd/MM/yyyy";
     this.dtNgayInPhieu.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtNgayInPhieu.DropDownCalendar.Name = "";
     this.dtNgayInPhieu.Font       = new System.Drawing.Font("Arial", 9F);
     this.dtNgayInPhieu.Location   = new System.Drawing.Point(81, 623);
     this.dtNgayInPhieu.Name       = "dtNgayInPhieu";
     this.dtNgayInPhieu.ShowUpDown = true;
     this.dtNgayInPhieu.Size       = new System.Drawing.Size(200, 21);
     this.dtNgayInPhieu.TabIndex   = 11;
     this.dtNgayInPhieu.TabStop    = false;
     this.dtNgayInPhieu.Value      = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
     //
     // label3
     //
     this.label3.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.AutoSize = true;
     this.label3.Font     = new System.Drawing.Font("Arial", 9F);
     this.label3.Location = new System.Drawing.Point(3, 627);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(48, 15);
     this.label3.TabIndex = 88;
     this.label3.Text     = "Ngày in";
     //
     // cmdInPhieuXN
     //
     this.cmdInPhieuXN.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdInPhieuXN.Font        = new System.Drawing.Font("Arial", 9F);
     this.cmdInPhieuXN.Image       = ((System.Drawing.Image)(resources.GetObject("cmdInPhieuXN.Image")));
     this.cmdInPhieuXN.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdInPhieuXN.Location    = new System.Drawing.Point(503, 623);
     this.cmdInPhieuXN.Name        = "cmdInPhieuXN";
     this.cmdInPhieuXN.Size        = new System.Drawing.Size(133, 30);
     this.cmdInPhieuXN.TabIndex    = 8;
     this.cmdInPhieuXN.Text        = "In báo cáo";
     this.cmdInPhieuXN.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
     this.cmdInPhieuXN.Click      += new System.EventHandler(this.cmdInPhieuXN_Click);
     //
     // cmdExit
     //
     this.cmdExit.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdExit.Font      = new System.Drawing.Font("Arial", 9F);
     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(642, 623);
     this.cmdExit.Name      = "cmdExit";
     this.cmdExit.Size      = new System.Drawing.Size(133, 30);
     this.cmdExit.TabIndex  = 10;
     this.cmdExit.Text      = "Thoát (Esc)";
     //
     // gridEXExporter1
     //
     this.gridEXExporter1.GridEX = this.grdChitiet;
     //
     // printDialog1
     //
     this.printDialog1.UseEXDialog = true;
     //
     // uiGroupBox2
     //
     this.uiGroupBox2.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.uiGroupBox2.Controls.Add(this.uiGroupBox1);
     this.uiGroupBox2.Controls.Add(this.cboLoaidichvu);
     this.uiGroupBox2.Controls.Add(this.label2);
     this.uiGroupBox2.Controls.Add(this.chkChitiet);
     this.uiGroupBox2.Controls.Add(this.panel1);
     this.uiGroupBox2.Controls.Add(this.cboKhoa);
     this.uiGroupBox2.Controls.Add(this.label4);
     this.uiGroupBox2.Controls.Add(this.cboNhanvien);
     this.uiGroupBox2.Controls.Add(this.label8);
     this.uiGroupBox2.Controls.Add(this.cboDoituongKCB);
     this.uiGroupBox2.Controls.Add(this.label1);
     this.uiGroupBox2.Controls.Add(this.dtToDate);
     this.uiGroupBox2.Controls.Add(this.dtFromDate);
     this.uiGroupBox2.Controls.Add(this.chkByDate);
     this.uiGroupBox2.Font     = new System.Drawing.Font("Arial", 9F);
     this.uiGroupBox2.Image    = ((System.Drawing.Image)(resources.GetObject("uiGroupBox2.Image")));
     this.uiGroupBox2.Location = new System.Drawing.Point(0, 59);
     this.uiGroupBox2.Name     = "uiGroupBox2";
     this.uiGroupBox2.Size     = new System.Drawing.Size(1062, 558);
     this.uiGroupBox2.TabIndex = 116;
     this.uiGroupBox2.Text     = "Thông tin tìm kiếm";
     //
     // cboLoaidichvu
     //
     this.cboLoaidichvu.Font           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     uiComboBoxItem9.FormatStyle.Alpha = 0;
     uiComboBoxItem9.IsSeparator       = false;
     uiComboBoxItem9.Text  = "Chọn hình thức thanh toán";
     uiComboBoxItem9.Value = -1;
     uiComboBoxItem10.FormatStyle.Alpha = 0;
     uiComboBoxItem10.IsSeparator       = false;
     uiComboBoxItem10.Text              = "Tiền mặt";
     uiComboBoxItem10.Value             = "TM";
     uiComboBoxItem11.FormatStyle.Alpha = 0;
     uiComboBoxItem11.IsSeparator       = false;
     uiComboBoxItem11.Text              = "Chuyển khoản";
     uiComboBoxItem11.Value             = "CK";
     uiComboBoxItem12.FormatStyle.Alpha = 0;
     uiComboBoxItem12.IsSeparator       = false;
     uiComboBoxItem12.Text              = "Séc";
     uiComboBoxItem12.Value             = "SEC";
     this.cboLoaidichvu.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem9,
         uiComboBoxItem10,
         uiComboBoxItem11,
         uiComboBoxItem12
     });
     this.cboLoaidichvu.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboLoaidichvu.Location      = new System.Drawing.Point(465, 54);
     this.cboLoaidichvu.Name          = "cboLoaidichvu";
     this.cboLoaidichvu.SelectedIndex = 0;
     this.cboLoaidichvu.Size          = new System.Drawing.Size(290, 21);
     this.cboLoaidichvu.TabIndex      = 2;
     this.cboLoaidichvu.Text          = "Chọn hình thức thanh toán";
     this.cboLoaidichvu.VisualStyle   = Janus.Windows.UI.VisualStyle.Office2003;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(358, 55);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(101, 19);
     this.label2.TabIndex  = 59;
     this.label2.Text      = "Loại thanh toán:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // chkChitiet
     //
     this.chkChitiet.Checked     = true;
     this.chkChitiet.CheckState  = System.Windows.Forms.CheckState.Checked;
     this.chkChitiet.Location    = new System.Drawing.Point(761, 27);
     this.chkChitiet.Name        = "chkChitiet";
     this.chkChitiet.Size        = new System.Drawing.Size(209, 23);
     this.chkChitiet.TabIndex    = 7;
     this.chkChitiet.Text        = "Chi tiết theo từng Bệnh nhân?";
     this.chkChitiet.Visible     = false;
     this.chkChitiet.VisualStyle = Janus.Windows.UI.VisualStyle.VS2005;
     //
     // panel1
     //
     this.panel1.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.panel1.Controls.Add(this.grdChitiet);
     this.panel1.Controls.Add(this.grdList);
     this.panel1.Location = new System.Drawing.Point(6, 150);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(1050, 402);
     this.panel1.TabIndex = 46;
     //
     // grdChitiet
     //
     this.grdChitiet.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     grdChitiet_DesignTimeLayout.LayoutString = resources.GetString("grdChitiet_DesignTimeLayout.LayoutString");
     this.grdChitiet.DesignTimeLayout         = grdChitiet_DesignTimeLayout;
     this.grdChitiet.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdChitiet.GroupByBoxVisible = false;
     this.grdChitiet.HideSelection     = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdChitiet.Location          = new System.Drawing.Point(0, 0);
     this.grdChitiet.Name             = "grdChitiet";
     this.grdChitiet.RowHeaders       = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdChitiet.Size             = new System.Drawing.Size(1050, 402);
     this.grdChitiet.TabIndex         = 21;
     this.grdChitiet.TabStop          = false;
     this.grdChitiet.TotalRow         = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdChitiet.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdChitiet.VisualStyle      = Janus.Windows.GridEX.VisualStyle.Office2007;
     //
     // grdList
     //
     this.grdList.ColumnAutoResize         = true;
     grdList_DesignTimeLayout.LayoutString = resources.GetString("grdList_DesignTimeLayout.LayoutString");
     this.grdList.DesignTimeLayout         = grdList_DesignTimeLayout;
     this.grdList.Dock = System.Windows.Forms.DockStyle.Fill;
     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.RowHeaders       = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.Size             = new System.Drawing.Size(1050, 402);
     this.grdList.TabIndex         = 20;
     this.grdList.TabStop          = false;
     this.grdList.TotalRow         = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdList.VisualStyle      = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // cboKhoa
     //
     this.cboKhoa.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboKhoa.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboKhoa.Location           = new System.Drawing.Point(123, 27);
     this.cboKhoa.Name               = "cboKhoa";
     this.cboKhoa.SelectInDataSource = true;
     this.cboKhoa.Size               = new System.Drawing.Size(632, 21);
     this.cboKhoa.TabIndex           = 0;
     this.cboKhoa.Text               = "Khoa thực hiện";
     this.cboKhoa.VisualStyle        = Janus.Windows.UI.VisualStyle.Office2003;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(13, 29);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(104, 15);
     this.label4.TabIndex  = 44;
     this.label4.Text      = "Khoa KCB";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboNhanvien
     //
     this.cboNhanvien.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboNhanvien.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboNhanvien.Location           = new System.Drawing.Point(123, 81);
     this.cboNhanvien.Name               = "cboNhanvien";
     this.cboNhanvien.SelectInDataSource = true;
     this.cboNhanvien.Size               = new System.Drawing.Size(632, 21);
     this.cboNhanvien.TabIndex           = 3;
     this.cboNhanvien.Text               = "Nhân viên";
     this.cboNhanvien.VisualStyle        = Janus.Windows.UI.VisualStyle.Office2003;
     //
     // label8
     //
     this.label8.Location  = new System.Drawing.Point(13, 82);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(104, 15);
     this.label8.TabIndex  = 30;
     this.label8.Text      = "Thu ngân viên:";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboDoituongKCB
     //
     this.cboDoituongKCB.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboDoituongKCB.ItemsFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
     this.cboDoituongKCB.Location           = new System.Drawing.Point(123, 54);
     this.cboDoituongKCB.Name               = "cboDoituongKCB";
     this.cboDoituongKCB.SelectInDataSource = true;
     this.cboDoituongKCB.Size               = new System.Drawing.Size(200, 21);
     this.cboDoituongKCB.TabIndex           = 1;
     this.cboDoituongKCB.Text               = "Đối tượng";
     this.cboDoituongKCB.VisualStyle        = Janus.Windows.UI.VisualStyle.Office2003;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(13, 57);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(104, 15);
     this.label1.TabIndex  = 16;
     this.label1.Text      = "Đối tượng KCB:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // dtToDate
     //
     this.dtToDate.CustomFormat = "dd/MM/yyyy";
     this.dtToDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtToDate.DropDownCalendar.Name        = "";
     this.dtToDate.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     this.dtToDate.Font        = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtToDate.Location    = new System.Drawing.Point(246, 108);
     this.dtToDate.Name        = "dtToDate";
     this.dtToDate.ShowUpDown  = true;
     this.dtToDate.Size        = new System.Drawing.Size(117, 21);
     this.dtToDate.TabIndex    = 6;
     this.dtToDate.Value       = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
     this.dtToDate.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     //
     // dtFromDate
     //
     this.dtFromDate.CustomFormat = "dd/MM/yyyy";
     this.dtFromDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtFromDate.DropDownCalendar.Name        = "";
     this.dtFromDate.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     this.dtFromDate.Font        = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtFromDate.Location    = new System.Drawing.Point(123, 108);
     this.dtFromDate.Name        = "dtFromDate";
     this.dtFromDate.ShowUpDown  = true;
     this.dtFromDate.Size        = new System.Drawing.Size(117, 21);
     this.dtFromDate.TabIndex    = 5;
     this.dtFromDate.Value       = new System.DateTime(2014, 9, 28, 0, 0, 0, 0);
     this.dtFromDate.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
     //
     // chkByDate
     //
     this.chkByDate.Checked    = true;
     this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkByDate.Location   = new System.Drawing.Point(48, 109);
     this.chkByDate.Name       = "chkByDate";
     this.chkByDate.Size       = new System.Drawing.Size(69, 23);
     this.chkByDate.TabIndex   = 4;
     this.chkByDate.Text       = "Từ ngày";
     //
     // uiGroupBox1
     //
     this.uiGroupBox1.Controls.Add(this.chktienvacxin);
     this.uiGroupBox1.Controls.Add(this.chktientiem);
     this.uiGroupBox1.Controls.Add(this.chktienkham);
     this.uiGroupBox1.Location = new System.Drawing.Point(373, 103);
     this.uiGroupBox1.Name     = "uiGroupBox1";
     this.uiGroupBox1.Size     = new System.Drawing.Size(382, 41);
     this.uiGroupBox1.TabIndex = 60;
     this.uiGroupBox1.Text     = "Điều kiện";
     //
     // chktienkham
     //
     this.chktienkham.Checked     = true;
     this.chktienkham.CheckState  = System.Windows.Forms.CheckState.Checked;
     this.chktienkham.Location    = new System.Drawing.Point(39, 14);
     this.chktienkham.Name        = "chktienkham";
     this.chktienkham.Size        = new System.Drawing.Size(98, 23);
     this.chktienkham.TabIndex    = 8;
     this.chktienkham.Text        = "Tiền khám";
     this.chktienkham.VisualStyle = Janus.Windows.UI.VisualStyle.VS2005;
     //
     // chktientiem
     //
     this.chktientiem.Checked     = true;
     this.chktientiem.CheckState  = System.Windows.Forms.CheckState.Checked;
     this.chktientiem.Location    = new System.Drawing.Point(165, 14);
     this.chktientiem.Name        = "chktientiem";
     this.chktientiem.Size        = new System.Drawing.Size(98, 23);
     this.chktientiem.TabIndex    = 9;
     this.chktientiem.Text        = "Tiền tiêm";
     this.chktientiem.VisualStyle = Janus.Windows.UI.VisualStyle.VS2005;
     //
     // chktienvacxin
     //
     this.chktienvacxin.Checked     = true;
     this.chktienvacxin.CheckState  = System.Windows.Forms.CheckState.Checked;
     this.chktienvacxin.Location    = new System.Drawing.Point(284, 14);
     this.chktienvacxin.Name        = "chktienvacxin";
     this.chktienvacxin.Size        = new System.Drawing.Size(92, 23);
     this.chktienvacxin.TabIndex    = 10;
     this.chktienvacxin.Text        = "Tiền vacxin";
     this.chktienvacxin.VisualStyle = Janus.Windows.UI.VisualStyle.VS2005;
     //
     // baocaO_TIEUDE1
     //
     this.baocaO_TIEUDE1.BackColor         = System.Drawing.SystemColors.Control;
     this.baocaO_TIEUDE1.Dock              = System.Windows.Forms.DockStyle.Top;
     this.baocaO_TIEUDE1.Location          = new System.Drawing.Point(0, 0);
     this.baocaO_TIEUDE1.MA_BAOCAO         = "THUOC_BCDSACH_BNHANLINHTHUOC";
     this.baocaO_TIEUDE1.Name              = "baocaO_TIEUDE1";
     this.baocaO_TIEUDE1.Phimtat           = "Bạn có thể sử dụng phím tắt";
     this.baocaO_TIEUDE1.PicImg            = ((System.Drawing.Image)(resources.GetObject("baocaO_TIEUDE1.PicImg")));
     this.baocaO_TIEUDE1.ShortcutAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.baocaO_TIEUDE1.ShortcutFont      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.baocaO_TIEUDE1.showHelp          = false;
     this.baocaO_TIEUDE1.Size              = new System.Drawing.Size(1062, 53);
     this.baocaO_TIEUDE1.TabIndex          = 115;
     this.baocaO_TIEUDE1.TIEUDE            = "BÁO CÁO THU TIỀN DỊCH VỤ KCB";
     this.baocaO_TIEUDE1.TitleFont         = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     //
     // frm_baocaodoanhthutiemchung
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1062, 655);
     this.Controls.Add(this.uiGroupBox2);
     this.Controls.Add(this.baocaO_TIEUDE1);
     this.Controls.Add(this.cmdExportToExcel);
     this.Controls.Add(this.dtNgayInPhieu);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.cmdInPhieuXN);
     this.Controls.Add(this.cmdExit);
     this.KeyPreview    = true;
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "frm_baocaodoanhthutiemchung";
     this.ShowIcon      = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "BÁO CÁO THU TIỀN DỊCH VỤ KCB";
     this.Load         += new System.EventHandler(this.frm_BAOCAO_TONGHOP_TAI_KKB_DTUONG_THUPHI_Load);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
     this.uiGroupBox2.ResumeLayout(false);
     this.uiGroupBox2.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdChitiet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
     this.uiGroupBox1.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_baocao_tinhhinhsudung_vacxin));
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem17 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem18 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem19 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem20 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem21 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem22 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem23 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem24 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem25 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem26 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem27 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem28 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem29 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem30 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem31 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem      uiComboBoxItem32 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout      = new Janus.Windows.GridEX.GridEXLayout();
     this.panel1           = new System.Windows.Forms.Panel();
     this.baocaO_TIEUDE1   = new VNS.HIS.UI.FORMs.BAOCAO.BHYT.UserControls.BAOCAO_TIEUDE();
     this.label1           = new System.Windows.Forms.Label();
     this.dtNgayIn         = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.cmdBaoCao        = new Janus.Windows.EditControls.UIButton();
     this.cmdExit          = new Janus.Windows.EditControls.UIButton();
     this.uiGroupBox1      = new Janus.Windows.EditControls.UIGroupBox();
     this.label2           = new System.Windows.Forms.Label();
     this.optNgay          = new System.Windows.Forms.RadioButton();
     this.dtpNam           = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.optNam           = new System.Windows.Forms.RadioButton();
     this.cboQuy           = new Janus.Windows.EditControls.UIComboBox();
     this.optQuy           = new System.Windows.Forms.RadioButton();
     this.cboThang         = new Janus.Windows.EditControls.UIComboBox();
     this.optThang         = new System.Windows.Forms.RadioButton();
     this.panel2           = new System.Windows.Forms.Panel();
     this.grdList          = new Janus.Windows.GridEX.GridEX();
     this.txtthuoc         = new VNS.HIS.UCs.AutoCompleteTextbox_Thuoc();
     this.txtLoaithuoc     = new VNS.HIS.UCs.AutoCompleteTextbox();
     this.label6           = new System.Windows.Forms.Label();
     this.label7           = new System.Windows.Forms.Label();
     this.chkBiendong      = new Janus.Windows.EditControls.UICheckBox();
     this.chkTheoNhomThuoc = new Janus.Windows.EditControls.UICheckBox();
     this.label3           = new System.Windows.Forms.Label();
     this.cboKho           = new Janus.Windows.EditControls.UIComboBox();
     this.dtToDate         = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtFromDate       = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.cmdExportToExcel = new Janus.Windows.EditControls.UIButton();
     this.saveFileDialog1  = new System.Windows.Forms.SaveFileDialog();
     this.gridEXExporter1  = new Janus.Windows.GridEX.Export.GridEXExporter(this.components);
     this.printDialog1     = new System.Windows.Forms.PrintDialog();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
     this.uiGroupBox1.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.Control;
     this.panel1.Controls.Add(this.baocaO_TIEUDE1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(784, 41);
     this.panel1.TabIndex = 1;
     //
     // baocaO_TIEUDE1
     //
     this.baocaO_TIEUDE1.BackColor         = System.Drawing.SystemColors.Control;
     this.baocaO_TIEUDE1.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.baocaO_TIEUDE1.Location          = new System.Drawing.Point(0, 0);
     this.baocaO_TIEUDE1.MA_BAOCAO         = "VACXIN_BC_TINHHINHSUDUNG";
     this.baocaO_TIEUDE1.Name              = "baocaO_TIEUDE1";
     this.baocaO_TIEUDE1.Phimtat           = "Bạn có thể sử dụng phím tắt";
     this.baocaO_TIEUDE1.PicImg            = ((System.Drawing.Image)(resources.GetObject("baocaO_TIEUDE1.PicImg")));
     this.baocaO_TIEUDE1.ShortcutAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.baocaO_TIEUDE1.ShortcutFont      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.baocaO_TIEUDE1.showHelp          = false;
     this.baocaO_TIEUDE1.Size              = new System.Drawing.Size(784, 41);
     this.baocaO_TIEUDE1.TabIndex          = 1;
     this.baocaO_TIEUDE1.TIEUDE            = "BÁO CÁO TÌNH HÌNH SỬ DỤNG VẮC XIN";
     this.baocaO_TIEUDE1.TitleFont         = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     //
     // label1
     //
     this.label1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     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.Location = new System.Drawing.Point(5, 534);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(51, 15);
     this.label1.TabIndex = 7;
     this.label1.Text     = "Ngày in ";
     //
     // dtNgayIn
     //
     this.dtNgayIn.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.dtNgayIn.CustomFormat = "dd/MM/yyyy";
     this.dtNgayIn.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtNgayIn.DropDownCalendar.Name = "";
     this.dtNgayIn.Font       = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtNgayIn.Location   = new System.Drawing.Point(62, 531);
     this.dtNgayIn.Name       = "dtNgayIn";
     this.dtNgayIn.ShowUpDown = true;
     this.dtNgayIn.Size       = new System.Drawing.Size(134, 21);
     this.dtNgayIn.TabIndex   = 10;
     this.dtNgayIn.Value      = new System.DateTime(2014, 9, 11, 0, 0, 0, 0);
     //
     // cmdBaoCao
     //
     this.cmdBaoCao.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdBaoCao.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdBaoCao.Image     = ((System.Drawing.Image)(resources.GetObject("cmdBaoCao.Image")));
     this.cmdBaoCao.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdBaoCao.Location  = new System.Drawing.Point(522, 525);
     this.cmdBaoCao.Name      = "cmdBaoCao";
     this.cmdBaoCao.Size      = new System.Drawing.Size(122, 30);
     this.cmdBaoCao.TabIndex  = 8;
     this.cmdBaoCao.Text      = "In Báo cáo";
     this.cmdBaoCao.Click    += new System.EventHandler(this.cmdBaoCao_Click_1);
     //
     // cmdExit
     //
     this.cmdExit.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     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.ImageSize = new System.Drawing.Size(32, 32);
     this.cmdExit.Location  = new System.Drawing.Point(650, 525);
     this.cmdExit.Name      = "cmdExit";
     this.cmdExit.Size      = new System.Drawing.Size(122, 30);
     this.cmdExit.TabIndex  = 11;
     this.cmdExit.Text      = "Thoát ";
     //
     // uiGroupBox1
     //
     this.uiGroupBox1.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.uiGroupBox1.Controls.Add(this.label2);
     this.uiGroupBox1.Controls.Add(this.optNgay);
     this.uiGroupBox1.Controls.Add(this.dtpNam);
     this.uiGroupBox1.Controls.Add(this.optNam);
     this.uiGroupBox1.Controls.Add(this.cboQuy);
     this.uiGroupBox1.Controls.Add(this.optQuy);
     this.uiGroupBox1.Controls.Add(this.cboThang);
     this.uiGroupBox1.Controls.Add(this.optThang);
     this.uiGroupBox1.Controls.Add(this.panel2);
     this.uiGroupBox1.Controls.Add(this.txtthuoc);
     this.uiGroupBox1.Controls.Add(this.txtLoaithuoc);
     this.uiGroupBox1.Controls.Add(this.label6);
     this.uiGroupBox1.Controls.Add(this.label7);
     this.uiGroupBox1.Controls.Add(this.chkBiendong);
     this.uiGroupBox1.Controls.Add(this.chkTheoNhomThuoc);
     this.uiGroupBox1.Controls.Add(this.label3);
     this.uiGroupBox1.Controls.Add(this.cboKho);
     this.uiGroupBox1.Controls.Add(this.dtToDate);
     this.uiGroupBox1.Controls.Add(this.dtFromDate);
     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, 47);
     this.uiGroupBox1.Name     = "uiGroupBox1";
     this.uiGroupBox1.Size     = new System.Drawing.Size(784, 467);
     this.uiGroupBox1.TabIndex = 13;
     this.uiGroupBox1.Text     = "Điều kiện báo cáo";
     //
     // label2
     //
     this.label2.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location  = new System.Drawing.Point(296, 136);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(69, 23);
     this.label2.TabIndex  = 49;
     this.label2.Text      = "đến ngày";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // optNgay
     //
     this.optNgay.AutoSize = true;
     this.optNgay.Location = new System.Drawing.Point(38, 138);
     this.optNgay.Name     = "optNgay";
     this.optNgay.Size     = new System.Drawing.Size(72, 19);
     this.optNgay.TabIndex = 48;
     this.optNgay.Text     = "Từ ngày:";
     this.optNgay.UseVisualStyleBackColor = true;
     //
     // dtpNam
     //
     this.dtpNam.CustomFormat = "yyyy ";
     this.dtpNam.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtpNam.DropDownCalendar.Name = "";
     this.dtpNam.Font          = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtpNam.Location      = new System.Drawing.Point(608, 107);
     this.dtpNam.Name          = "dtpNam";
     this.dtpNam.ShowUpDown    = true;
     this.dtpNam.Size          = new System.Drawing.Size(113, 21);
     this.dtpNam.TabIndex      = 47;
     this.dtpNam.Value         = new System.DateTime(2014, 9, 11, 0, 0, 0, 0);
     this.dtpNam.ValueChanged += new System.EventHandler(this.dtpNam_ValueChanged);
     //
     // optNam
     //
     this.optNam.AutoSize = true;
     this.optNam.Location = new System.Drawing.Point(516, 110);
     this.optNam.Name     = "optNam";
     this.optNam.Size     = new System.Drawing.Size(86, 19);
     this.optNam.TabIndex = 46;
     this.optNam.Text     = "Theo Năm:";
     this.optNam.UseVisualStyleBackColor = true;
     //
     // cboQuy
     //
     this.cboQuy.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     uiComboBoxItem17.FormatStyle.Alpha = 0;
     uiComboBoxItem17.IsSeparator       = false;
     uiComboBoxItem17.Text              = "Quý 1";
     uiComboBoxItem17.Value             = ((byte)(1));
     uiComboBoxItem18.FormatStyle.Alpha = 0;
     uiComboBoxItem18.IsSeparator       = false;
     uiComboBoxItem18.Text              = "Quý 2";
     uiComboBoxItem18.Value             = ((byte)(2));
     uiComboBoxItem19.FormatStyle.Alpha = 0;
     uiComboBoxItem19.IsSeparator       = false;
     uiComboBoxItem19.Text              = "Quý 3";
     uiComboBoxItem19.Value             = ((byte)(3));
     uiComboBoxItem20.FormatStyle.Alpha = 0;
     uiComboBoxItem20.IsSeparator       = false;
     uiComboBoxItem20.Text              = "Quý 4";
     uiComboBoxItem20.Value             = ((byte)(4));
     this.cboQuy.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem17,
         uiComboBoxItem18,
         uiComboBoxItem19,
         uiComboBoxItem20
     });
     this.cboQuy.Location              = new System.Drawing.Point(371, 109);
     this.cboQuy.Name                  = "cboQuy";
     this.cboQuy.Size                  = new System.Drawing.Size(139, 21);
     this.cboQuy.TabIndex              = 45;
     this.cboQuy.Text                  = "Chọn Quý";
     this.cboQuy.SelectedValueChanged += new System.EventHandler(this.cboQuy_SelectedValueChanged);
     //
     // optQuy
     //
     this.optQuy.AutoSize = true;
     this.optQuy.Location = new System.Drawing.Point(285, 109);
     this.optQuy.Name     = "optQuy";
     this.optQuy.Size     = new System.Drawing.Size(80, 19);
     this.optQuy.TabIndex = 44;
     this.optQuy.Text     = "Theo Quý:";
     this.optQuy.UseVisualStyleBackColor = true;
     //
     // cboThang
     //
     this.cboThang.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     uiComboBoxItem21.FormatStyle.Alpha = 0;
     uiComboBoxItem21.IsSeparator       = false;
     uiComboBoxItem21.Text              = "Tháng 1";
     uiComboBoxItem21.Value             = "1";
     uiComboBoxItem22.FormatStyle.Alpha = 0;
     uiComboBoxItem22.IsSeparator       = false;
     uiComboBoxItem22.Text              = "Tháng 2";
     uiComboBoxItem22.Value             = "2";
     uiComboBoxItem23.FormatStyle.Alpha = 0;
     uiComboBoxItem23.IsSeparator       = false;
     uiComboBoxItem23.Text              = "Tháng 3";
     uiComboBoxItem23.Value             = "3";
     uiComboBoxItem24.FormatStyle.Alpha = 0;
     uiComboBoxItem24.IsSeparator       = false;
     uiComboBoxItem24.Text              = "Tháng 4";
     uiComboBoxItem24.Value             = "4";
     uiComboBoxItem25.FormatStyle.Alpha = 0;
     uiComboBoxItem25.IsSeparator       = false;
     uiComboBoxItem25.Text              = "Tháng 5";
     uiComboBoxItem25.Value             = "5";
     uiComboBoxItem26.FormatStyle.Alpha = 0;
     uiComboBoxItem26.IsSeparator       = false;
     uiComboBoxItem26.Text              = "Tháng 6";
     uiComboBoxItem26.Value             = "6";
     uiComboBoxItem27.FormatStyle.Alpha = 0;
     uiComboBoxItem27.IsSeparator       = false;
     uiComboBoxItem27.Text              = "Tháng 7";
     uiComboBoxItem27.Value             = "7";
     uiComboBoxItem28.FormatStyle.Alpha = 0;
     uiComboBoxItem28.IsSeparator       = false;
     uiComboBoxItem28.Text              = "Tháng 8";
     uiComboBoxItem28.Value             = "8";
     uiComboBoxItem29.FormatStyle.Alpha = 0;
     uiComboBoxItem29.IsSeparator       = false;
     uiComboBoxItem29.Text              = "Tháng 9";
     uiComboBoxItem29.Value             = "9";
     uiComboBoxItem30.FormatStyle.Alpha = 0;
     uiComboBoxItem30.IsSeparator       = false;
     uiComboBoxItem30.Text              = "Tháng 10";
     uiComboBoxItem30.Value             = "10";
     uiComboBoxItem31.FormatStyle.Alpha = 0;
     uiComboBoxItem31.IsSeparator       = false;
     uiComboBoxItem31.Text              = "Tháng 11";
     uiComboBoxItem31.Value             = "11";
     uiComboBoxItem32.FormatStyle.Alpha = 0;
     uiComboBoxItem32.IsSeparator       = false;
     uiComboBoxItem32.Text              = "Tháng 12";
     uiComboBoxItem32.Value             = "12";
     this.cboThang.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
         uiComboBoxItem21,
         uiComboBoxItem22,
         uiComboBoxItem23,
         uiComboBoxItem24,
         uiComboBoxItem25,
         uiComboBoxItem26,
         uiComboBoxItem27,
         uiComboBoxItem28,
         uiComboBoxItem29,
         uiComboBoxItem30,
         uiComboBoxItem31,
         uiComboBoxItem32
     });
     this.cboThang.Location              = new System.Drawing.Point(140, 109);
     this.cboThang.Name                  = "cboThang";
     this.cboThang.Size                  = new System.Drawing.Size(139, 21);
     this.cboThang.TabIndex              = 43;
     this.cboThang.Text                  = "Chọn tháng";
     this.cboThang.SelectedIndexChanged += new System.EventHandler(this.cboThang_SelectedIndexChanged);
     //
     // optThang
     //
     this.optThang.AutoSize = true;
     this.optThang.Checked  = true;
     this.optThang.Location = new System.Drawing.Point(38, 109);
     this.optThang.Name     = "optThang";
     this.optThang.Size     = new System.Drawing.Size(94, 19);
     this.optThang.TabIndex = 42;
     this.optThang.TabStop  = true;
     this.optThang.Text     = "Theo Tháng:";
     this.optThang.UseVisualStyleBackColor = true;
     //
     // panel2
     //
     this.panel2.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.panel2.Controls.Add(this.grdList);
     this.panel2.Location = new System.Drawing.Point(6, 204);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(772, 257);
     this.panel2.TabIndex = 37;
     //
     // grdList
     //
     this.grdList.AlternatingColors        = true;
     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.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.grdList.FilterRowUpdateMode            = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
     this.grdList.Font = new System.Drawing.Font("Arial", 9F);
     this.grdList.GroupByBoxVisible      = false;
     this.grdList.HideColumnsWhenGrouped = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.HideSelection          = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdList.Location         = new System.Drawing.Point(0, 0);
     this.grdList.Name             = "grdList";
     this.grdList.RowHeaders       = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.Size             = new System.Drawing.Size(772, 257);
     this.grdList.TabIndex         = 12;
     this.grdList.TableHeaders     = Janus.Windows.GridEX.InheritableBoolean.Default;
     this.grdList.TabStop          = false;
     this.grdList.TotalRow         = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdList.VisualStyle      = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // txtthuoc
     //
     this.txtthuoc._backcolor           = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.txtthuoc._Font                = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtthuoc.AllowedSelectPrice   = false;
     this.txtthuoc.AutoCompleteList     = ((System.Collections.Generic.List <string>)(resources.GetObject("txtthuoc.AutoCompleteList")));
     this.txtthuoc.BorderStyle          = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtthuoc.CaseSensitive        = false;
     this.txtthuoc.CompareNoID          = true;
     this.txtthuoc.DefaultCode          = "-1";
     this.txtthuoc.DefaultID            = "-1";
     this.txtthuoc.Drug_ID              = null;
     this.txtthuoc.ExtraWidth           = 0;
     this.txtthuoc.ExtraWidth_Pre       = 0;
     this.txtthuoc.FillValueAfterSelect = false;
     this.txtthuoc.Font                     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtthuoc.GridView                 = false;
     this.txtthuoc.Location                 = new System.Drawing.Point(140, 83);
     this.txtthuoc.MaxHeight                = -1;
     this.txtthuoc.MinTypedCharacters       = 2;
     this.txtthuoc.MyCode                   = "-1";
     this.txtthuoc.MyID                     = "-1";
     this.txtthuoc.MyText                   = "";
     this.txtthuoc.Name                     = "txtthuoc";
     this.txtthuoc.RaiseEvent               = false;
     this.txtthuoc.RaiseEventEnter          = false;
     this.txtthuoc.RaiseEventEnterWhenEmpty = false;
     this.txtthuoc.SelectedIndex            = -1;
     this.txtthuoc.Size                     = new System.Drawing.Size(581, 21);
     this.txtthuoc.splitChar                = '@';
     this.txtthuoc.splitCharIDAndCode       = '#';
     this.txtthuoc.TabIndex                 = 2;
     this.txtthuoc.TakeCode                 = false;
     this.txtthuoc.txtMyCode                = null;
     this.txtthuoc.txtMyCode_Edit           = null;
     this.txtthuoc.txtMyID                  = null;
     this.txtthuoc.txtMyID_Edit             = null;
     this.txtthuoc.txtMyName                = null;
     this.txtthuoc.txtMyName_Edit           = null;
     this.txtthuoc.txtNext                  = null;
     //
     // 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.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtLoaithuoc._TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     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           = 0;
     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(140, 56);
     this.txtLoaithuoc.MaxHeight                = -1;
     this.txtLoaithuoc.MinTypedCharacters       = 2;
     this.txtLoaithuoc.MyCode                   = "-1";
     this.txtLoaithuoc.MyID                     = "-1";
     this.txtLoaithuoc.MyText                   = "";
     this.txtLoaithuoc.Name                     = "txtLoaithuoc";
     this.txtLoaithuoc.RaiseEvent               = true;
     this.txtLoaithuoc.RaiseEventEnter          = true;
     this.txtLoaithuoc.RaiseEventEnterWhenEmpty = true;
     this.txtLoaithuoc.SelectedIndex            = -1;
     this.txtLoaithuoc.Size                     = new System.Drawing.Size(581, 21);
     this.txtLoaithuoc.splitChar                = '@';
     this.txtLoaithuoc.splitCharIDAndCode       = '#';
     this.txtLoaithuoc.TabIndex                 = 1;
     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;
     //
     // label6
     //
     this.label6.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location  = new System.Drawing.Point(7, 83);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(126, 23);
     this.label6.TabIndex  = 33;
     this.label6.Text      = "Tên thuốc";
     this.label6.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(7, 56);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(126, 23);
     this.label7.TabIndex  = 32;
     this.label7.Text      = "Loại thuốc";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // chkBiendong
     //
     this.chkBiendong.Checked    = true;
     this.chkBiendong.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkBiendong.Font       = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkBiendong.Location   = new System.Drawing.Point(139, 175);
     this.chkBiendong.Name       = "chkBiendong";
     this.chkBiendong.Size       = new System.Drawing.Size(220, 23);
     this.chkBiendong.TabIndex   = 5;
     this.chkBiendong.Text       = "Chỉ lấy dữ liệu vắc xin có biến động?";
     //
     // chkTheoNhomThuoc
     //
     this.chkTheoNhomThuoc.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkTheoNhomThuoc.Location = new System.Drawing.Point(381, 175);
     this.chkTheoNhomThuoc.Name     = "chkTheoNhomThuoc";
     this.chkTheoNhomThuoc.Size     = new System.Drawing.Size(237, 23);
     this.chkTheoNhomThuoc.TabIndex = 7;
     this.chkTheoNhomThuoc.Text     = "Báo cáo nhóm theo loại  vắc xin?";
     //
     // 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(7, 27);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(126, 23);
     this.label3.TabIndex  = 8;
     this.label3.Text      = "Chọn kho";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboKho
     //
     this.cboKho.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboKho.Location = new System.Drawing.Point(139, 27);
     this.cboKho.Name     = "cboKho";
     this.cboKho.Size     = new System.Drawing.Size(371, 21);
     this.cboKho.TabIndex = 0;
     this.cboKho.Text     = "Kho";
     //
     // dtToDate
     //
     this.dtToDate.CustomFormat = "dd/MM/yyyy ";
     this.dtToDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtToDate.DropDownCalendar.Name = "";
     this.dtToDate.Font       = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtToDate.Location   = new System.Drawing.Point(371, 136);
     this.dtToDate.Name       = "dtToDate";
     this.dtToDate.ShowUpDown = true;
     this.dtToDate.Size       = new System.Drawing.Size(139, 21);
     this.dtToDate.TabIndex   = 4;
     this.dtToDate.Value      = new System.DateTime(2014, 9, 11, 0, 0, 0, 0);
     //
     // dtFromDate
     //
     this.dtFromDate.CustomFormat = "dd/MM/yyyy ";
     this.dtFromDate.DateFormat   = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtFromDate.DropDownCalendar.Name = "";
     this.dtFromDate.Font       = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtFromDate.Location   = new System.Drawing.Point(140, 136);
     this.dtFromDate.Name       = "dtFromDate";
     this.dtFromDate.ShowUpDown = true;
     this.dtFromDate.Size       = new System.Drawing.Size(139, 21);
     this.dtFromDate.TabIndex   = 3;
     this.dtFromDate.Value      = new System.DateTime(2014, 9, 11, 0, 0, 0, 0);
     //
     // cmdExportToExcel
     //
     this.cmdExportToExcel.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdExportToExcel.Font        = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdExportToExcel.Image       = ((System.Drawing.Image)(resources.GetObject("cmdExportToExcel.Image")));
     this.cmdExportToExcel.ImageSize   = new System.Drawing.Size(24, 24);
     this.cmdExportToExcel.Location    = new System.Drawing.Point(394, 525);
     this.cmdExportToExcel.Name        = "cmdExportToExcel";
     this.cmdExportToExcel.Size        = new System.Drawing.Size(122, 30);
     this.cmdExportToExcel.TabIndex    = 9;
     this.cmdExportToExcel.Text        = "Xuất Excel";
     this.cmdExportToExcel.ToolTipText = "Bạn nhấn nút in phiếu để thực hiện in phiếu xét nghiệm cho bệnh nhân";
     this.cmdExportToExcel.Click      += new System.EventHandler(this.cmdExportToExcel_Click);
     //
     // gridEXExporter1
     //
     this.gridEXExporter1.GridEX = this.grdList;
     //
     // printDialog1
     //
     this.printDialog1.UseEXDialog = true;
     //
     // frm_baocao_tinhhinhsudung_vacxin
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize    = new System.Drawing.Size(784, 562);
     this.Controls.Add(this.cmdExportToExcel);
     this.Controls.Add(this.uiGroupBox1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.dtNgayIn);
     this.Controls.Add(this.cmdBaoCao);
     this.Controls.Add(this.cmdExit);
     this.Controls.Add(this.panel1);
     this.KeyPreview    = true;
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "frm_baocao_tinhhinhsudung_vacxin";
     this.ShowIcon      = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "BÁO CÁO TÌNH HÌNH SỬ DỤNG VẮC XIN";
     this.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.frm_baocao_tinhhinhsudung_vacxin_KeyDown_1);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
     this.uiGroupBox1.ResumeLayout(false);
     this.uiGroupBox1.PerformLayout();
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     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_QuanlyPhieudieutri));
            Janus.Windows.GridEX.GridEXLayout grdAssignDetail_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdGoidichvu_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdPhieudieutri_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.Common.Layouts.JanusLayoutReference grdPhieudieutri_DesignTimeLayout_Reference_0 = new Janus.Windows.Common.Layouts.JanusLayoutReference("GridEXLayoutData.RootTable.Columns.Column1.ButtonImage");
            Janus.Windows.Common.Layouts.JanusLayoutReference grdPhieudieutri_DesignTimeLayout_Reference_1 = new Janus.Windows.Common.Layouts.JanusLayoutReference("GridEXLayoutData.RootTable.Columns.Column2.ButtonImage");
            Janus.Windows.GridEX.GridEXLayout grdBuongGiuong_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdPatientList_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.Common.Layouts.JanusLayoutReference grdPatientList_DesignTimeLayout_Reference_0 = new Janus.Windows.Common.Layouts.JanusLayoutReference("GridEXLayoutData.RootTable.Columns.Column0.ButtonImage");
            Janus.Windows.GridEX.GridEXLayout grd_ICD_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdChandoan_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.Common.Layouts.JanusLayoutReference grdChandoan_DesignTimeLayout_Reference_0 = new Janus.Windows.Common.Layouts.JanusLayoutReference("GridEXLayoutData.RootTable.Columns.Column1.ButtonImage");
            Janus.Windows.GridEX.GridEXLayout grdKetqua_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdPresDetail_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdVTTH_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdVTTH_tronggoi_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.GridEX.GridEXLayout grdChedoDinhduong_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            Janus.Windows.Common.Layouts.JanusLayoutReference grdChedoDinhduong_DesignTimeLayout_Reference_0 = new Janus.Windows.Common.Layouts.JanusLayoutReference("GridEXLayoutData.RootTable.Columns.Column1.ButtonImage");
            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.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.EditControls.UIComboBoxItem uiComboBoxItem10 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem11 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem12 = new Janus.Windows.EditControls.UIComboBoxItem();
            Janus.Windows.GridEX.GridEXLayout grdTamung_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            this.grpSearch = new Janus.Windows.EditControls.UIGroupBox();
            this.chkChuyenkhoa = new Janus.Windows.EditControls.UICheckBox();
            this.cboKhoanoitru = new System.Windows.Forms.ComboBox();
            this.label22 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.txtMaluotkham = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
            this.label3 = new System.Windows.Forms.Label();
            this.txtTenBN = new System.Windows.Forms.TextBox();
            this.cmdSearch = new Janus.Windows.EditControls.UIButton();
            this.chkByDate = new Janus.Windows.EditControls.UICheckBox();
            this.dtToDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.dtFromDate = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label14 = new System.Windows.Forms.Label();
            this.cmdCauHinh = new Janus.Windows.EditControls.UIButton();
            this.ctxDelCLS = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.mnuDeleteCLS = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
            this.mnuShowResult = new System.Windows.Forms.ToolStripMenuItem();
            this.ctxDelDrug = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.mnuDelDrug = new System.Windows.Forms.ToolStripMenuItem();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.cmdDelteAssign = new Janus.Windows.EditControls.UIButton();
            this.cmdUpdate = new Janus.Windows.EditControls.UIButton();
            this.cmdInsertAssign = new Janus.Windows.EditControls.UIButton();
            this.grdAssignDetail = new Janus.Windows.GridEX.GridEX();
            this.cmdPrintPres = new Janus.Windows.EditControls.UIButton();
            this.cmdDeletePres = new Janus.Windows.EditControls.UIButton();
            this.cmdUpdatePres = new Janus.Windows.EditControls.UIButton();
            this.cmdCreateNewPres = new Janus.Windows.EditControls.UIButton();
            this.chkHienthichitiet = new System.Windows.Forms.CheckBox();
            this.cmdPrintAssign = new Janus.Windows.EditControls.UIButton();
            this.cmdInphieuVT = new Janus.Windows.EditControls.UIButton();
            this.cmdXoaphieuVT = new Janus.Windows.EditControls.UIButton();
            this.cmdSuaphieuVT = new Janus.Windows.EditControls.UIButton();
            this.cmdThemphieuVT = new Janus.Windows.EditControls.UIButton();
            this.cmdXoachandoan = new Janus.Windows.EditControls.UIButton();
            this.cmdSuachandoan = new Janus.Windows.EditControls.UIButton();
            this.cmdThemchandoan = new Janus.Windows.EditControls.UIButton();
            this.cmdGhichandoan = new Janus.Windows.EditControls.UIButton();
            this.cmdInphieudieutri = new Janus.Windows.EditControls.UIButton();
            this.cmdxoaphieudieutri = new Janus.Windows.EditControls.UIButton();
            this.cmdSuaphieudieutri = new Janus.Windows.EditControls.UIButton();
            this.cmdthemphieudieutri = new Janus.Windows.EditControls.UIButton();
            this.cmdSaochep = new Janus.Windows.EditControls.UIButton();
            this.chkViewAll = new Janus.Windows.EditControls.UICheckBox();
            this.label24 = new System.Windows.Forms.Label();
            this.txtPatient_Code = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label18 = new System.Windows.Forms.Label();
            this.cmdInphieuVT_tronggoi = new Janus.Windows.EditControls.UIButton();
            this.cmdXoaphieuVT_tronggoi = new Janus.Windows.EditControls.UIButton();
            this.cmdSuaphieuVT_tronggoi = new Janus.Windows.EditControls.UIButton();
            this.cmdThemphieuVT_tronggoi = new Janus.Windows.EditControls.UIButton();
            this.cmdHuychandoan = new Janus.Windows.EditControls.UIButton();
            this.cmdChuyengoi = new Janus.Windows.EditControls.UIButton();
            this.lnkSize = new System.Windows.Forms.LinkLabel();
            this.cmdXoaDinhduong = new Janus.Windows.EditControls.UIButton();
            this.cmdAdd = new Janus.Windows.EditControls.UIButton();
            this.grdGoidichvu = new Janus.Windows.GridEX.GridEX();
            this.cmdIngoiDV = new Janus.Windows.EditControls.UIButton();
            this.cmdXoagoiDV = new Janus.Windows.EditControls.UIButton();
            this.cmdSuagoiDV = new Janus.Windows.EditControls.UIButton();
            this.cmdThemgoiDV = new Janus.Windows.EditControls.UIButton();
            this.panel3 = new System.Windows.Forms.Panel();
            this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
            this.panel5 = new System.Windows.Forms.Panel();
            this.uiTabPhieudieutri = new Janus.Windows.UI.Tab.UITab();
            this.tabPagePhieuDieuTri = new Janus.Windows.UI.Tab.UITabPage();
            this.grdPhieudieutri = new Janus.Windows.GridEX.GridEX();
            this.ctxPhieudieutri = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.tabPageBuonggiuong = new Janus.Windows.UI.Tab.UITabPage();
            this.panel1 = new System.Windows.Forms.Panel();
            this.grdBuongGiuong = new Janus.Windows.GridEX.GridEX();
            this.label51 = new System.Windows.Forms.Label();
            this.panel8 = new System.Windows.Forms.Panel();
            this.txtSongay = new MaskedTextBox.MaskedTextBox();
            this.dtpCreatedDate = new System.Windows.Forms.DateTimePicker();
            this.label23 = new System.Windows.Forms.Label();
            this.panel7 = new System.Windows.Forms.Panel();
            this.grdPatientList = new Janus.Windows.GridEX.GridEX();
            this.dtpNgaylapphieu = new System.Windows.Forms.DateTimePicker();
            this.panel4 = new System.Windows.Forms.Panel();
            this.tabDiagInfo = new Janus.Windows.UI.Tab.UITab();
            this.TabPageChanDoan = new Janus.Windows.UI.Tab.UITabPage();
            this.panel9 = new System.Windows.Forms.Panel();
            this.grd_ICD = new Janus.Windows.GridEX.GridEX();
            this.txtIdChandoan = new Janus.Windows.GridEX.EditControls.EditBox();
            this.dtpNgaychandoan = new System.Windows.Forms.DateTimePicker();
            this.label40 = new System.Windows.Forms.Label();
            this.cmdAddMaBenhPhu = new Janus.Windows.EditControls.UIButton();
            this.label27 = new System.Windows.Forms.Label();
            this.txtChanDoanKemTheo = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.panel10 = new System.Windows.Forms.Panel();
            this.pnlother = new System.Windows.Forms.Panel();
            this.label12 = new System.Windows.Forms.Label();
            this.txtHa = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtNhietDo = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
            this.txtNhipTho = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
            this.txtNhipTim = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
            this.txtMach = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label35 = new System.Windows.Forms.Label();
            this.label36 = new System.Windows.Forms.Label();
            this.label37 = new System.Windows.Forms.Label();
            this.label39 = new System.Windows.Forms.Label();
            this.cmdSearchBenhPhu = new Janus.Windows.EditControls.UIButton();
            this.grdChandoan = new Janus.Windows.GridEX.GridEX();
            this.txtMaBenhphu = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtChanDoan = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.label9 = new System.Windows.Forms.Label();
            this.label46 = new System.Windows.Forms.Label();
            this.label11 = new System.Windows.Forms.Label();
            this.label38 = new System.Windows.Forms.Label();
            this.txtTenBenhPhu = new Janus.Windows.GridEX.EditControls.EditBox();
            this.cmdSearchBenhChinh = new Janus.Windows.EditControls.UIButton();
            this.txtTenBenhChinh = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtMaBenhChinh = new Janus.Windows.GridEX.EditControls.EditBox();
            this.tabPageChiDinhCLS = new Janus.Windows.UI.Tab.UITabPage();
            this.pnlChidinh = new System.Windows.Forms.Panel();
            this.uiTabKqCls = new Janus.Windows.UI.Tab.UITab();
            this.tabPhieuDieuTri = new Janus.Windows.UI.Tab.UITabPage();
            this.pnlXN = new System.Windows.Forms.Panel();
            this.grdKetqua = new Janus.Windows.GridEX.GridEX();
            this.pnlXQ = new System.Windows.Forms.Panel();
            this.pnlDynamicValues = new System.Windows.Forms.FlowLayoutPanel();
            this.barcode1 = new Mabry.Windows.Forms.Barcode.Barcode();
            this.pnlCLS = new System.Windows.Forms.Panel();
            this.chkIntach = new System.Windows.Forms.CheckBox();
            this.cboServicePrint = new System.Windows.Forms.ComboBox();
            this.tabPageChidinhThuoc = new Janus.Windows.UI.Tab.UITabPage();
            this.pnltabkedon = new System.Windows.Forms.Panel();
            this.grdPresDetail = new Janus.Windows.GridEX.GridEX();
            this.pnlDonthuoc = new System.Windows.Forms.Panel();
            this.barcode = new Mabry.Windows.Forms.Barcode.Barcode();
            this.TabPageVTTH = new Janus.Windows.UI.Tab.UITabPage();
            this.grdVTTH = new Janus.Windows.GridEX.GridEX();
            this.pnlVTTH = new System.Windows.Forms.Panel();
            this.tabPagegoimo = new Janus.Windows.UI.Tab.UITabPage();
            this.pnlKetluan = new System.Windows.Forms.Panel();
            this.pnlGoiDV = new System.Windows.Forms.Panel();
            this.chkintachgoidichvu = new System.Windows.Forms.CheckBox();
            this.pnlVTTHTronggoi = new System.Windows.Forms.Panel();
            this.grdVTTH_tronggoi = new Janus.Windows.GridEX.GridEX();
            this.pnlVTTHTronggoi_act = new System.Windows.Forms.Panel();
            this.uiTabPage1 = new Janus.Windows.UI.Tab.UITabPage();
            this.panel15 = new System.Windows.Forms.Panel();
            this.txtHoly = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.label44 = new System.Windows.Forms.Label();
            this.panel14 = new System.Windows.Forms.Panel();
            this.label43 = new System.Windows.Forms.Label();
            this.grdChedoDinhduong = new Janus.Windows.GridEX.GridEX();
            this.txtChedodinhduong = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.tabPageCauhinh = new Janus.Windows.UI.Tab.UITabPage();
            this.panel2 = new System.Windows.Forms.Panel();
            this.cmdNoitruConfig = new Janus.Windows.EditControls.UIButton();
            this.cboPrintPreviewTomtatdieutringoaitru = new Janus.Windows.EditControls.UIComboBox();
            this.cboA4Tomtatdieutringoaitru = new Janus.Windows.EditControls.UIComboBox();
            this.label6 = new System.Windows.Forms.Label();
            this.cboPrintPreviewCLS = new Janus.Windows.EditControls.UIComboBox();
            this.cboA4Cls = new Janus.Windows.EditControls.UIComboBox();
            this.label13 = new System.Windows.Forms.Label();
            this.chkAutocollapse = new System.Windows.Forms.CheckBox();
            this.cmdThamkhamConfig = new Janus.Windows.EditControls.UIButton();
            this.cboLaserPrinters = new System.Windows.Forms.ComboBox();
            this.cboPrintPreviewDonthuoc = new Janus.Windows.EditControls.UIComboBox();
            this.cboA4Donthuoc = new Janus.Windows.EditControls.UIComboBox();
            this.label26 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.vbLine7 = new VNS.UCs.VBLine();
            this.vbLine6 = new VNS.UCs.VBLine();
            this.vbLine5 = new VNS.UCs.VBLine();
            this.pnlThongtinBNKCB = new System.Windows.Forms.Panel();
            this.uiTabThongtinBN = new Janus.Windows.UI.Tab.UITab();
            this.uiTabPage6 = new Janus.Windows.UI.Tab.UITabPage();
            this.pnlPatientInfor = new System.Windows.Forms.Panel();
            this.txtGiuong_lapphieu = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label47 = new System.Windows.Forms.Label();
            this.label49 = new System.Windows.Forms.Label();
            this.label50 = new System.Windows.Forms.Label();
            this.txtKhoanoitru_lapphieu = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtBuong_lapphieu = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtIdPhieudieutri = new System.Windows.Forms.Label();
            this.label45 = new System.Windows.Forms.Label();
            this.lblMsg = new System.Windows.Forms.Label();
            this.txtGiuong = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label8 = new System.Windows.Forms.Label();
            this.label25 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.txtSoBHYT = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label48 = new System.Windows.Forms.Label();
            this.panel6 = new System.Windows.Forms.Panel();
            this.txtNhommau = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
            this.txtNgheNghiep = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtExam_ID = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtHanTheBHYT = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtDepartment_ID = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label21 = new System.Windows.Forms.Label();
            this.label31 = new System.Windows.Forms.Label();
            this.label32 = new System.Windows.Forms.Label();
            this.txtChieucao = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
            this.txtCannang = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
            this.txtKhoanoitru = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label30 = new System.Windows.Forms.Label();
            this.txtPatient_Name = new Janus.Windows.GridEX.EditControls.EditBox();
            this.dtpNgayhethanBHYT = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.label20 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.txtDiachiBHYT = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label17 = new System.Windows.Forms.Label();
            this.txtPatient_ID = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label16 = new System.Windows.Forms.Label();
            this.txtTuoi = new Janus.Windows.GridEX.EditControls.EditBox();
            this.cboBSDieutri = new System.Windows.Forms.ComboBox();
            this.txtBHTT = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtObjectType_Name = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtGioitinh = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtBuong = new Janus.Windows.GridEX.EditControls.EditBox();
            this.label19 = new System.Windows.Forms.Label();
            this.label15 = new System.Windows.Forms.Label();
            this.txtDiaChi = new Janus.Windows.GridEX.EditControls.EditBox();
            this.dtInput_Date = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.vbLine4 = new VNS.UCs.VBLine();
            this.uiTabPage8 = new Janus.Windows.UI.Tab.UITabPage();
            this.panel11 = new System.Windows.Forms.Panel();
            this.grdTamung = new Janus.Windows.GridEX.GridEX();
            this.panel12 = new System.Windows.Forms.Panel();
            this.lblTongChiphi = new System.Windows.Forms.Label();
            this.lblBuonggiuong = new System.Windows.Forms.Label();
            this.lblVTTH = new System.Windows.Forms.Label();
            this.lblDichvu = new System.Windows.Forms.Label();
            this.lblThuoc = new System.Windows.Forms.Label();
            this.lblCLS = new System.Windows.Forms.Label();
            this.label42 = new System.Windows.Forms.Label();
            this.label41 = new System.Windows.Forms.Label();
            this.label34 = new System.Windows.Forms.Label();
            this.label33 = new System.Windows.Forms.Label();
            this.label29 = new System.Windows.Forms.Label();
            this.label28 = new System.Windows.Forms.Label();
            this.pnlThongbao = new System.Windows.Forms.Panel();
            this.lblChenhlech = new System.Windows.Forms.Label();
            this.ucError1 = new VNS.HIS.UCs.UCError();
            ((System.ComponentModel.ISupportInitialize)(this.grpSearch)).BeginInit();
            this.grpSearch.SuspendLayout();
            this.ctxDelCLS.SuspendLayout();
            this.ctxDelDrug.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdAssignDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdGoidichvu)).BeginInit();
            this.panel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
            this.uiGroupBox2.SuspendLayout();
            this.panel5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiTabPhieudieutri)).BeginInit();
            this.uiTabPhieudieutri.SuspendLayout();
            this.tabPagePhieuDieuTri.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdPhieudieutri)).BeginInit();
            this.tabPageBuonggiuong.SuspendLayout();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdBuongGiuong)).BeginInit();
            this.panel8.SuspendLayout();
            this.panel7.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdPatientList)).BeginInit();
            this.panel4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tabDiagInfo)).BeginInit();
            this.tabDiagInfo.SuspendLayout();
            this.TabPageChanDoan.SuspendLayout();
            this.panel9.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grd_ICD)).BeginInit();
            this.panel10.SuspendLayout();
            this.pnlother.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdChandoan)).BeginInit();
            this.tabPageChiDinhCLS.SuspendLayout();
            this.pnlChidinh.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiTabKqCls)).BeginInit();
            this.uiTabKqCls.SuspendLayout();
            this.tabPhieuDieuTri.SuspendLayout();
            this.pnlXN.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdKetqua)).BeginInit();
            this.pnlXQ.SuspendLayout();
            this.pnlCLS.SuspendLayout();
            this.tabPageChidinhThuoc.SuspendLayout();
            this.pnltabkedon.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdPresDetail)).BeginInit();
            this.pnlDonthuoc.SuspendLayout();
            this.TabPageVTTH.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdVTTH)).BeginInit();
            this.pnlVTTH.SuspendLayout();
            this.tabPagegoimo.SuspendLayout();
            this.pnlKetluan.SuspendLayout();
            this.pnlGoiDV.SuspendLayout();
            this.pnlVTTHTronggoi.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdVTTH_tronggoi)).BeginInit();
            this.pnlVTTHTronggoi_act.SuspendLayout();
            this.uiTabPage1.SuspendLayout();
            this.panel15.SuspendLayout();
            this.panel14.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdChedoDinhduong)).BeginInit();
            this.tabPageCauhinh.SuspendLayout();
            this.panel2.SuspendLayout();
            this.pnlThongtinBNKCB.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiTabThongtinBN)).BeginInit();
            this.uiTabThongtinBN.SuspendLayout();
            this.uiTabPage6.SuspendLayout();
            this.pnlPatientInfor.SuspendLayout();
            this.panel6.SuspendLayout();
            this.uiTabPage8.SuspendLayout();
            this.panel11.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdTamung)).BeginInit();
            this.panel12.SuspendLayout();
            this.pnlThongbao.SuspendLayout();
            this.SuspendLayout();
            // 
            // grpSearch
            // 
            this.grpSearch.BackColor = System.Drawing.SystemColors.Control;
            this.grpSearch.Controls.Add(this.chkChuyenkhoa);
            this.grpSearch.Controls.Add(this.cboKhoanoitru);
            this.grpSearch.Controls.Add(this.label22);
            this.grpSearch.Controls.Add(this.label1);
            this.grpSearch.Controls.Add(this.txtMaluotkham);
            this.grpSearch.Controls.Add(this.label3);
            this.grpSearch.Controls.Add(this.txtTenBN);
            this.grpSearch.Controls.Add(this.cmdSearch);
            this.grpSearch.Controls.Add(this.chkByDate);
            this.grpSearch.Controls.Add(this.dtToDate);
            this.grpSearch.Controls.Add(this.dtFromDate);
            this.grpSearch.Controls.Add(this.label14);
            this.grpSearch.Dock = System.Windows.Forms.DockStyle.Top;
            this.grpSearch.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grpSearch.Location = new System.Drawing.Point(0, 0);
            this.grpSearch.Name = "grpSearch";
            this.grpSearch.Size = new System.Drawing.Size(427, 135);
            this.grpSearch.TabIndex = 100;
            this.grpSearch.Text = "Tìm kiếm bệnh nhân nội trú";
            // 
            // chkChuyenkhoa
            // 
            this.chkChuyenkhoa.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.chkChuyenkhoa.Checked = true;
            this.chkChuyenkhoa.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkChuyenkhoa.Font = new System.Drawing.Font("Arial", 9F);
            this.chkChuyenkhoa.Location = new System.Drawing.Point(92, 97);
            this.chkChuyenkhoa.Name = "chkChuyenkhoa";
            this.chkChuyenkhoa.Size = new System.Drawing.Size(144, 23);
            this.chkChuyenkhoa.TabIndex = 436;
            this.chkChuyenkhoa.TabStop = false;
            this.chkChuyenkhoa.Text = "Đã chuyển khoa?";
            this.toolTip1.SetToolTip(this.chkChuyenkhoa, "Check mục này nếu muốn tìm cả các bệnh nhân đã chuyển khoa khác?");
            // 
            // cboKhoanoitru
            // 
            this.cboKhoanoitru.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.cboKhoanoitru.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboKhoanoitru.FormattingEnabled = true;
            this.cboKhoanoitru.Location = new System.Drawing.Point(92, 43);
            this.cboKhoanoitru.Name = "cboKhoanoitru";
            this.cboKhoanoitru.Size = new System.Drawing.Size(321, 23);
            this.cboKhoanoitru.TabIndex = 24;
            // 
            // label22
            // 
            this.label22.Font = new System.Drawing.Font("Arial", 9F);
            this.label22.Location = new System.Drawing.Point(0, 43);
            this.label22.Name = "label22";
            this.label22.Size = new System.Drawing.Size(86, 23);
            this.label22.TabIndex = 78;
            this.label22.Text = "Khoa nội trú";
            this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label1
            // 
            this.label1.Font = new System.Drawing.Font("Arial", 9F);
            this.label1.Location = new System.Drawing.Point(0, 69);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(86, 23);
            this.label1.TabIndex = 73;
            this.label1.Text = "Mã lượt khám";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtMaluotkham
            // 
            this.txtMaluotkham.BackColor = System.Drawing.Color.White;
            this.txtMaluotkham.Font = new System.Drawing.Font("Arial", 9F);
            this.txtMaluotkham.Location = new System.Drawing.Point(92, 70);
            this.txtMaluotkham.Name = "txtMaluotkham";
            this.txtMaluotkham.Numeric = true;
            this.txtMaluotkham.Size = new System.Drawing.Size(102, 21);
            this.txtMaluotkham.TabIndex = 25;
            this.txtMaluotkham.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            this.toolTip1.SetToolTip(this.txtMaluotkham, "Có thể gõ số thứ tự khám ghi trên phiếu và nhấn Enter để tìm kiếm(phím tắt F4)");
            // 
            // label3
            // 
            this.label3.Font = new System.Drawing.Font("Arial", 9F);
            this.label3.Location = new System.Drawing.Point(198, 68);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(59, 23);
            this.label3.TabIndex = 69;
            this.label3.Text = "Tên BN";
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtTenBN
            // 
            this.txtTenBN.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtTenBN.BackColor = System.Drawing.Color.White;
            this.txtTenBN.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtTenBN.Font = new System.Drawing.Font("Arial", 9F);
            this.txtTenBN.Location = new System.Drawing.Point(265, 69);
            this.txtTenBN.MaxLength = 255;
            this.txtTenBN.Name = "txtTenBN";
            this.txtTenBN.Size = new System.Drawing.Size(148, 21);
            this.txtTenBN.TabIndex = 26;
            this.txtTenBN.TabStop = false;
            // 
            // cmdSearch
            // 
            this.cmdSearch.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdSearch.Image = ((System.Drawing.Image)(resources.GetObject("cmdSearch.Image")));
            this.cmdSearch.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdSearch.Location = new System.Drawing.Point(282, 96);
            this.cmdSearch.Name = "cmdSearch";
            this.cmdSearch.Size = new System.Drawing.Size(131, 30);
            this.cmdSearch.TabIndex = 27;
            this.cmdSearch.Text = "Tìm kiếm";
            this.toolTip1.SetToolTip(this.cmdSearch, "Nhấn Ctrl+F thực hiện tìm thông tin bệnh nhân");
            // 
            // chkByDate
            // 
            this.chkByDate.Checked = true;
            this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkByDate.Font = new System.Drawing.Font("Arial", 9F);
            this.chkByDate.Location = new System.Drawing.Point(15, 19);
            this.chkByDate.Name = "chkByDate";
            this.chkByDate.Size = new System.Drawing.Size(71, 23);
            this.chkByDate.TabIndex = 0;
            this.chkByDate.TabStop = false;
            this.chkByDate.Text = "Từ ngày";
            this.toolTip1.SetToolTip(this.chkByDate, "Ngày nhập viện");
            // 
            // dtToDate
            // 
            this.dtToDate.CustomFormat = "dd/MM/yyyy";
            this.dtToDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtToDate.DropDownCalendar.Name = "";
            this.dtToDate.Font = new System.Drawing.Font("Arial", 9F);
            this.dtToDate.Location = new System.Drawing.Point(303, 19);
            this.dtToDate.Name = "dtToDate";
            this.dtToDate.ShowUpDown = true;
            this.dtToDate.Size = new System.Drawing.Size(110, 21);
            this.dtToDate.TabIndex = 23;
            this.dtToDate.Value = new System.DateTime(2013, 8, 10, 0, 0, 0, 0);
            // 
            // dtFromDate
            // 
            this.dtFromDate.CustomFormat = "dd/MM/yyyy";
            this.dtFromDate.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtFromDate.DropDownCalendar.Name = "";
            this.dtFromDate.Font = new System.Drawing.Font("Arial", 9F);
            this.dtFromDate.Location = new System.Drawing.Point(92, 19);
            this.dtFromDate.Name = "dtFromDate";
            this.dtFromDate.ShowUpDown = true;
            this.dtFromDate.Size = new System.Drawing.Size(114, 21);
            this.dtFromDate.TabIndex = 22;
            this.dtFromDate.Value = new System.DateTime(2013, 8, 10, 0, 0, 0, 0);
            // 
            // label14
            // 
            this.label14.Font = new System.Drawing.Font("Arial", 9F);
            this.label14.Location = new System.Drawing.Point(225, 22);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(72, 15);
            this.label14.TabIndex = 74;
            this.label14.Text = "đến ngày";
            this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cmdCauHinh
            // 
            this.cmdCauHinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdCauHinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdCauHinh.Image")));
            this.cmdCauHinh.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdCauHinh.Location = new System.Drawing.Point(349, 284);
            this.cmdCauHinh.Name = "cmdCauHinh";
            this.cmdCauHinh.Size = new System.Drawing.Size(51, 27);
            this.cmdCauHinh.TabIndex = 503;
            this.cmdCauHinh.Visible = false;
            // 
            // ctxDelCLS
            // 
            this.ctxDelCLS.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuDeleteCLS,
            this.toolStripMenuItem1,
            this.mnuShowResult});
            this.ctxDelCLS.Name = "ctxDelCLS";
            this.ctxDelCLS.Size = new System.Drawing.Size(224, 54);
            // 
            // mnuDeleteCLS
            // 
            this.mnuDeleteCLS.Name = "mnuDeleteCLS";
            this.mnuDeleteCLS.Size = new System.Drawing.Size(223, 22);
            this.mnuDeleteCLS.Text = "Xóa chỉ định CLS đang chọn";
            // 
            // toolStripMenuItem1
            // 
            this.toolStripMenuItem1.Name = "toolStripMenuItem1";
            this.toolStripMenuItem1.Size = new System.Drawing.Size(220, 6);
            // 
            // mnuShowResult
            // 
            this.mnuShowResult.Name = "mnuShowResult";
            this.mnuShowResult.Size = new System.Drawing.Size(223, 22);
            this.mnuShowResult.Text = "Xem kết quả CLS";
            // 
            // ctxDelDrug
            // 
            this.ctxDelDrug.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuDelDrug});
            this.ctxDelDrug.Name = "ctxDelDrug";
            this.ctxDelDrug.Size = new System.Drawing.Size(189, 26);
            // 
            // mnuDelDrug
            // 
            this.mnuDelDrug.Name = "mnuDelDrug";
            this.mnuDelDrug.Size = new System.Drawing.Size(188, 22);
            this.mnuDelDrug.Text = "Xóa thuốc đang chọn";
            // 
            // toolTip1
            // 
            this.toolTip1.IsBalloon = true;
            this.toolTip1.ToolTipTitle = "Trợ giúp nhanh:";
            // 
            // cmdDelteAssign
            // 
            this.cmdDelteAssign.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdDelteAssign.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdDelteAssign.Image = ((System.Drawing.Image)(resources.GetObject("cmdDelteAssign.Image")));
            this.cmdDelteAssign.Location = new System.Drawing.Point(171, 13);
            this.cmdDelteAssign.Name = "cmdDelteAssign";
            this.cmdDelteAssign.Size = new System.Drawing.Size(76, 26);
            this.cmdDelteAssign.TabIndex = 2;
            this.cmdDelteAssign.Text = "Xóa";
            this.toolTip1.SetToolTip(this.cmdDelteAssign, "Nhấn vào đây để xóa các chỉ định cận lâm sàng được chọn trên lưới.");
            // 
            // cmdUpdate
            // 
            this.cmdUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdUpdate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdUpdate.Image = ((System.Drawing.Image)(resources.GetObject("cmdUpdate.Image")));
            this.cmdUpdate.Location = new System.Drawing.Point(87, 13);
            this.cmdUpdate.Name = "cmdUpdate";
            this.cmdUpdate.Size = new System.Drawing.Size(76, 26);
            this.cmdUpdate.TabIndex = 1;
            this.cmdUpdate.Text = "Sửa";
            this.toolTip1.SetToolTip(this.cmdUpdate, "Nhấn vào nút này để sửa phiếu chỉ định cận lâm sàng");
            // 
            // cmdInsertAssign
            // 
            this.cmdInsertAssign.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdInsertAssign.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdInsertAssign.Image = ((System.Drawing.Image)(resources.GetObject("cmdInsertAssign.Image")));
            this.cmdInsertAssign.Location = new System.Drawing.Point(5, 13);
            this.cmdInsertAssign.Name = "cmdInsertAssign";
            this.cmdInsertAssign.Size = new System.Drawing.Size(76, 26);
            this.cmdInsertAssign.TabIndex = 0;
            this.cmdInsertAssign.Text = "Thêm";
            this.toolTip1.SetToolTip(this.cmdInsertAssign, "Nhấn vào đây để thêm phiếu chỉ định cận lâm sàng");
            // 
            // grdAssignDetail
            // 
            this.grdAssignDetail.AlternatingColors = true;
            this.grdAssignDetail.ContextMenuStrip = this.ctxDelCLS;
            grdAssignDetail_DesignTimeLayout.LayoutString = resources.GetString("grdAssignDetail_DesignTimeLayout.LayoutString");
            this.grdAssignDetail.DesignTimeLayout = grdAssignDetail_DesignTimeLayout;
            this.grdAssignDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdAssignDetail.DynamicFiltering = true;
            this.grdAssignDetail.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdAssignDetail.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdAssignDetail.Font = new System.Drawing.Font("Arial", 9F);
            this.grdAssignDetail.GroupByBoxVisible = false;
            this.grdAssignDetail.GroupMode = Janus.Windows.GridEX.GroupMode.Collapsed;
            this.grdAssignDetail.GroupRowFormatStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
            this.grdAssignDetail.GroupRowFormatStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.grdAssignDetail.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdAssignDetail.Location = new System.Drawing.Point(0, 0);
            this.grdAssignDetail.Name = "grdAssignDetail";
            this.grdAssignDetail.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdAssignDetail.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdAssignDetail.Size = new System.Drawing.Size(585, 425);
            this.grdAssignDetail.TabIndex = 253;
            this.toolTip1.SetToolTip(this.grdAssignDetail, "Nhấn chuột phải để xóa từng chi tiết cận lâm sàng đang chọn");
            this.grdAssignDetail.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdAssignDetail.TotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
            this.grdAssignDetail.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdAssignDetail.TotalRowFormatStyle.ForeColor = System.Drawing.Color.Black;
            this.grdAssignDetail.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdAssignDetail.UseGroupRowSelector = true;
            this.grdAssignDetail.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // cmdPrintPres
            // 
            this.cmdPrintPres.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdPrintPres.Enabled = false;
            this.cmdPrintPres.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdPrintPres.Image = ((System.Drawing.Image)(resources.GetObject("cmdPrintPres.Image")));
            this.cmdPrintPres.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdPrintPres.Location = new System.Drawing.Point(501, 13);
            this.cmdPrintPres.Name = "cmdPrintPres";
            this.cmdPrintPres.Size = new System.Drawing.Size(79, 25);
            this.cmdPrintPres.TabIndex = 3;
            this.cmdPrintPres.TabStop = false;
            this.cmdPrintPres.Text = "In";
            this.toolTip1.SetToolTip(this.cmdPrintPres, "Nhấn vào nts này để in đơn thuốc cho bệnh nhân");
            // 
            // cmdDeletePres
            // 
            this.cmdDeletePres.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdDeletePres.Image = ((System.Drawing.Image)(resources.GetObject("cmdDeletePres.Image")));
            this.cmdDeletePres.Location = new System.Drawing.Point(175, 13);
            this.cmdDeletePres.Name = "cmdDeletePres";
            this.cmdDeletePres.Size = new System.Drawing.Size(79, 25);
            this.cmdDeletePres.TabIndex = 2;
            this.cmdDeletePres.Text = "Xóa";
            this.toolTip1.SetToolTip(this.cmdDeletePres, "Nhấn vào nút này để xóa các thuốc đang chọn trên lưới");
            // 
            // cmdUpdatePres
            // 
            this.cmdUpdatePres.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdUpdatePres.Image = ((System.Drawing.Image)(resources.GetObject("cmdUpdatePres.Image")));
            this.cmdUpdatePres.Location = new System.Drawing.Point(90, 13);
            this.cmdUpdatePres.Name = "cmdUpdatePres";
            this.cmdUpdatePres.Size = new System.Drawing.Size(79, 25);
            this.cmdUpdatePres.TabIndex = 1;
            this.cmdUpdatePres.Text = "Sửa";
            this.toolTip1.SetToolTip(this.cmdUpdatePres, "Nhấn vào đây để sửa đơn thuốc");
            // 
            // cmdCreateNewPres
            // 
            this.cmdCreateNewPres.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdCreateNewPres.Image = ((System.Drawing.Image)(resources.GetObject("cmdCreateNewPres.Image")));
            this.cmdCreateNewPres.Location = new System.Drawing.Point(5, 13);
            this.cmdCreateNewPres.Name = "cmdCreateNewPres";
            this.cmdCreateNewPres.Size = new System.Drawing.Size(79, 25);
            this.cmdCreateNewPres.TabIndex = 0;
            this.cmdCreateNewPres.Text = "Thêm";
            this.toolTip1.SetToolTip(this.cmdCreateNewPres, "Nhấn vào đây để thêm mới đơn thuốc");
            // 
            // chkHienthichitiet
            // 
            this.chkHienthichitiet.AutoSize = true;
            this.chkHienthichitiet.Location = new System.Drawing.Point(389, 169);
            this.chkHienthichitiet.Name = "chkHienthichitiet";
            this.chkHienthichitiet.Size = new System.Drawing.Size(190, 19);
            this.chkHienthichitiet.TabIndex = 17;
            this.chkHienthichitiet.Text = "Hiển thị cận lâm sàng chi tiết?";
            this.toolTip1.SetToolTip(this.chkHienthichitiet, "Hiển thị các dịch vụ CLS ở mức chi tiết?");
            this.chkHienthichitiet.UseVisualStyleBackColor = true;
            // 
            // 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(20, 20);
            this.cmdPrintAssign.Location = new System.Drawing.Point(543, 10);
            this.cmdPrintAssign.Name = "cmdPrintAssign";
            this.cmdPrintAssign.Size = new System.Drawing.Size(34, 28);
            this.cmdPrintAssign.TabIndex = 4;
            this.toolTip1.SetToolTip(this.cmdPrintAssign, "Nhấn vào đây để in phiếu CLS(Phím tắt Ctrl+P)");
            // 
            // cmdInphieuVT
            // 
            this.cmdInphieuVT.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdInphieuVT.Enabled = false;
            this.cmdInphieuVT.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdInphieuVT.Image = ((System.Drawing.Image)(resources.GetObject("cmdInphieuVT.Image")));
            this.cmdInphieuVT.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdInphieuVT.Location = new System.Drawing.Point(354, 14);
            this.cmdInphieuVT.Name = "cmdInphieuVT";
            this.cmdInphieuVT.Size = new System.Drawing.Size(79, 25);
            this.cmdInphieuVT.TabIndex = 3;
            this.cmdInphieuVT.TabStop = false;
            this.cmdInphieuVT.Text = "In";
            this.toolTip1.SetToolTip(this.cmdInphieuVT, "Nhấn vào nút này để in đơn thuốc cho bệnh nhân");
            // 
            // cmdXoaphieuVT
            // 
            this.cmdXoaphieuVT.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdXoaphieuVT.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoaphieuVT.Image")));
            this.cmdXoaphieuVT.Location = new System.Drawing.Point(175, 13);
            this.cmdXoaphieuVT.Name = "cmdXoaphieuVT";
            this.cmdXoaphieuVT.Size = new System.Drawing.Size(79, 25);
            this.cmdXoaphieuVT.TabIndex = 2;
            this.cmdXoaphieuVT.Text = "Xóa";
            this.toolTip1.SetToolTip(this.cmdXoaphieuVT, "Nhấn vào nút này để xóa các thuốc đang chọn trên lưới");
            // 
            // cmdSuaphieuVT
            // 
            this.cmdSuaphieuVT.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdSuaphieuVT.Image = ((System.Drawing.Image)(resources.GetObject("cmdSuaphieuVT.Image")));
            this.cmdSuaphieuVT.Location = new System.Drawing.Point(90, 13);
            this.cmdSuaphieuVT.Name = "cmdSuaphieuVT";
            this.cmdSuaphieuVT.Size = new System.Drawing.Size(79, 25);
            this.cmdSuaphieuVT.TabIndex = 1;
            this.cmdSuaphieuVT.Text = "Sửa";
            this.toolTip1.SetToolTip(this.cmdSuaphieuVT, "Nhấn vào đây để sửa đơn thuốc");
            // 
            // cmdThemphieuVT
            // 
            this.cmdThemphieuVT.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdThemphieuVT.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemphieuVT.Image")));
            this.cmdThemphieuVT.Location = new System.Drawing.Point(5, 13);
            this.cmdThemphieuVT.Name = "cmdThemphieuVT";
            this.cmdThemphieuVT.Size = new System.Drawing.Size(79, 25);
            this.cmdThemphieuVT.TabIndex = 0;
            this.cmdThemphieuVT.Text = "Thêm";
            this.toolTip1.SetToolTip(this.cmdThemphieuVT, "Nhấn vào đây để thêm mới đơn thuốc");
            // 
            // cmdXoachandoan
            // 
            this.cmdXoachandoan.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdXoachandoan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdXoachandoan.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoachandoan.Image")));
            this.cmdXoachandoan.Location = new System.Drawing.Point(258, 13);
            this.cmdXoachandoan.Name = "cmdXoachandoan";
            this.cmdXoachandoan.Size = new System.Drawing.Size(76, 26);
            this.cmdXoachandoan.TabIndex = 21;
            this.cmdXoachandoan.Text = "Xóa";
            this.toolTip1.SetToolTip(this.cmdXoachandoan, "Nhấn vào đây để xóa các chỉ định cận lâm sàng được chọn trên lưới.");
            // 
            // cmdSuachandoan
            // 
            this.cmdSuachandoan.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdSuachandoan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdSuachandoan.Image = ((System.Drawing.Image)(resources.GetObject("cmdSuachandoan.Image")));
            this.cmdSuachandoan.Location = new System.Drawing.Point(91, 13);
            this.cmdSuachandoan.Name = "cmdSuachandoan";
            this.cmdSuachandoan.Size = new System.Drawing.Size(76, 26);
            this.cmdSuachandoan.TabIndex = 20;
            this.cmdSuachandoan.Text = "Sửa";
            this.toolTip1.SetToolTip(this.cmdSuachandoan, "Nhấn vào nút này để sửa phiếu chỉ định cận lâm sàng");
            // 
            // cmdThemchandoan
            // 
            this.cmdThemchandoan.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdThemchandoan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdThemchandoan.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemchandoan.Image")));
            this.cmdThemchandoan.Location = new System.Drawing.Point(9, 13);
            this.cmdThemchandoan.Name = "cmdThemchandoan";
            this.cmdThemchandoan.Size = new System.Drawing.Size(76, 26);
            this.cmdThemchandoan.TabIndex = 19;
            this.cmdThemchandoan.Text = "Thêm";
            this.toolTip1.SetToolTip(this.cmdThemchandoan, "Nhấn vào đây để thêm phiếu chỉ định cận lâm sàng");
            // 
            // cmdGhichandoan
            // 
            this.cmdGhichandoan.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdGhichandoan.Enabled = false;
            this.cmdGhichandoan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdGhichandoan.Image = ((System.Drawing.Image)(resources.GetObject("cmdGhichandoan.Image")));
            this.cmdGhichandoan.Location = new System.Drawing.Point(173, 13);
            this.cmdGhichandoan.Name = "cmdGhichandoan";
            this.cmdGhichandoan.Size = new System.Drawing.Size(76, 26);
            this.cmdGhichandoan.TabIndex = 18;
            this.cmdGhichandoan.Text = "Ghi";
            this.toolTip1.SetToolTip(this.cmdGhichandoan, "Nhấn vào nút này để sửa phiếu chỉ định cận lâm sàng");
            // 
            // cmdInphieudieutri
            // 
            this.cmdInphieudieutri.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdInphieudieutri.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdInphieudieutri.Image = ((System.Drawing.Image)(resources.GetObject("cmdInphieudieutri.Image")));
            this.cmdInphieudieutri.ImageSize = new System.Drawing.Size(20, 20);
            this.cmdInphieudieutri.Location = new System.Drawing.Point(252, 13);
            this.cmdInphieudieutri.Name = "cmdInphieudieutri";
            this.cmdInphieudieutri.Size = new System.Drawing.Size(76, 26);
            this.cmdInphieudieutri.TabIndex = 9;
            this.cmdInphieudieutri.Text = "In phiếu";
            this.toolTip1.SetToolTip(this.cmdInphieudieutri, "Nhấn vào đây để in phiếu CLS(Phím tắt Ctrl+P)");
            // 
            // cmdxoaphieudieutri
            // 
            this.cmdxoaphieudieutri.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdxoaphieudieutri.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdxoaphieudieutri.Image = ((System.Drawing.Image)(resources.GetObject("cmdxoaphieudieutri.Image")));
            this.cmdxoaphieudieutri.Location = new System.Drawing.Point(172, 13);
            this.cmdxoaphieudieutri.Name = "cmdxoaphieudieutri";
            this.cmdxoaphieudieutri.Size = new System.Drawing.Size(76, 26);
            this.cmdxoaphieudieutri.TabIndex = 8;
            this.cmdxoaphieudieutri.Text = "Xóa";
            this.toolTip1.SetToolTip(this.cmdxoaphieudieutri, "Nhấn vào đây để xóa các chỉ định cận lâm sàng được chọn trên lưới.");
            // 
            // cmdSuaphieudieutri
            // 
            this.cmdSuaphieudieutri.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdSuaphieudieutri.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdSuaphieudieutri.Image = ((System.Drawing.Image)(resources.GetObject("cmdSuaphieudieutri.Image")));
            this.cmdSuaphieudieutri.Location = new System.Drawing.Point(90, 13);
            this.cmdSuaphieudieutri.Name = "cmdSuaphieudieutri";
            this.cmdSuaphieudieutri.Size = new System.Drawing.Size(76, 26);
            this.cmdSuaphieudieutri.TabIndex = 7;
            this.cmdSuaphieudieutri.Text = "Sửa";
            this.toolTip1.SetToolTip(this.cmdSuaphieudieutri, "Nhấn vào nút này để sửa phiếu chỉ định cận lâm sàng");
            // 
            // cmdthemphieudieutri
            // 
            this.cmdthemphieudieutri.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdthemphieudieutri.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdthemphieudieutri.Image = ((System.Drawing.Image)(resources.GetObject("cmdthemphieudieutri.Image")));
            this.cmdthemphieudieutri.Location = new System.Drawing.Point(10, 13);
            this.cmdthemphieudieutri.Name = "cmdthemphieudieutri";
            this.cmdthemphieudieutri.Size = new System.Drawing.Size(76, 26);
            this.cmdthemphieudieutri.TabIndex = 6;
            this.cmdthemphieudieutri.Text = "Thêm";
            this.toolTip1.SetToolTip(this.cmdthemphieudieutri, "Nhấn vào đây để thêm phiếu chỉ định cận lâm sàng");
            // 
            // cmdSaochep
            // 
            this.cmdSaochep.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdSaochep.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdSaochep.Image = ((System.Drawing.Image)(resources.GetObject("cmdSaochep.Image")));
            this.cmdSaochep.Location = new System.Drawing.Point(338, 13);
            this.cmdSaochep.Name = "cmdSaochep";
            this.cmdSaochep.Size = new System.Drawing.Size(82, 26);
            this.cmdSaochep.TabIndex = 3;
            this.cmdSaochep.Text = "Sao chép";
            this.toolTip1.SetToolTip(this.cmdSaochep, "Nhấn vào đây để thêm phiếu chỉ định cận lâm sàng");
            // 
            // chkViewAll
            // 
            this.chkViewAll.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.chkViewAll.Checked = true;
            this.chkViewAll.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkViewAll.Font = new System.Drawing.Font("Arial", 9F);
            this.chkViewAll.Location = new System.Drawing.Point(318, 11);
            this.chkViewAll.Name = "chkViewAll";
            this.chkViewAll.Size = new System.Drawing.Size(106, 23);
            this.chkViewAll.TabIndex = 413;
            this.chkViewAll.TabStop = false;
            this.chkViewAll.Text = "Hiển thị tất cả?";
            this.toolTip1.SetToolTip(this.chkViewAll, "Hiển thị tất cả các phiếu điều trị của Bệnh nhân");
            // 
            // label24
            // 
            this.label24.Font = new System.Drawing.Font("Arial", 9F);
            this.label24.Location = new System.Drawing.Point(190, 10);
            this.label24.Name = "label24";
            this.label24.Size = new System.Drawing.Size(59, 21);
            this.label24.TabIndex = 415;
            this.label24.Text = "Số ngày:";
            this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.toolTip1.SetToolTip(this.label24, "Nhập số ngày hiển thị phiếu điều trị kể từ ngày hiện tại về trước(Nhập giá trị <=" +
        "0 để luôn hiển thị tất cả)");
            // 
            // txtPatient_Code
            // 
            this.txtPatient_Code.BackColor = System.Drawing.Color.White;
            this.txtPatient_Code.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPatient_Code.Location = new System.Drawing.Point(108, 8);
            this.txtPatient_Code.MaxLength = 8;
            this.txtPatient_Code.Name = "txtPatient_Code";
            this.txtPatient_Code.Size = new System.Drawing.Size(125, 21);
            this.txtPatient_Code.TabIndex = 0;
            this.txtPatient_Code.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            this.toolTip1.SetToolTip(this.txtPatient_Code, "Bạn có thể gõ mã lần khám của Bệnh nhân để tìm kiếm nhanh(Phím tắt F6)");
            this.txtPatient_Code.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2007;
            // 
            // label18
            // 
            this.label18.Font = new System.Drawing.Font("Arial", 9F);
            this.label18.Location = new System.Drawing.Point(3, 7);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(99, 21);
            this.label18.TabIndex = 9;
            this.label18.Text = "Mã lượt khám:";
            this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.toolTip1.SetToolTip(this.label18, "Bạn có thể gõ mã lần khám của Bệnh nhân để tìm kiếm nhanh(Phím tắt F6)");
            // 
            // cmdInphieuVT_tronggoi
            // 
            this.cmdInphieuVT_tronggoi.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdInphieuVT_tronggoi.Enabled = false;
            this.cmdInphieuVT_tronggoi.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdInphieuVT_tronggoi.Image = ((System.Drawing.Image)(resources.GetObject("cmdInphieuVT_tronggoi.Image")));
            this.cmdInphieuVT_tronggoi.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdInphieuVT_tronggoi.Location = new System.Drawing.Point(501, 13);
            this.cmdInphieuVT_tronggoi.Name = "cmdInphieuVT_tronggoi";
            this.cmdInphieuVT_tronggoi.Size = new System.Drawing.Size(79, 25);
            this.cmdInphieuVT_tronggoi.TabIndex = 3;
            this.cmdInphieuVT_tronggoi.TabStop = false;
            this.cmdInphieuVT_tronggoi.Text = "In";
            this.toolTip1.SetToolTip(this.cmdInphieuVT_tronggoi, "Nhấn vào nts này để in đơn thuốc cho bệnh nhân");
            // 
            // cmdXoaphieuVT_tronggoi
            // 
            this.cmdXoaphieuVT_tronggoi.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdXoaphieuVT_tronggoi.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoaphieuVT_tronggoi.Image")));
            this.cmdXoaphieuVT_tronggoi.Location = new System.Drawing.Point(175, 13);
            this.cmdXoaphieuVT_tronggoi.Name = "cmdXoaphieuVT_tronggoi";
            this.cmdXoaphieuVT_tronggoi.Size = new System.Drawing.Size(79, 25);
            this.cmdXoaphieuVT_tronggoi.TabIndex = 2;
            this.cmdXoaphieuVT_tronggoi.Text = "Xóa";
            this.toolTip1.SetToolTip(this.cmdXoaphieuVT_tronggoi, "Nhấn vào nút này để xóa các thuốc đang chọn trên lưới");
            // 
            // cmdSuaphieuVT_tronggoi
            // 
            this.cmdSuaphieuVT_tronggoi.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdSuaphieuVT_tronggoi.Image = ((System.Drawing.Image)(resources.GetObject("cmdSuaphieuVT_tronggoi.Image")));
            this.cmdSuaphieuVT_tronggoi.Location = new System.Drawing.Point(90, 13);
            this.cmdSuaphieuVT_tronggoi.Name = "cmdSuaphieuVT_tronggoi";
            this.cmdSuaphieuVT_tronggoi.Size = new System.Drawing.Size(79, 25);
            this.cmdSuaphieuVT_tronggoi.TabIndex = 1;
            this.cmdSuaphieuVT_tronggoi.Text = "Sửa";
            this.toolTip1.SetToolTip(this.cmdSuaphieuVT_tronggoi, "Nhấn vào đây để sửa đơn thuốc");
            // 
            // cmdThemphieuVT_tronggoi
            // 
            this.cmdThemphieuVT_tronggoi.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdThemphieuVT_tronggoi.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemphieuVT_tronggoi.Image")));
            this.cmdThemphieuVT_tronggoi.Location = new System.Drawing.Point(5, 13);
            this.cmdThemphieuVT_tronggoi.Name = "cmdThemphieuVT_tronggoi";
            this.cmdThemphieuVT_tronggoi.Size = new System.Drawing.Size(79, 25);
            this.cmdThemphieuVT_tronggoi.TabIndex = 0;
            this.cmdThemphieuVT_tronggoi.Text = "Thêm";
            this.toolTip1.SetToolTip(this.cmdThemphieuVT_tronggoi, "Nhấn vào đây để thêm mới đơn thuốc");
            // 
            // cmdHuychandoan
            // 
            this.cmdHuychandoan.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdHuychandoan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdHuychandoan.Image = ((System.Drawing.Image)(resources.GetObject("cmdHuychandoan.Image")));
            this.cmdHuychandoan.Location = new System.Drawing.Point(258, 13);
            this.cmdHuychandoan.Name = "cmdHuychandoan";
            this.cmdHuychandoan.Size = new System.Drawing.Size(76, 26);
            this.cmdHuychandoan.TabIndex = 22;
            this.cmdHuychandoan.Text = "Hủy";
            this.toolTip1.SetToolTip(this.cmdHuychandoan, "Nhấn vào đây để hủy thao tác Thêm mới, sửa");
            // 
            // cmdChuyengoi
            // 
            this.cmdChuyengoi.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdChuyengoi.Enabled = false;
            this.cmdChuyengoi.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdChuyengoi.Image = ((System.Drawing.Image)(resources.GetObject("cmdChuyengoi.Image")));
            this.cmdChuyengoi.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdChuyengoi.Location = new System.Drawing.Point(437, 14);
            this.cmdChuyengoi.Name = "cmdChuyengoi";
            this.cmdChuyengoi.Size = new System.Drawing.Size(143, 25);
            this.cmdChuyengoi.TabIndex = 4;
            this.cmdChuyengoi.TabStop = false;
            this.cmdChuyengoi.Text = "Chuyển vào gói";
            this.toolTip1.SetToolTip(this.cmdChuyengoi, "Nhấn vào đây để thực hiện chuyển VTTH vào trong các gói dịch vụ");
            // 
            // lnkSize
            // 
            this.lnkSize.AutoSize = true;
            this.lnkSize.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.lnkSize.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lnkSize.Location = new System.Drawing.Point(0, 384);
            this.lnkSize.Name = "lnkSize";
            this.lnkSize.Size = new System.Drawing.Size(127, 16);
            this.lnkSize.TabIndex = 502;
            this.lnkSize.TabStop = true;
            this.lnkSize.Text = "Cấu hình kích thước";
            this.toolTip1.SetToolTip(this.lnkSize, "Nhấn vào đây để cấu hình kích thước cho các đối tượng nhập kết quả");
            // 
            // cmdXoaDinhduong
            // 
            this.cmdXoaDinhduong.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdXoaDinhduong.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdXoaDinhduong.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoaDinhduong.Image")));
            this.cmdXoaDinhduong.Location = new System.Drawing.Point(504, 13);
            this.cmdXoaDinhduong.Name = "cmdXoaDinhduong";
            this.cmdXoaDinhduong.Size = new System.Drawing.Size(76, 26);
            this.cmdXoaDinhduong.TabIndex = 21;
            this.cmdXoaDinhduong.Text = "Xóa";
            this.toolTip1.SetToolTip(this.cmdXoaDinhduong, "Nhấn vào đây để xóa các chỉ định cận lâm sàng được chọn trên lưới.");
            // 
            // cmdAdd
            // 
            this.cmdAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdAdd.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdAdd.Image = ((System.Drawing.Image)(resources.GetObject("cmdAdd.Image")));
            this.cmdAdd.Location = new System.Drawing.Point(533, 36);
            this.cmdAdd.Name = "cmdAdd";
            this.cmdAdd.Size = new System.Drawing.Size(47, 26);
            this.cmdAdd.TabIndex = 2;
            this.toolTip1.SetToolTip(this.cmdAdd, "Thêm dinh dưỡng");
            // 
            // grdGoidichvu
            // 
            this.grdGoidichvu.AlternatingColors = true;
            this.grdGoidichvu.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.grdGoidichvu.ContextMenuStrip = this.ctxDelCLS;
            grdGoidichvu_DesignTimeLayout.LayoutString = resources.GetString("grdGoidichvu_DesignTimeLayout.LayoutString");
            this.grdGoidichvu.DesignTimeLayout = grdGoidichvu_DesignTimeLayout;
            this.grdGoidichvu.DynamicFiltering = true;
            this.grdGoidichvu.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdGoidichvu.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdGoidichvu.Font = new System.Drawing.Font("Arial", 9F);
            this.grdGoidichvu.GroupByBoxVisible = false;
            this.grdGoidichvu.GroupMode = Janus.Windows.GridEX.GroupMode.Collapsed;
            this.grdGoidichvu.GroupRowFormatStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
            this.grdGoidichvu.GroupRowFormatStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.grdGoidichvu.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdGoidichvu.Location = new System.Drawing.Point(2, 1);
            this.grdGoidichvu.Name = "grdGoidichvu";
            this.grdGoidichvu.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdGoidichvu.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdGoidichvu.Size = new System.Drawing.Size(581, 146);
            this.grdGoidichvu.TabIndex = 445;
            this.toolTip1.SetToolTip(this.grdGoidichvu, "Nhấn chuột phải để xóa từng chi tiết cận lâm sàng đang chọn");
            this.grdGoidichvu.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdGoidichvu.TotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
            this.grdGoidichvu.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdGoidichvu.TotalRowFormatStyle.ForeColor = System.Drawing.Color.Black;
            this.grdGoidichvu.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdGoidichvu.UseGroupRowSelector = true;
            this.grdGoidichvu.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // cmdIngoiDV
            // 
            this.cmdIngoiDV.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cmdIngoiDV.Enabled = false;
            this.cmdIngoiDV.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdIngoiDV.Image = ((System.Drawing.Image)(resources.GetObject("cmdIngoiDV.Image")));
            this.cmdIngoiDV.ImageSize = new System.Drawing.Size(24, 24);
            this.cmdIngoiDV.Location = new System.Drawing.Point(501, 157);
            this.cmdIngoiDV.Name = "cmdIngoiDV";
            this.cmdIngoiDV.Size = new System.Drawing.Size(79, 25);
            this.cmdIngoiDV.TabIndex = 3;
            this.cmdIngoiDV.TabStop = false;
            this.cmdIngoiDV.Text = "In";
            this.toolTip1.SetToolTip(this.cmdIngoiDV, "Nhấn vào nts này để in đơn thuốc cho bệnh nhân");
            // 
            // cmdXoagoiDV
            // 
            this.cmdXoagoiDV.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdXoagoiDV.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdXoagoiDV.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoagoiDV.Image")));
            this.cmdXoagoiDV.Location = new System.Drawing.Point(175, 157);
            this.cmdXoagoiDV.Name = "cmdXoagoiDV";
            this.cmdXoagoiDV.Size = new System.Drawing.Size(79, 25);
            this.cmdXoagoiDV.TabIndex = 2;
            this.cmdXoagoiDV.Text = "Xóa";
            this.toolTip1.SetToolTip(this.cmdXoagoiDV, "Nhấn vào nút này để xóa các thuốc đang chọn trên lưới");
            // 
            // cmdSuagoiDV
            // 
            this.cmdSuagoiDV.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdSuagoiDV.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdSuagoiDV.Image = ((System.Drawing.Image)(resources.GetObject("cmdSuagoiDV.Image")));
            this.cmdSuagoiDV.Location = new System.Drawing.Point(90, 157);
            this.cmdSuagoiDV.Name = "cmdSuagoiDV";
            this.cmdSuagoiDV.Size = new System.Drawing.Size(79, 25);
            this.cmdSuagoiDV.TabIndex = 1;
            this.cmdSuagoiDV.Text = "Sửa";
            this.toolTip1.SetToolTip(this.cmdSuagoiDV, "Nhấn vào đây để sửa đơn thuốc");
            // 
            // cmdThemgoiDV
            // 
            this.cmdThemgoiDV.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdThemgoiDV.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdThemgoiDV.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemgoiDV.Image")));
            this.cmdThemgoiDV.Location = new System.Drawing.Point(5, 157);
            this.cmdThemgoiDV.Name = "cmdThemgoiDV";
            this.cmdThemgoiDV.Size = new System.Drawing.Size(79, 25);
            this.cmdThemgoiDV.TabIndex = 0;
            this.cmdThemgoiDV.Text = "Thêm";
            this.toolTip1.SetToolTip(this.cmdThemgoiDV, "Nhấn vào đây để thêm mới đơn thuốc");
            // 
            // panel3
            // 
            this.panel3.Controls.Add(this.uiGroupBox2);
            this.panel3.Controls.Add(this.grpSearch);
            this.panel3.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel3.Location = new System.Drawing.Point(0, 0);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(427, 736);
            this.panel3.TabIndex = 453;
            // 
            // uiGroupBox2
            // 
            this.uiGroupBox2.Controls.Add(this.panel5);
            this.uiGroupBox2.Controls.Add(this.grdPatientList);
            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.FrameStyle = Janus.Windows.EditControls.FrameStyle.Top;
            this.uiGroupBox2.Location = new System.Drawing.Point(0, 135);
            this.uiGroupBox2.Name = "uiGroupBox2";
            this.uiGroupBox2.Size = new System.Drawing.Size(427, 601);
            this.uiGroupBox2.TabIndex = 11;
            this.uiGroupBox2.Text = "Danh sách Bệnh nhân nội trú";
            // 
            // panel5
            // 
            this.panel5.Controls.Add(this.uiTabPhieudieutri);
            this.panel5.Controls.Add(this.panel8);
            this.panel5.Controls.Add(this.panel7);
            this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel5.Location = new System.Drawing.Point(0, 217);
            this.panel5.Name = "panel5";
            this.panel5.Size = new System.Drawing.Size(427, 381);
            this.panel5.TabIndex = 7;
            // 
            // uiTabPhieudieutri
            // 
            this.uiTabPhieudieutri.Dock = System.Windows.Forms.DockStyle.Fill;
            this.uiTabPhieudieutri.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiTabPhieudieutri.Location = new System.Drawing.Point(0, 38);
            this.uiTabPhieudieutri.Name = "uiTabPhieudieutri";
            this.uiTabPhieudieutri.Size = new System.Drawing.Size(427, 295);
            this.uiTabPhieudieutri.TabIndex = 19;
            this.uiTabPhieudieutri.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
            this.tabPagePhieuDieuTri,
            this.tabPageBuonggiuong});
            this.uiTabPhieudieutri.VisualStyle = Janus.Windows.UI.Tab.TabVisualStyle.VS2005;
            // 
            // tabPagePhieuDieuTri
            // 
            this.tabPagePhieuDieuTri.Controls.Add(this.grdPhieudieutri);
            this.tabPagePhieuDieuTri.Key = "Phieudieutri";
            this.tabPagePhieuDieuTri.Location = new System.Drawing.Point(1, 22);
            this.tabPagePhieuDieuTri.Name = "tabPagePhieuDieuTri";
            this.tabPagePhieuDieuTri.Size = new System.Drawing.Size(425, 272);
            this.tabPagePhieuDieuTri.TabStop = true;
            this.tabPagePhieuDieuTri.Text = "Thông tin phiếu điều trị";
            // 
            // grdPhieudieutri
            // 
            this.grdPhieudieutri.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grdPhieudieutri.AutomaticSort = false;
            this.grdPhieudieutri.BackColor = System.Drawing.Color.Silver;
            this.grdPhieudieutri.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><FilterRowInfoText>Lọc" +
    " thông tin bệnh nhân đưa vào phòng khám</FilterRowInfoText></LocalizableData>";
            this.grdPhieudieutri.ContextMenuStrip = this.ctxPhieudieutri;
            grdPhieudieutri_DesignTimeLayout_Reference_0.Instance = ((object)(resources.GetObject("grdPhieudieutri_DesignTimeLayout_Reference_0.Instance")));
            grdPhieudieutri_DesignTimeLayout_Reference_1.Instance = ((object)(resources.GetObject("grdPhieudieutri_DesignTimeLayout_Reference_1.Instance")));
            grdPhieudieutri_DesignTimeLayout.LayoutReferences.AddRange(new Janus.Windows.Common.Layouts.JanusLayoutReference[] {
            grdPhieudieutri_DesignTimeLayout_Reference_0,
            grdPhieudieutri_DesignTimeLayout_Reference_1});
            grdPhieudieutri_DesignTimeLayout.LayoutString = resources.GetString("grdPhieudieutri_DesignTimeLayout.LayoutString");
            this.grdPhieudieutri.DesignTimeLayout = grdPhieudieutri_DesignTimeLayout;
            this.grdPhieudieutri.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdPhieudieutri.DynamicFiltering = true;
            this.grdPhieudieutri.EnterKeyBehavior = Janus.Windows.GridEX.EnterKeyBehavior.None;
            this.grdPhieudieutri.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdPhieudieutri.FilterRowButtonStyle = Janus.Windows.GridEX.FilterRowButtonStyle.ConditionOperatorDropDown;
            this.grdPhieudieutri.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdPhieudieutri.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdPhieudieutri.FocusCellFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
            this.grdPhieudieutri.FocusCellFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdPhieudieutri.Font = new System.Drawing.Font("Arial", 8.5F);
            this.grdPhieudieutri.FrozenColumns = -1;
            this.grdPhieudieutri.GroupByBoxVisible = false;
            this.grdPhieudieutri.LinkFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
            this.grdPhieudieutri.Location = new System.Drawing.Point(0, 0);
            this.grdPhieudieutri.Name = "grdPhieudieutri";
            this.grdPhieudieutri.RecordNavigator = true;
            this.grdPhieudieutri.SelectedFormatStyle.Alpha = 2;
            this.grdPhieudieutri.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdPhieudieutri.SelectedFormatStyle.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
            this.grdPhieudieutri.SelectedFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdPhieudieutri.SelectedFormatStyle.ForeColor = System.Drawing.Color.White;
            this.grdPhieudieutri.SelectedInactiveFormatStyle.ForeColor = System.Drawing.Color.Black;
            this.grdPhieudieutri.Size = new System.Drawing.Size(425, 272);
            this.grdPhieudieutri.TabIndex = 9;
            this.grdPhieudieutri.TabStop = false;
            this.grdPhieudieutri.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // ctxPhieudieutri
            // 
            this.ctxPhieudieutri.Name = "contextMenuStrip1";
            this.ctxPhieudieutri.Size = new System.Drawing.Size(61, 4);
            // 
            // tabPageBuonggiuong
            // 
            this.tabPageBuonggiuong.Controls.Add(this.panel1);
            this.tabPageBuonggiuong.Key = "BuongGiuong";
            this.tabPageBuonggiuong.Location = new System.Drawing.Point(1, 22);
            this.tabPageBuonggiuong.Name = "tabPageBuonggiuong";
            this.tabPageBuonggiuong.Size = new System.Drawing.Size(425, 287);
            this.tabPageBuonggiuong.TabStop = true;
            this.tabPageBuonggiuong.Text = "Thông tin buồng gường";
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.grdBuongGiuong);
            this.panel1.Controls.Add(this.label51);
            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(425, 287);
            this.panel1.TabIndex = 0;
            // 
            // grdBuongGiuong
            // 
            this.grdBuongGiuong.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grdBuongGiuong.BackColor = System.Drawing.Color.Silver;
            this.grdBuongGiuong.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><FilterRowInfoText>Lọc" +
    " thông tin bệnh nhân</FilterRowInfoText></LocalizableData>";
            grdBuongGiuong_DesignTimeLayout.LayoutString = resources.GetString("grdBuongGiuong_DesignTimeLayout.LayoutString");
            this.grdBuongGiuong.DesignTimeLayout = grdBuongGiuong_DesignTimeLayout;
            this.grdBuongGiuong.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdBuongGiuong.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdBuongGiuong.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdBuongGiuong.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdBuongGiuong.FocusCellDisplayMode = Janus.Windows.GridEX.FocusCellDisplayMode.UseSelectedFormatStyle;
            this.grdBuongGiuong.FocusCellFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            this.grdBuongGiuong.FocusCellFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
            this.grdBuongGiuong.FocusCellFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdBuongGiuong.Font = new System.Drawing.Font("Arial", 8.5F);
            this.grdBuongGiuong.GroupByBoxVisible = false;
            this.grdBuongGiuong.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdBuongGiuong.Location = new System.Drawing.Point(0, 0);
            this.grdBuongGiuong.Name = "grdBuongGiuong";
            this.grdBuongGiuong.RecordNavigator = true;
            this.grdBuongGiuong.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdBuongGiuong.Size = new System.Drawing.Size(425, 249);
            this.grdBuongGiuong.TabIndex = 414;
            this.grdBuongGiuong.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdBuongGiuong.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdBuongGiuong.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // label51
            // 
            this.label51.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.label51.Font = new System.Drawing.Font("Arial", 9F);
            this.label51.ForeColor = System.Drawing.Color.Navy;
            this.label51.Location = new System.Drawing.Point(0, 249);
            this.label51.Name = "label51";
            this.label51.Size = new System.Drawing.Size(425, 38);
            this.label51.TabIndex = 413;
            this.label51.Text = "Nhấn đúp chuột vào lưới Buồng giường để gắn với các Phiếu điều trị mới mà bạn đan" +
    "g muốn lập (Mặc định là Khoa-Buồng-Giường mới nhất)";
            this.label51.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // panel8
            // 
            this.panel8.Controls.Add(this.label24);
            this.panel8.Controls.Add(this.txtSongay);
            this.panel8.Controls.Add(this.chkViewAll);
            this.panel8.Controls.Add(this.dtpCreatedDate);
            this.panel8.Controls.Add(this.label23);
            this.panel8.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel8.Location = new System.Drawing.Point(0, 0);
            this.panel8.Name = "panel8";
            this.panel8.Size = new System.Drawing.Size(427, 38);
            this.panel8.TabIndex = 7;
            // 
            // txtSongay
            // 
            this.txtSongay.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtSongay.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSongay.Location = new System.Drawing.Point(253, 11);
            this.txtSongay.Masked = MaskedTextBox.Mask.Digit;
            this.txtSongay.Name = "txtSongay";
            this.txtSongay.Size = new System.Drawing.Size(44, 21);
            this.txtSongay.TabIndex = 414;
            this.txtSongay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // dtpCreatedDate
            // 
            this.dtpCreatedDate.CustomFormat = "dd/MM/yyyy";
            this.dtpCreatedDate.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtpCreatedDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtpCreatedDate.Location = new System.Drawing.Point(73, 10);
            this.dtpCreatedDate.Name = "dtpCreatedDate";
            this.dtpCreatedDate.ShowUpDown = true;
            this.dtpCreatedDate.Size = new System.Drawing.Size(111, 21);
            this.dtpCreatedDate.TabIndex = 60;
            this.dtpCreatedDate.TabStop = false;
            // 
            // label23
            // 
            this.label23.Font = new System.Drawing.Font("Arial", 9F);
            this.label23.ForeColor = System.Drawing.Color.Black;
            this.label23.Location = new System.Drawing.Point(7, 10);
            this.label23.Name = "label23";
            this.label23.Size = new System.Drawing.Size(60, 21);
            this.label23.TabIndex = 412;
            this.label23.Text = "Ngày lập:";
            this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // panel7
            // 
            this.panel7.Controls.Add(this.cmdInphieudieutri);
            this.panel7.Controls.Add(this.cmdxoaphieudieutri);
            this.panel7.Controls.Add(this.cmdSuaphieudieutri);
            this.panel7.Controls.Add(this.cmdthemphieudieutri);
            this.panel7.Controls.Add(this.cmdSaochep);
            this.panel7.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel7.Location = new System.Drawing.Point(0, 333);
            this.panel7.Name = "panel7";
            this.panel7.Size = new System.Drawing.Size(427, 48);
            this.panel7.TabIndex = 6;
            // 
            // grdPatientList
            // 
            this.grdPatientList.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grdPatientList.BackColor = System.Drawing.Color.Silver;
            this.grdPatientList.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><FilterRowInfoText>Lọc" +
    " thông tin bệnh nhân</FilterRowInfoText></LocalizableData>";
            grdPatientList_DesignTimeLayout_Reference_0.Instance = ((object)(resources.GetObject("grdPatientList_DesignTimeLayout_Reference_0.Instance")));
            grdPatientList_DesignTimeLayout.LayoutReferences.AddRange(new Janus.Windows.Common.Layouts.JanusLayoutReference[] {
            grdPatientList_DesignTimeLayout_Reference_0});
            grdPatientList_DesignTimeLayout.LayoutString = resources.GetString("grdPatientList_DesignTimeLayout.LayoutString");
            this.grdPatientList.DesignTimeLayout = grdPatientList_DesignTimeLayout;
            this.grdPatientList.Dock = System.Windows.Forms.DockStyle.Top;
            this.grdPatientList.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdPatientList.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdPatientList.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdPatientList.FocusCellDisplayMode = Janus.Windows.GridEX.FocusCellDisplayMode.UseSelectedFormatStyle;
            this.grdPatientList.FocusCellFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            this.grdPatientList.FocusCellFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
            this.grdPatientList.FocusCellFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdPatientList.Font = new System.Drawing.Font("Arial", 8.5F);
            this.grdPatientList.GroupByBoxVisible = false;
            this.grdPatientList.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdPatientList.Location = new System.Drawing.Point(0, 17);
            this.grdPatientList.Name = "grdPatientList";
            this.grdPatientList.RecordNavigator = true;
            this.grdPatientList.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdPatientList.Size = new System.Drawing.Size(427, 200);
            this.grdPatientList.TabIndex = 6;
            this.grdPatientList.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdPatientList.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdPatientList.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // dtpNgaylapphieu
            // 
            this.dtpNgaylapphieu.CustomFormat = "dd/MM/yyyy";
            this.dtpNgaylapphieu.Enabled = false;
            this.dtpNgaylapphieu.Font = new System.Drawing.Font("Arial", 9F);
            this.dtpNgaylapphieu.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtpNgaylapphieu.Location = new System.Drawing.Point(108, 156);
            this.dtpNgaylapphieu.Name = "dtpNgaylapphieu";
            this.dtpNgaylapphieu.ShowUpDown = true;
            this.dtpNgaylapphieu.Size = new System.Drawing.Size(123, 21);
            this.dtpNgaylapphieu.TabIndex = 411;
            this.dtpNgaylapphieu.TabStop = false;
            // 
            // panel4
            // 
            this.panel4.Controls.Add(this.tabDiagInfo);
            this.panel4.Controls.Add(this.pnlThongtinBNKCB);
            this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel4.Location = new System.Drawing.Point(427, 0);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(587, 736);
            this.panel4.TabIndex = 0;
            this.panel4.TabStop = true;
            // 
            // tabDiagInfo
            // 
            this.tabDiagInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabDiagInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tabDiagInfo.Location = new System.Drawing.Point(0, 259);
            this.tabDiagInfo.Name = "tabDiagInfo";
            this.tabDiagInfo.Size = new System.Drawing.Size(587, 477);
            this.tabDiagInfo.TabIndex = 66;
            this.tabDiagInfo.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
            this.TabPageChanDoan,
            this.tabPageChiDinhCLS,
            this.tabPageChidinhThuoc,
            this.TabPageVTTH,
            this.tabPagegoimo,
            this.uiTabPage1,
            this.tabPageCauhinh});
            this.tabDiagInfo.TabStop = false;
            this.tabDiagInfo.VisualStyle = Janus.Windows.UI.Tab.TabVisualStyle.VS2005;
            this.tabDiagInfo.SelectedTabChanged += new Janus.Windows.UI.Tab.TabEventHandler(this.tabDiagInfo_SelectedTabChanged);
            // 
            // TabPageChanDoan
            // 
            this.TabPageChanDoan.Controls.Add(this.panel9);
            this.TabPageChanDoan.Location = new System.Drawing.Point(1, 23);
            this.TabPageChanDoan.Name = "TabPageChanDoan";
            this.TabPageChanDoan.Size = new System.Drawing.Size(585, 453);
            this.TabPageChanDoan.TabStop = true;
            this.TabPageChanDoan.Text = "Khám và chẩn đoán";
            // 
            // panel9
            // 
            this.panel9.Controls.Add(this.grd_ICD);
            this.panel9.Controls.Add(this.txtIdChandoan);
            this.panel9.Controls.Add(this.dtpNgaychandoan);
            this.panel9.Controls.Add(this.label40);
            this.panel9.Controls.Add(this.cmdAddMaBenhPhu);
            this.panel9.Controls.Add(this.label27);
            this.panel9.Controls.Add(this.txtChanDoanKemTheo);
            this.panel9.Controls.Add(this.panel10);
            this.panel9.Controls.Add(this.pnlother);
            this.panel9.Controls.Add(this.cmdSearchBenhPhu);
            this.panel9.Controls.Add(this.grdChandoan);
            this.panel9.Controls.Add(this.txtMaBenhphu);
            this.panel9.Controls.Add(this.txtChanDoan);
            this.panel9.Controls.Add(this.label9);
            this.panel9.Controls.Add(this.label46);
            this.panel9.Controls.Add(this.label11);
            this.panel9.Controls.Add(this.label38);
            this.panel9.Controls.Add(this.txtTenBenhPhu);
            this.panel9.Controls.Add(this.cmdSearchBenhChinh);
            this.panel9.Controls.Add(this.txtTenBenhChinh);
            this.panel9.Controls.Add(this.txtMaBenhChinh);
            this.panel9.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel9.Location = new System.Drawing.Point(0, 0);
            this.panel9.Name = "panel9";
            this.panel9.Size = new System.Drawing.Size(585, 453);
            this.panel9.TabIndex = 476;
            // 
            // grd_ICD
            // 
            this.grd_ICD.AllowDelete = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grd_ICD.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grd_ICD.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            grd_ICD_DesignTimeLayout.LayoutString = resources.GetString("grd_ICD_DesignTimeLayout.LayoutString");
            this.grd_ICD.DesignTimeLayout = grd_ICD_DesignTimeLayout;
            this.grd_ICD.Font = new System.Drawing.Font("Arial", 9F);
            this.grd_ICD.GroupByBoxVisible = false;
            this.grd_ICD.Location = new System.Drawing.Point(444, 64);
            this.grd_ICD.Name = "grd_ICD";
            this.grd_ICD.Size = new System.Drawing.Size(131, 98);
            this.grd_ICD.TabIndex = 15;
            this.grd_ICD.TableViewHorizontalScrollIncrement = 21;
            this.grd_ICD.TabStop = false;
            this.grd_ICD.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // txtIdChandoan
            // 
            this.txtIdChandoan.Enabled = false;
            this.txtIdChandoan.Location = new System.Drawing.Point(233, 4);
            this.txtIdChandoan.MaxLength = 10;
            this.txtIdChandoan.Name = "txtIdChandoan";
            this.txtIdChandoan.Size = new System.Drawing.Size(52, 21);
            this.txtIdChandoan.TabIndex = 480;
            this.txtIdChandoan.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // dtpNgaychandoan
            // 
            this.dtpNgaychandoan.CustomFormat = "dd/MM/yyyy";
            this.dtpNgaychandoan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtpNgaychandoan.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtpNgaychandoan.Location = new System.Drawing.Point(113, 5);
            this.dtpNgaychandoan.Name = "dtpNgaychandoan";
            this.dtpNgaychandoan.ShowUpDown = true;
            this.dtpNgaychandoan.Size = new System.Drawing.Size(118, 21);
            this.dtpNgaychandoan.TabIndex = 478;
            this.dtpNgaychandoan.TabStop = false;
            // 
            // label40
            // 
            this.label40.Font = new System.Drawing.Font("Arial", 9F);
            this.label40.ForeColor = System.Drawing.Color.Black;
            this.label40.Location = new System.Drawing.Point(5, 5);
            this.label40.Name = "label40";
            this.label40.Size = new System.Drawing.Size(102, 21);
            this.label40.TabIndex = 479;
            this.label40.Text = "Ngày chẩn đoán:";
            this.label40.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cmdAddMaBenhPhu
            // 
            this.cmdAddMaBenhPhu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdAddMaBenhPhu.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdAddMaBenhPhu.Image = ((System.Drawing.Image)(resources.GetObject("cmdAddMaBenhPhu.Image")));
            this.cmdAddMaBenhPhu.Location = new System.Drawing.Point(444, 116);
            this.cmdAddMaBenhPhu.Name = "cmdAddMaBenhPhu";
            this.cmdAddMaBenhPhu.Size = new System.Drawing.Size(32, 26);
            this.cmdAddMaBenhPhu.TabIndex = 16;
            this.cmdAddMaBenhPhu.TabStop = false;
            this.cmdAddMaBenhPhu.Visible = false;
            // 
            // label27
            // 
            this.label27.BackColor = System.Drawing.SystemColors.Control;
            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(5, 92);
            this.label27.Name = "label27";
            this.label27.Size = new System.Drawing.Size(102, 21);
            this.label27.TabIndex = 476;
            this.label27.Text = "Chẩn đoán kèm:";
            this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtChanDoanKemTheo
            // 
            this.txtChanDoanKemTheo._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtChanDoanKemTheo._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtChanDoanKemTheo.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtChanDoanKemTheo.AutoCompleteList")));
            this.txtChanDoanKemTheo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtChanDoanKemTheo.CaseSensitive = false;
            this.txtChanDoanKemTheo.CompareNoID = true;
            this.txtChanDoanKemTheo.DefaultCode = "-1";
            this.txtChanDoanKemTheo.DefaultID = "-1";
            this.txtChanDoanKemTheo.Drug_ID = null;
            this.txtChanDoanKemTheo.ExtraWidth = 0;
            this.txtChanDoanKemTheo.FillValueAfterSelect = false;
            this.txtChanDoanKemTheo.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtChanDoanKemTheo.LOAI_DANHMUC = "CHANDOAN";
            this.txtChanDoanKemTheo.Location = new System.Drawing.Point(113, 92);
            this.txtChanDoanKemTheo.MaxHeight = -1;
            this.txtChanDoanKemTheo.MinTypedCharacters = 2;
            this.txtChanDoanKemTheo.MyCode = "-1";
            this.txtChanDoanKemTheo.MyID = "-1";
            this.txtChanDoanKemTheo.Name = "txtChanDoanKemTheo";
            this.txtChanDoanKemTheo.RaiseEvent = false;
            this.txtChanDoanKemTheo.RaiseEventEnter = false;
            this.txtChanDoanKemTheo.RaiseEventEnterWhenEmpty = false;
            this.txtChanDoanKemTheo.SelectedIndex = -1;
            this.txtChanDoanKemTheo.Size = new System.Drawing.Size(325, 21);
            this.txtChanDoanKemTheo.splitChar = '@';
            this.txtChanDoanKemTheo.splitCharIDAndCode = '#';
            this.txtChanDoanKemTheo.TabIndex = 8;
            this.txtChanDoanKemTheo.TakeCode = false;
            this.txtChanDoanKemTheo.txtMyCode = null;
            this.txtChanDoanKemTheo.txtMyCode_Edit = null;
            this.txtChanDoanKemTheo.txtMyID = null;
            this.txtChanDoanKemTheo.txtMyID_Edit = null;
            this.txtChanDoanKemTheo.txtMyName = null;
            this.txtChanDoanKemTheo.txtMyName_Edit = null;
            this.txtChanDoanKemTheo.txtNext = null;
            // 
            // panel10
            // 
            this.panel10.Controls.Add(this.cmdGhichandoan);
            this.panel10.Controls.Add(this.cmdSuachandoan);
            this.panel10.Controls.Add(this.cmdThemchandoan);
            this.panel10.Controls.Add(this.cmdXoachandoan);
            this.panel10.Controls.Add(this.cmdHuychandoan);
            this.panel10.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel10.Location = new System.Drawing.Point(0, 403);
            this.panel10.Name = "panel10";
            this.panel10.Size = new System.Drawing.Size(585, 50);
            this.panel10.TabIndex = 474;
            // 
            // pnlother
            // 
            this.pnlother.BackColor = System.Drawing.SystemColors.Control;
            this.pnlother.Controls.Add(this.label12);
            this.pnlother.Controls.Add(this.txtHa);
            this.pnlother.Controls.Add(this.txtNhietDo);
            this.pnlother.Controls.Add(this.txtNhipTho);
            this.pnlother.Controls.Add(this.txtNhipTim);
            this.pnlother.Controls.Add(this.txtMach);
            this.pnlother.Controls.Add(this.label35);
            this.pnlother.Controls.Add(this.label36);
            this.pnlother.Controls.Add(this.label37);
            this.pnlother.Controls.Add(this.label39);
            this.pnlother.Location = new System.Drawing.Point(2, 30);
            this.pnlother.Name = "pnlother";
            this.pnlother.Size = new System.Drawing.Size(581, 31);
            this.pnlother.TabIndex = 0;
            // 
            // label12
            // 
            this.label12.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label12.BackColor = System.Drawing.SystemColors.Control;
            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(8, 5);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(50, 21);
            this.label12.TabIndex = 443;
            this.label12.Text = "Mạch:";
            this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtHa
            // 
            this.txtHa.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.txtHa.Location = new System.Drawing.Point(296, 5);
            this.txtHa.MaxLength = 10;
            this.txtHa.Name = "txtHa";
            this.txtHa.Size = new System.Drawing.Size(52, 21);
            this.txtHa.TabIndex = 4;
            this.txtHa.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // txtNhietDo
            // 
            this.txtNhietDo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.txtNhietDo.Location = new System.Drawing.Point(177, 4);
            this.txtNhietDo.MaxLength = 3;
            this.txtNhietDo.Name = "txtNhietDo";
            this.txtNhietDo.Numeric = true;
            this.txtNhietDo.Size = new System.Drawing.Size(52, 21);
            this.txtNhietDo.TabIndex = 3;
            this.txtNhietDo.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // txtNhipTho
            // 
            this.txtNhipTho.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.txtNhipTho.Location = new System.Drawing.Point(536, 3);
            this.txtNhipTho.MaxLength = 3;
            this.txtNhipTho.Name = "txtNhipTho";
            this.txtNhipTho.Numeric = true;
            this.txtNhipTho.Size = new System.Drawing.Size(40, 21);
            this.txtNhipTho.TabIndex = 6;
            this.txtNhipTho.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // txtNhipTim
            // 
            this.txtNhipTim.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.txtNhipTim.Location = new System.Drawing.Point(413, 5);
            this.txtNhipTim.MaxLength = 3;
            this.txtNhipTim.Name = "txtNhipTim";
            this.txtNhipTim.Numeric = true;
            this.txtNhipTim.Size = new System.Drawing.Size(52, 21);
            this.txtNhipTim.TabIndex = 5;
            this.txtNhipTim.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // txtMach
            // 
            this.txtMach.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.txtMach.Location = new System.Drawing.Point(64, 4);
            this.txtMach.MaxLength = 10;
            this.txtMach.Name = "txtMach";
            this.txtMach.Size = new System.Drawing.Size(52, 21);
            this.txtMach.TabIndex = 2;
            this.txtMach.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // label35
            // 
            this.label35.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label35.BackColor = System.Drawing.SystemColors.Control;
            this.label35.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label35.Location = new System.Drawing.Point(471, 4);
            this.label35.Name = "label35";
            this.label35.Size = new System.Drawing.Size(59, 21);
            this.label35.TabIndex = 4;
            this.label35.Text = "Nhịp thở:";
            this.label35.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label36
            // 
            this.label36.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label36.BackColor = System.Drawing.SystemColors.Control;
            this.label36.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label36.Location = new System.Drawing.Point(354, 5);
            this.label36.Name = "label36";
            this.label36.Size = new System.Drawing.Size(53, 21);
            this.label36.TabIndex = 3;
            this.label36.Text = "Nhịp tim";
            this.label36.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label37
            // 
            this.label37.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label37.BackColor = System.Drawing.SystemColors.Control;
            this.label37.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label37.Location = new System.Drawing.Point(122, 5);
            this.label37.Name = "label37";
            this.label37.Size = new System.Drawing.Size(53, 21);
            this.label37.TabIndex = 1;
            this.label37.Text = "Nhiệt độ";
            this.label37.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label39
            // 
            this.label39.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label39.BackColor = System.Drawing.SystemColors.Control;
            this.label39.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label39.Location = new System.Drawing.Point(235, 4);
            this.label39.Name = "label39";
            this.label39.Size = new System.Drawing.Size(55, 21);
            this.label39.TabIndex = 0;
            this.label39.Text = "Huyết áp";
            this.label39.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cmdSearchBenhPhu
            // 
            this.cmdSearchBenhPhu.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdSearchBenhPhu.Image = ((System.Drawing.Image)(resources.GetObject("cmdSearchBenhPhu.Image")));
            this.cmdSearchBenhPhu.Location = new System.Drawing.Point(409, 141);
            this.cmdSearchBenhPhu.Name = "cmdSearchBenhPhu";
            this.cmdSearchBenhPhu.Size = new System.Drawing.Size(29, 21);
            this.cmdSearchBenhPhu.TabIndex = 14;
            this.cmdSearchBenhPhu.TabStop = false;
            // 
            // grdChandoan
            // 
            this.grdChandoan.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grdChandoan.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.grdChandoan.BackColor = System.Drawing.Color.Silver;
            this.grdChandoan.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><FilterRowInfoText>Lọc" +
    " thông tin bệnh nhân đưa vào phòng khám</FilterRowInfoText></LocalizableData>";
            grdChandoan_DesignTimeLayout_Reference_0.Instance = ((object)(resources.GetObject("grdChandoan_DesignTimeLayout_Reference_0.Instance")));
            grdChandoan_DesignTimeLayout.LayoutReferences.AddRange(new Janus.Windows.Common.Layouts.JanusLayoutReference[] {
            grdChandoan_DesignTimeLayout_Reference_0});
            grdChandoan_DesignTimeLayout.LayoutString = resources.GetString("grdChandoan_DesignTimeLayout.LayoutString");
            this.grdChandoan.DesignTimeLayout = grdChandoan_DesignTimeLayout;
            this.grdChandoan.DynamicFiltering = true;
            this.grdChandoan.EnterKeyBehavior = Janus.Windows.GridEX.EnterKeyBehavior.None;
            this.grdChandoan.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdChandoan.FilterRowButtonStyle = Janus.Windows.GridEX.FilterRowButtonStyle.ConditionOperatorDropDown;
            this.grdChandoan.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdChandoan.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdChandoan.FocusCellFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
            this.grdChandoan.FocusCellFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdChandoan.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdChandoan.FrozenColumns = -1;
            this.grdChandoan.GroupByBoxVisible = false;
            this.grdChandoan.LinkFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
            this.grdChandoan.Location = new System.Drawing.Point(6, 169);
            this.grdChandoan.Name = "grdChandoan";
            this.grdChandoan.RecordNavigator = true;
            this.grdChandoan.SelectedFormatStyle.Alpha = 2;
            this.grdChandoan.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdChandoan.SelectedFormatStyle.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
            this.grdChandoan.SelectedFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdChandoan.SelectedFormatStyle.ForeColor = System.Drawing.Color.White;
            this.grdChandoan.SelectedInactiveFormatStyle.ForeColor = System.Drawing.Color.Black;
            this.grdChandoan.Size = new System.Drawing.Size(569, 228);
            this.grdChandoan.TabIndex = 17;
            this.grdChandoan.TabStop = false;
            this.grdChandoan.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // txtMaBenhphu
            // 
            this.txtMaBenhphu.BackColor = System.Drawing.Color.LightBlue;
            this.txtMaBenhphu.Font = new System.Drawing.Font("Arial", 9F);
            this.txtMaBenhphu.Location = new System.Drawing.Point(113, 142);
            this.txtMaBenhphu.Name = "txtMaBenhphu";
            this.txtMaBenhphu.Size = new System.Drawing.Size(69, 21);
            this.txtMaBenhphu.TabIndex = 11;
            // 
            // txtChanDoan
            // 
            this.txtChanDoan._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtChanDoan._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtChanDoan.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtChanDoan.AutoCompleteList")));
            this.txtChanDoan.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtChanDoan.CaseSensitive = false;
            this.txtChanDoan.CompareNoID = true;
            this.txtChanDoan.DefaultCode = "-1";
            this.txtChanDoan.DefaultID = "-1";
            this.txtChanDoan.Drug_ID = null;
            this.txtChanDoan.ExtraWidth = 0;
            this.txtChanDoan.FillValueAfterSelect = false;
            this.txtChanDoan.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtChanDoan.LOAI_DANHMUC = "CHANDOAN";
            this.txtChanDoan.Location = new System.Drawing.Point(113, 65);
            this.txtChanDoan.MaxHeight = -1;
            this.txtChanDoan.MinTypedCharacters = 2;
            this.txtChanDoan.MyCode = "-1";
            this.txtChanDoan.MyID = "-1";
            this.txtChanDoan.Name = "txtChanDoan";
            this.txtChanDoan.RaiseEvent = false;
            this.txtChanDoan.RaiseEventEnter = false;
            this.txtChanDoan.RaiseEventEnterWhenEmpty = false;
            this.txtChanDoan.SelectedIndex = -1;
            this.txtChanDoan.Size = new System.Drawing.Size(325, 21);
            this.txtChanDoan.splitChar = '@';
            this.txtChanDoan.splitCharIDAndCode = '#';
            this.txtChanDoan.TabIndex = 7;
            this.txtChanDoan.TakeCode = false;
            this.txtChanDoan.txtMyCode = null;
            this.txtChanDoan.txtMyCode_Edit = null;
            this.txtChanDoan.txtMyID = null;
            this.txtChanDoan.txtMyID_Edit = null;
            this.txtChanDoan.txtMyName = null;
            this.txtChanDoan.txtMyName_Edit = null;
            this.txtChanDoan.txtNext = null;
            // 
            // label9
            // 
            this.label9.BackColor = System.Drawing.SystemColors.Control;
            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(5, 117);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(102, 21);
            this.label9.TabIndex = 462;
            this.label9.Text = "Bệnh chính:";
            this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label46
            // 
            this.label46.BackColor = System.Drawing.SystemColors.Control;
            this.label46.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label46.Location = new System.Drawing.Point(5, 64);
            this.label46.Name = "label46";
            this.label46.Size = new System.Drawing.Size(102, 21);
            this.label46.TabIndex = 460;
            this.label46.Text = "Chẩn đoán:";
            this.label46.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label11
            // 
            this.label11.Location = new System.Drawing.Point(428, 225);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(10, 15);
            this.label11.TabIndex = 466;
            this.label11.Text = "Chẩn đoán kèm theo";
            this.label11.Visible = false;
            // 
            // label38
            // 
            this.label38.BackColor = System.Drawing.SystemColors.Control;
            this.label38.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label38.Location = new System.Drawing.Point(5, 142);
            this.label38.Name = "label38";
            this.label38.Size = new System.Drawing.Size(102, 21);
            this.label38.TabIndex = 463;
            this.label38.Text = "Bệnh phụ:";
            this.label38.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtTenBenhPhu
            // 
            this.txtTenBenhPhu.Font = new System.Drawing.Font("Arial", 9F);
            this.txtTenBenhPhu.Location = new System.Drawing.Point(183, 142);
            this.txtTenBenhPhu.Name = "txtTenBenhPhu";
            this.txtTenBenhPhu.Size = new System.Drawing.Size(225, 21);
            this.txtTenBenhPhu.TabIndex = 12;
            this.txtTenBenhPhu.TabStop = false;
            // 
            // cmdSearchBenhChinh
            // 
            this.cmdSearchBenhChinh.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdSearchBenhChinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdSearchBenhChinh.Image")));
            this.cmdSearchBenhChinh.Location = new System.Drawing.Point(409, 115);
            this.cmdSearchBenhChinh.Name = "cmdSearchBenhChinh";
            this.cmdSearchBenhChinh.Size = new System.Drawing.Size(29, 21);
            this.cmdSearchBenhChinh.TabIndex = 13;
            this.cmdSearchBenhChinh.TabStop = false;
            // 
            // txtTenBenhChinh
            // 
            this.txtTenBenhChinh.Font = new System.Drawing.Font("Arial", 9F);
            this.txtTenBenhChinh.Location = new System.Drawing.Point(183, 116);
            this.txtTenBenhChinh.Name = "txtTenBenhChinh";
            this.txtTenBenhChinh.Size = new System.Drawing.Size(225, 21);
            this.txtTenBenhChinh.TabIndex = 10;
            this.txtTenBenhChinh.TabStop = false;
            // 
            // txtMaBenhChinh
            // 
            this.txtMaBenhChinh.BackColor = System.Drawing.Color.LightBlue;
            this.txtMaBenhChinh.Font = new System.Drawing.Font("Arial", 9F);
            this.txtMaBenhChinh.Location = new System.Drawing.Point(113, 116);
            this.txtMaBenhChinh.Name = "txtMaBenhChinh";
            this.txtMaBenhChinh.Size = new System.Drawing.Size(69, 21);
            this.txtMaBenhChinh.TabIndex = 9;
            // 
            // tabPageChiDinhCLS
            // 
            this.tabPageChiDinhCLS.Controls.Add(this.pnlChidinh);
            this.tabPageChiDinhCLS.Font = new System.Drawing.Font("Arial", 9F);
            this.tabPageChiDinhCLS.Location = new System.Drawing.Point(1, 23);
            this.tabPageChiDinhCLS.Name = "tabPageChiDinhCLS";
            this.tabPageChiDinhCLS.Size = new System.Drawing.Size(585, 475);
            this.tabPageChiDinhCLS.TabStop = true;
            this.tabPageChiDinhCLS.Text = "CLS";
            // 
            // pnlChidinh
            // 
            this.pnlChidinh.Controls.Add(this.uiTabKqCls);
            this.pnlChidinh.Controls.Add(this.grdAssignDetail);
            this.pnlChidinh.Controls.Add(this.barcode1);
            this.pnlChidinh.Controls.Add(this.pnlCLS);
            this.pnlChidinh.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlChidinh.Location = new System.Drawing.Point(0, 0);
            this.pnlChidinh.Name = "pnlChidinh";
            this.pnlChidinh.Size = new System.Drawing.Size(585, 475);
            this.pnlChidinh.TabIndex = 8;
            // 
            // uiTabKqCls
            // 
            this.uiTabKqCls.Dock = System.Windows.Forms.DockStyle.Right;
            this.uiTabKqCls.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiTabKqCls.Location = new System.Drawing.Point(585, 0);
            this.uiTabKqCls.Name = "uiTabKqCls";
            this.uiTabKqCls.Size = new System.Drawing.Size(0, 425);
            this.uiTabKqCls.TabIndex = 255;
            this.uiTabKqCls.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
            this.tabPhieuDieuTri});
            this.uiTabKqCls.VisualStyle = Janus.Windows.UI.Tab.TabVisualStyle.VS2005;
            // 
            // tabPhieuDieuTri
            // 
            this.tabPhieuDieuTri.Controls.Add(this.pnlXN);
            this.tabPhieuDieuTri.Controls.Add(this.pnlXQ);
            this.tabPhieuDieuTri.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tabPhieuDieuTri.Location = new System.Drawing.Point(1, 24);
            this.tabPhieuDieuTri.Name = "tabPhieuDieuTri";
            this.tabPhieuDieuTri.Size = new System.Drawing.Size(0, 400);
            this.tabPhieuDieuTri.TabStop = true;
            this.tabPhieuDieuTri.Text = "Kết quả CLS";
            // 
            // pnlXN
            // 
            this.pnlXN.Controls.Add(this.grdKetqua);
            this.pnlXN.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlXN.Location = new System.Drawing.Point(0, 0);
            this.pnlXN.Name = "pnlXN";
            this.pnlXN.Size = new System.Drawing.Size(0, 400);
            this.pnlXN.TabIndex = 0;
            // 
            // grdKetqua
            // 
            this.grdKetqua.AlternatingColors = true;
            this.grdKetqua.CellSelectionMode = Janus.Windows.GridEX.CellSelectionMode.SingleCell;
            grdKetqua_DesignTimeLayout.LayoutString = resources.GetString("grdKetqua_DesignTimeLayout.LayoutString");
            this.grdKetqua.DesignTimeLayout = grdKetqua_DesignTimeLayout;
            this.grdKetqua.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdKetqua.DynamicFiltering = true;
            this.grdKetqua.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdKetqua.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdKetqua.Font = new System.Drawing.Font("Arial", 9F);
            this.grdKetqua.GroupByBoxVisible = false;
            this.grdKetqua.GroupMode = Janus.Windows.GridEX.GroupMode.Collapsed;
            this.grdKetqua.GroupRowFormatStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
            this.grdKetqua.GroupRowFormatStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.grdKetqua.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdKetqua.Location = new System.Drawing.Point(0, 0);
            this.grdKetqua.Name = "grdKetqua";
            this.grdKetqua.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdKetqua.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdKetqua.Size = new System.Drawing.Size(0, 400);
            this.grdKetqua.TabIndex = 256;
            this.grdKetqua.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdKetqua.TotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
            this.grdKetqua.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdKetqua.TotalRowFormatStyle.ForeColor = System.Drawing.Color.Black;
            this.grdKetqua.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdKetqua.UseGroupRowSelector = true;
            this.grdKetqua.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // pnlXQ
            // 
            this.pnlXQ.Controls.Add(this.pnlDynamicValues);
            this.pnlXQ.Controls.Add(this.lnkSize);
            this.pnlXQ.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlXQ.Location = new System.Drawing.Point(0, 0);
            this.pnlXQ.Name = "pnlXQ";
            this.pnlXQ.Size = new System.Drawing.Size(0, 400);
            this.pnlXQ.TabIndex = 22;
            // 
            // pnlDynamicValues
            // 
            this.pnlDynamicValues.AutoScroll = true;
            this.pnlDynamicValues.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlDynamicValues.Location = new System.Drawing.Point(0, 0);
            this.pnlDynamicValues.Name = "pnlDynamicValues";
            this.pnlDynamicValues.Size = new System.Drawing.Size(0, 384);
            this.pnlDynamicValues.TabIndex = 503;
            this.pnlDynamicValues.TabStop = true;
            // 
            // barcode1
            // 
            this.barcode1.BackColor = System.Drawing.Color.White;
            this.barcode1.BarColor = System.Drawing.Color.Black;
            this.barcode1.BarRatio = 2F;
            this.barcode1.Data = "00000000000";
            this.barcode1.DataExtension = null;
            this.barcode1.Font = new System.Drawing.Font("Arial", 30F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.barcode1.Location = new System.Drawing.Point(-71, 152);
            this.barcode1.Name = "barcode1";
            this.barcode1.Size = new System.Drawing.Size(285, 117);
            this.barcode1.Symbology = Mabry.Windows.Forms.Barcode.Barcode.BarcodeSymbologies.Code128;
            this.barcode1.TabIndex = 252;
            this.barcode1.Visible = false;
            // 
            // pnlCLS
            // 
            this.pnlCLS.Controls.Add(this.chkIntach);
            this.pnlCLS.Controls.Add(this.cmdPrintAssign);
            this.pnlCLS.Controls.Add(this.cmdDelteAssign);
            this.pnlCLS.Controls.Add(this.cmdUpdate);
            this.pnlCLS.Controls.Add(this.cmdInsertAssign);
            this.pnlCLS.Controls.Add(this.cboServicePrint);
            this.pnlCLS.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.pnlCLS.Location = new System.Drawing.Point(0, 425);
            this.pnlCLS.Name = "pnlCLS";
            this.pnlCLS.Size = new System.Drawing.Size(585, 50);
            this.pnlCLS.TabIndex = 1;
            // 
            // 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(293, 16);
            this.chkIntach.Name = "chkIntach";
            this.chkIntach.Size = new System.Drawing.Size(69, 19);
            this.chkIntach.TabIndex = 16;
            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(368, 13);
            this.cboServicePrint.Name = "cboServicePrint";
            this.cboServicePrint.Size = new System.Drawing.Size(173, 23);
            this.cboServicePrint.TabIndex = 15;
            // 
            // tabPageChidinhThuoc
            // 
            this.tabPageChidinhThuoc.Controls.Add(this.pnltabkedon);
            this.tabPageChidinhThuoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tabPageChidinhThuoc.Location = new System.Drawing.Point(1, 23);
            this.tabPageChidinhThuoc.Name = "tabPageChidinhThuoc";
            this.tabPageChidinhThuoc.Size = new System.Drawing.Size(585, 475);
            this.tabPageChidinhThuoc.TabStop = true;
            this.tabPageChidinhThuoc.Text = "Thuốc";
            // 
            // pnltabkedon
            // 
            this.pnltabkedon.Controls.Add(this.grdPresDetail);
            this.pnltabkedon.Controls.Add(this.pnlDonthuoc);
            this.pnltabkedon.Controls.Add(this.barcode);
            this.pnltabkedon.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnltabkedon.Location = new System.Drawing.Point(0, 0);
            this.pnltabkedon.Name = "pnltabkedon";
            this.pnltabkedon.Size = new System.Drawing.Size(585, 475);
            this.pnltabkedon.TabIndex = 9;
            // 
            // grdPresDetail
            // 
            this.grdPresDetail.AlternatingColors = true;
            this.grdPresDetail.ContextMenuStrip = this.ctxDelDrug;
            grdPresDetail_DesignTimeLayout.LayoutString = resources.GetString("grdPresDetail_DesignTimeLayout.LayoutString");
            this.grdPresDetail.DesignTimeLayout = grdPresDetail_DesignTimeLayout;
            this.grdPresDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdPresDetail.DynamicFiltering = true;
            this.grdPresDetail.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdPresDetail.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdPresDetail.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdPresDetail.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdPresDetail.GroupByBoxVisible = false;
            this.grdPresDetail.GroupRowFormatStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdPresDetail.GroupRowFormatStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.grdPresDetail.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdPresDetail.Location = new System.Drawing.Point(0, 0);
            this.grdPresDetail.Name = "grdPresDetail";
            this.grdPresDetail.RecordNavigator = true;
            this.grdPresDetail.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdPresDetail.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdPresDetail.Size = new System.Drawing.Size(585, 425);
            this.grdPresDetail.TabIndex = 2;
            this.grdPresDetail.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdPresDetail.TotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
            this.grdPresDetail.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdPresDetail.TotalRowFormatStyle.ForeColor = System.Drawing.Color.Black;
            this.grdPresDetail.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdPresDetail.UseGroupRowSelector = true;
            this.grdPresDetail.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // pnlDonthuoc
            // 
            this.pnlDonthuoc.Controls.Add(this.cmdPrintPres);
            this.pnlDonthuoc.Controls.Add(this.cmdDeletePres);
            this.pnlDonthuoc.Controls.Add(this.cmdUpdatePres);
            this.pnlDonthuoc.Controls.Add(this.cmdCreateNewPres);
            this.pnlDonthuoc.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.pnlDonthuoc.Location = new System.Drawing.Point(0, 425);
            this.pnlDonthuoc.Name = "pnlDonthuoc";
            this.pnlDonthuoc.Size = new System.Drawing.Size(585, 50);
            this.pnlDonthuoc.TabIndex = 1;
            // 
            // barcode
            // 
            this.barcode.BackColor = System.Drawing.Color.White;
            this.barcode.BarColor = System.Drawing.Color.Black;
            this.barcode.BarRatio = 2F;
            this.barcode.Data = null;
            this.barcode.DataExtension = null;
            this.barcode.Location = new System.Drawing.Point(125, 55);
            this.barcode.Name = "barcode";
            this.barcode.Size = new System.Drawing.Size(210, 74);
            this.barcode.Symbology = Mabry.Windows.Forms.Barcode.Barcode.BarcodeSymbologies.Code128;
            this.barcode.TabIndex = 81;
            this.barcode.Text = "00000000";
            this.barcode.Visible = false;
            // 
            // TabPageVTTH
            // 
            this.TabPageVTTH.Controls.Add(this.grdVTTH);
            this.TabPageVTTH.Controls.Add(this.pnlVTTH);
            this.TabPageVTTH.Location = new System.Drawing.Point(1, 23);
            this.TabPageVTTH.Name = "TabPageVTTH";
            this.TabPageVTTH.Size = new System.Drawing.Size(585, 453);
            this.TabPageVTTH.TabStop = true;
            this.TabPageVTTH.Text = "VTTH";
            // 
            // grdVTTH
            // 
            this.grdVTTH.AlternatingColors = true;
            this.grdVTTH.ContextMenuStrip = this.ctxDelDrug;
            grdVTTH_DesignTimeLayout.LayoutString = resources.GetString("grdVTTH_DesignTimeLayout.LayoutString");
            this.grdVTTH.DesignTimeLayout = grdVTTH_DesignTimeLayout;
            this.grdVTTH.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdVTTH.DynamicFiltering = true;
            this.grdVTTH.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdVTTH.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdVTTH.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdVTTH.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdVTTH.GroupByBoxVisible = false;
            this.grdVTTH.GroupRowFormatStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdVTTH.GroupRowFormatStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.grdVTTH.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdVTTH.Location = new System.Drawing.Point(0, 0);
            this.grdVTTH.Name = "grdVTTH";
            this.grdVTTH.RecordNavigator = true;
            this.grdVTTH.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdVTTH.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdVTTH.Size = new System.Drawing.Size(585, 403);
            this.grdVTTH.TabIndex = 3;
            this.grdVTTH.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdVTTH.TotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
            this.grdVTTH.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdVTTH.TotalRowFormatStyle.ForeColor = System.Drawing.Color.Black;
            this.grdVTTH.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdVTTH.UseGroupRowSelector = true;
            this.grdVTTH.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // pnlVTTH
            // 
            this.pnlVTTH.Controls.Add(this.cmdChuyengoi);
            this.pnlVTTH.Controls.Add(this.cmdInphieuVT);
            this.pnlVTTH.Controls.Add(this.cmdXoaphieuVT);
            this.pnlVTTH.Controls.Add(this.cmdSuaphieuVT);
            this.pnlVTTH.Controls.Add(this.cmdThemphieuVT);
            this.pnlVTTH.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.pnlVTTH.Location = new System.Drawing.Point(0, 403);
            this.pnlVTTH.Name = "pnlVTTH";
            this.pnlVTTH.Size = new System.Drawing.Size(585, 50);
            this.pnlVTTH.TabIndex = 2;
            // 
            // tabPagegoimo
            // 
            this.tabPagegoimo.Controls.Add(this.pnlKetluan);
            this.tabPagegoimo.Font = new System.Drawing.Font("Arial", 9F);
            this.tabPagegoimo.Location = new System.Drawing.Point(1, 23);
            this.tabPagegoimo.Name = "tabPagegoimo";
            this.tabPagegoimo.Size = new System.Drawing.Size(585, 453);
            this.tabPagegoimo.TabStop = true;
            this.tabPagegoimo.Text = "Gói dịch vụ";
            // 
            // pnlKetluan
            // 
            this.pnlKetluan.Controls.Add(this.pnlGoiDV);
            this.pnlKetluan.Controls.Add(this.pnlVTTHTronggoi);
            this.pnlKetluan.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlKetluan.Location = new System.Drawing.Point(0, 0);
            this.pnlKetluan.Name = "pnlKetluan";
            this.pnlKetluan.Size = new System.Drawing.Size(585, 453);
            this.pnlKetluan.TabIndex = 6;
            // 
            // pnlGoiDV
            // 
            this.pnlGoiDV.Controls.Add(this.grdGoidichvu);
            this.pnlGoiDV.Controls.Add(this.chkintachgoidichvu);
            this.pnlGoiDV.Controls.Add(this.cmdIngoiDV);
            this.pnlGoiDV.Controls.Add(this.cmdXoagoiDV);
            this.pnlGoiDV.Controls.Add(this.cmdSuagoiDV);
            this.pnlGoiDV.Controls.Add(this.cmdThemgoiDV);
            this.pnlGoiDV.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlGoiDV.Location = new System.Drawing.Point(0, 0);
            this.pnlGoiDV.Name = "pnlGoiDV";
            this.pnlGoiDV.Size = new System.Drawing.Size(585, 185);
            this.pnlGoiDV.TabIndex = 447;
            // 
            // chkintachgoidichvu
            // 
            this.chkintachgoidichvu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.chkintachgoidichvu.AutoSize = true;
            this.chkintachgoidichvu.Location = new System.Drawing.Point(426, 160);
            this.chkintachgoidichvu.Name = "chkintachgoidichvu";
            this.chkintachgoidichvu.Size = new System.Drawing.Size(69, 19);
            this.chkintachgoidichvu.TabIndex = 17;
            this.chkintachgoidichvu.Text = "In tách?";
            this.chkintachgoidichvu.UseVisualStyleBackColor = true;
            // 
            // pnlVTTHTronggoi
            // 
            this.pnlVTTHTronggoi.Controls.Add(this.grdVTTH_tronggoi);
            this.pnlVTTHTronggoi.Controls.Add(this.pnlVTTHTronggoi_act);
            this.pnlVTTHTronggoi.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.pnlVTTHTronggoi.Location = new System.Drawing.Point(0, 185);
            this.pnlVTTHTronggoi.Name = "pnlVTTHTronggoi";
            this.pnlVTTHTronggoi.Size = new System.Drawing.Size(585, 268);
            this.pnlVTTHTronggoi.TabIndex = 446;
            // 
            // grdVTTH_tronggoi
            // 
            this.grdVTTH_tronggoi.AlternatingColors = true;
            this.grdVTTH_tronggoi.ContextMenuStrip = this.ctxDelDrug;
            grdVTTH_tronggoi_DesignTimeLayout.LayoutString = resources.GetString("grdVTTH_tronggoi_DesignTimeLayout.LayoutString");
            this.grdVTTH_tronggoi.DesignTimeLayout = grdVTTH_tronggoi_DesignTimeLayout;
            this.grdVTTH_tronggoi.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdVTTH_tronggoi.DynamicFiltering = true;
            this.grdVTTH_tronggoi.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdVTTH_tronggoi.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdVTTH_tronggoi.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdVTTH_tronggoi.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdVTTH_tronggoi.GroupByBoxVisible = false;
            this.grdVTTH_tronggoi.GroupRowFormatStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grdVTTH_tronggoi.GroupRowFormatStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
            this.grdVTTH_tronggoi.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdVTTH_tronggoi.Location = new System.Drawing.Point(0, 0);
            this.grdVTTH_tronggoi.Name = "grdVTTH_tronggoi";
            this.grdVTTH_tronggoi.RecordNavigator = true;
            this.grdVTTH_tronggoi.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdVTTH_tronggoi.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdVTTH_tronggoi.Size = new System.Drawing.Size(585, 218);
            this.grdVTTH_tronggoi.TabIndex = 447;
            this.grdVTTH_tronggoi.TotalRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
            this.grdVTTH_tronggoi.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdVTTH_tronggoi.TotalRowFormatStyle.ForeColor = System.Drawing.Color.Black;
            this.grdVTTH_tronggoi.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdVTTH_tronggoi.UseGroupRowSelector = true;
            this.grdVTTH_tronggoi.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // pnlVTTHTronggoi_act
            // 
            this.pnlVTTHTronggoi_act.Controls.Add(this.cmdInphieuVT_tronggoi);
            this.pnlVTTHTronggoi_act.Controls.Add(this.cmdXoaphieuVT_tronggoi);
            this.pnlVTTHTronggoi_act.Controls.Add(this.cmdSuaphieuVT_tronggoi);
            this.pnlVTTHTronggoi_act.Controls.Add(this.cmdThemphieuVT_tronggoi);
            this.pnlVTTHTronggoi_act.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.pnlVTTHTronggoi_act.Location = new System.Drawing.Point(0, 218);
            this.pnlVTTHTronggoi_act.Name = "pnlVTTHTronggoi_act";
            this.pnlVTTHTronggoi_act.Size = new System.Drawing.Size(585, 50);
            this.pnlVTTHTronggoi_act.TabIndex = 446;
            // 
            // uiTabPage1
            // 
            this.uiTabPage1.Controls.Add(this.panel15);
            this.uiTabPage1.Key = "DinhDuong";
            this.uiTabPage1.Location = new System.Drawing.Point(1, 23);
            this.uiTabPage1.Name = "uiTabPage1";
            this.uiTabPage1.Size = new System.Drawing.Size(585, 453);
            this.uiTabPage1.TabStop = true;
            this.uiTabPage1.Text = "Dinh dưỡng";
            // 
            // panel15
            // 
            this.panel15.Controls.Add(this.txtHoly);
            this.panel15.Controls.Add(this.label44);
            this.panel15.Controls.Add(this.cmdAdd);
            this.panel15.Controls.Add(this.panel14);
            this.panel15.Controls.Add(this.label43);
            this.panel15.Controls.Add(this.grdChedoDinhduong);
            this.panel15.Controls.Add(this.txtChedodinhduong);
            this.panel15.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel15.Location = new System.Drawing.Point(0, 0);
            this.panel15.Name = "panel15";
            this.panel15.Size = new System.Drawing.Size(585, 453);
            this.panel15.TabIndex = 479;
            // 
            // txtHoly
            // 
            this.txtHoly._backcolor = System.Drawing.SystemColors.Control;
            this.txtHoly._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtHoly.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtHoly.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtHoly.AutoCompleteList")));
            this.txtHoly.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtHoly.CaseSensitive = false;
            this.txtHoly.CompareNoID = true;
            this.txtHoly.DefaultCode = "-1";
            this.txtHoly.DefaultID = "-1";
            this.txtHoly.Drug_ID = null;
            this.txtHoly.ExtraWidth = 0;
            this.txtHoly.FillValueAfterSelect = false;
            this.txtHoly.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtHoly.LOAI_DANHMUC = "HOLY";
            this.txtHoly.Location = new System.Drawing.Point(137, 13);
            this.txtHoly.MaxHeight = -1;
            this.txtHoly.MinTypedCharacters = 2;
            this.txtHoly.MyCode = "-1";
            this.txtHoly.MyID = "-1";
            this.txtHoly.Name = "txtHoly";
            this.txtHoly.RaiseEvent = false;
            this.txtHoly.RaiseEventEnter = false;
            this.txtHoly.RaiseEventEnterWhenEmpty = false;
            this.txtHoly.SelectedIndex = -1;
            this.txtHoly.Size = new System.Drawing.Size(392, 21);
            this.txtHoly.splitChar = '@';
            this.txtHoly.splitCharIDAndCode = '#';
            this.txtHoly.TabIndex = 0;
            this.txtHoly.TakeCode = false;
            this.txtHoly.txtMyCode = null;
            this.txtHoly.txtMyCode_Edit = null;
            this.txtHoly.txtMyID = null;
            this.txtHoly.txtMyID_Edit = null;
            this.txtHoly.txtMyName = null;
            this.txtHoly.txtMyName_Edit = null;
            this.txtHoly.txtNext = null;
            // 
            // label44
            // 
            this.label44.BackColor = System.Drawing.SystemColors.Control;
            this.label44.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label44.ForeColor = System.Drawing.Color.Red;
            this.label44.Location = new System.Drawing.Point(7, 14);
            this.label44.Name = "label44";
            this.label44.Size = new System.Drawing.Size(129, 21);
            this.label44.TabIndex = 480;
            this.label44.Text = "Hộ lý:";
            this.label44.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // panel14
            // 
            this.panel14.Controls.Add(this.cmdXoaDinhduong);
            this.panel14.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel14.Location = new System.Drawing.Point(0, 403);
            this.panel14.Name = "panel14";
            this.panel14.Size = new System.Drawing.Size(585, 50);
            this.panel14.TabIndex = 476;
            // 
            // label43
            // 
            this.label43.BackColor = System.Drawing.SystemColors.Control;
            this.label43.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label43.ForeColor = System.Drawing.Color.Red;
            this.label43.Location = new System.Drawing.Point(7, 40);
            this.label43.Name = "label43";
            this.label43.Size = new System.Drawing.Size(129, 21);
            this.label43.TabIndex = 478;
            this.label43.Text = "Chế độ dinh dưỡng:";
            this.label43.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // grdChedoDinhduong
            // 
            this.grdChedoDinhduong.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grdChedoDinhduong.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.grdChedoDinhduong.BackColor = System.Drawing.Color.Silver;
            this.grdChedoDinhduong.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><FilterRowInfoText>Lọc" +
    " thông tin bệnh nhân đưa vào phòng khám</FilterRowInfoText></LocalizableData>";
            grdChedoDinhduong_DesignTimeLayout_Reference_0.Instance = ((object)(resources.GetObject("grdChedoDinhduong_DesignTimeLayout_Reference_0.Instance")));
            grdChedoDinhduong_DesignTimeLayout.LayoutReferences.AddRange(new Janus.Windows.Common.Layouts.JanusLayoutReference[] {
            grdChedoDinhduong_DesignTimeLayout_Reference_0});
            grdChedoDinhduong_DesignTimeLayout.LayoutString = resources.GetString("grdChedoDinhduong_DesignTimeLayout.LayoutString");
            this.grdChedoDinhduong.DesignTimeLayout = grdChedoDinhduong_DesignTimeLayout;
            this.grdChedoDinhduong.DynamicFiltering = true;
            this.grdChedoDinhduong.EnterKeyBehavior = Janus.Windows.GridEX.EnterKeyBehavior.None;
            this.grdChedoDinhduong.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
            this.grdChedoDinhduong.FilterRowButtonStyle = Janus.Windows.GridEX.FilterRowButtonStyle.ConditionOperatorDropDown;
            this.grdChedoDinhduong.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdChedoDinhduong.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdChedoDinhduong.FocusCellFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
            this.grdChedoDinhduong.FocusCellFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdChedoDinhduong.Font = new System.Drawing.Font("Arial", 9F);
            this.grdChedoDinhduong.FrozenColumns = -1;
            this.grdChedoDinhduong.GroupByBoxVisible = false;
            this.grdChedoDinhduong.LinkFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
            this.grdChedoDinhduong.Location = new System.Drawing.Point(7, 70);
            this.grdChedoDinhduong.Name = "grdChedoDinhduong";
            this.grdChedoDinhduong.RecordNavigator = true;
            this.grdChedoDinhduong.SelectedFormatStyle.Alpha = 2;
            this.grdChedoDinhduong.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
            this.grdChedoDinhduong.SelectedFormatStyle.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
            this.grdChedoDinhduong.SelectedFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdChedoDinhduong.SelectedFormatStyle.ForeColor = System.Drawing.Color.White;
            this.grdChedoDinhduong.SelectedInactiveFormatStyle.ForeColor = System.Drawing.Color.Black;
            this.grdChedoDinhduong.Size = new System.Drawing.Size(573, 327);
            this.grdChedoDinhduong.TabIndex = 476;
            this.grdChedoDinhduong.TabStop = false;
            this.grdChedoDinhduong.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // txtChedodinhduong
            // 
            this.txtChedodinhduong._backcolor = System.Drawing.SystemColors.Control;
            this.txtChedodinhduong._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtChedodinhduong.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtChedodinhduong.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtChedodinhduong.AutoCompleteList")));
            this.txtChedodinhduong.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtChedodinhduong.CaseSensitive = false;
            this.txtChedodinhduong.CompareNoID = true;
            this.txtChedodinhduong.DefaultCode = "-1";
            this.txtChedodinhduong.DefaultID = "-1";
            this.txtChedodinhduong.Drug_ID = null;
            this.txtChedodinhduong.ExtraWidth = 0;
            this.txtChedodinhduong.FillValueAfterSelect = false;
            this.txtChedodinhduong.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtChedodinhduong.LOAI_DANHMUC = "CHEDODINHDUONG";
            this.txtChedodinhduong.Location = new System.Drawing.Point(137, 40);
            this.txtChedodinhduong.MaxHeight = -1;
            this.txtChedodinhduong.MinTypedCharacters = 2;
            this.txtChedodinhduong.MyCode = "-1";
            this.txtChedodinhduong.MyID = "-1";
            this.txtChedodinhduong.Name = "txtChedodinhduong";
            this.txtChedodinhduong.RaiseEvent = false;
            this.txtChedodinhduong.RaiseEventEnter = false;
            this.txtChedodinhduong.RaiseEventEnterWhenEmpty = false;
            this.txtChedodinhduong.SelectedIndex = -1;
            this.txtChedodinhduong.Size = new System.Drawing.Size(392, 21);
            this.txtChedodinhduong.splitChar = '@';
            this.txtChedodinhduong.splitCharIDAndCode = '#';
            this.txtChedodinhduong.TabIndex = 1;
            this.txtChedodinhduong.TakeCode = false;
            this.txtChedodinhduong.txtMyCode = null;
            this.txtChedodinhduong.txtMyCode_Edit = null;
            this.txtChedodinhduong.txtMyID = null;
            this.txtChedodinhduong.txtMyID_Edit = null;
            this.txtChedodinhduong.txtMyName = null;
            this.txtChedodinhduong.txtMyName_Edit = null;
            this.txtChedodinhduong.txtNext = null;
            // 
            // tabPageCauhinh
            // 
            this.tabPageCauhinh.Controls.Add(this.panel2);
            this.tabPageCauhinh.Location = new System.Drawing.Point(1, 23);
            this.tabPageCauhinh.Name = "tabPageCauhinh";
            this.tabPageCauhinh.Size = new System.Drawing.Size(585, 453);
            this.tabPageCauhinh.TabStop = true;
            this.tabPageCauhinh.Text = "Cấu hình";
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.cmdCauHinh);
            this.panel2.Controls.Add(this.cmdNoitruConfig);
            this.panel2.Controls.Add(this.chkHienthichitiet);
            this.panel2.Controls.Add(this.cboPrintPreviewTomtatdieutringoaitru);
            this.panel2.Controls.Add(this.cboA4Tomtatdieutringoaitru);
            this.panel2.Controls.Add(this.label6);
            this.panel2.Controls.Add(this.cboPrintPreviewCLS);
            this.panel2.Controls.Add(this.cboA4Cls);
            this.panel2.Controls.Add(this.label13);
            this.panel2.Controls.Add(this.chkAutocollapse);
            this.panel2.Controls.Add(this.cmdThamkhamConfig);
            this.panel2.Controls.Add(this.cboLaserPrinters);
            this.panel2.Controls.Add(this.cboPrintPreviewDonthuoc);
            this.panel2.Controls.Add(this.cboA4Donthuoc);
            this.panel2.Controls.Add(this.label26);
            this.panel2.Controls.Add(this.label2);
            this.panel2.Controls.Add(this.vbLine7);
            this.panel2.Controls.Add(this.vbLine6);
            this.panel2.Controls.Add(this.vbLine5);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(0, 0);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(585, 453);
            this.panel2.TabIndex = 447;
            // 
            // cmdNoitruConfig
            // 
            this.cmdNoitruConfig.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdNoitruConfig.Location = new System.Drawing.Point(220, 284);
            this.cmdNoitruConfig.Name = "cmdNoitruConfig";
            this.cmdNoitruConfig.Size = new System.Drawing.Size(119, 29);
            this.cmdNoitruConfig.TabIndex = 468;
            this.cmdNoitruConfig.Text = "Cấu hình nội trú";
            // 
            // cboPrintPreviewTomtatdieutringoaitru
            // 
            this.cboPrintPreviewTomtatdieutringoaitru.BackColor = System.Drawing.Color.White;
            this.cboPrintPreviewTomtatdieutringoaitru.BorderStyle = Janus.Windows.UI.BorderStyle.Sunken;
            this.cboPrintPreviewTomtatdieutringoaitru.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboPrintPreviewTomtatdieutringoaitru.Font = new System.Drawing.Font("Arial", 9F);
            uiComboBoxItem1.FormatStyle.Alpha = 0;
            uiComboBoxItem1.IsSeparator = false;
            uiComboBoxItem1.Text = "Xem trước khi in";
            uiComboBoxItem1.Value = "0";
            uiComboBoxItem2.FormatStyle.Alpha = 0;
            uiComboBoxItem2.IsSeparator = false;
            uiComboBoxItem2.Text = "In ngay";
            uiComboBoxItem2.Value = "1";
            this.cboPrintPreviewTomtatdieutringoaitru.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem1,
            uiComboBoxItem2});
            this.cboPrintPreviewTomtatdieutringoaitru.Location = new System.Drawing.Point(152, 226);
            this.cboPrintPreviewTomtatdieutringoaitru.Name = "cboPrintPreviewTomtatdieutringoaitru";
            this.cboPrintPreviewTomtatdieutringoaitru.Size = new System.Drawing.Size(216, 21);
            this.cboPrintPreviewTomtatdieutringoaitru.TabIndex = 465;
            this.cboPrintPreviewTomtatdieutringoaitru.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
            // 
            // cboA4Tomtatdieutringoaitru
            // 
            this.cboA4Tomtatdieutringoaitru.BackColor = System.Drawing.Color.White;
            this.cboA4Tomtatdieutringoaitru.BorderStyle = Janus.Windows.UI.BorderStyle.Sunken;
            this.cboA4Tomtatdieutringoaitru.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboA4Tomtatdieutringoaitru.Font = new System.Drawing.Font("Arial", 9F);
            uiComboBoxItem3.FormatStyle.Alpha = 0;
            uiComboBoxItem3.IsSeparator = false;
            uiComboBoxItem3.Text = "A4";
            uiComboBoxItem3.Value = "A4";
            uiComboBoxItem4.FormatStyle.Alpha = 0;
            uiComboBoxItem4.IsSeparator = false;
            uiComboBoxItem4.Text = "A5";
            uiComboBoxItem4.Value = "A5";
            this.cboA4Tomtatdieutringoaitru.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem3,
            uiComboBoxItem4});
            this.cboA4Tomtatdieutringoaitru.Location = new System.Drawing.Point(95, 226);
            this.cboA4Tomtatdieutringoaitru.Name = "cboA4Tomtatdieutringoaitru";
            this.cboA4Tomtatdieutringoaitru.Size = new System.Drawing.Size(55, 21);
            this.cboA4Tomtatdieutringoaitru.TabIndex = 464;
            this.cboA4Tomtatdieutringoaitru.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
            // 
            // label6
            // 
            this.label6.Font = new System.Drawing.Font("Arial", 9F);
            this.label6.Location = new System.Drawing.Point(15, 226);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(74, 21);
            this.label6.TabIndex = 463;
            this.label6.Text = "Khổ giấy";
            this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cboPrintPreviewCLS
            // 
            this.cboPrintPreviewCLS.BackColor = System.Drawing.Color.White;
            this.cboPrintPreviewCLS.BorderStyle = Janus.Windows.UI.BorderStyle.Sunken;
            this.cboPrintPreviewCLS.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboPrintPreviewCLS.Font = new System.Drawing.Font("Arial", 9F);
            uiComboBoxItem5.FormatStyle.Alpha = 0;
            uiComboBoxItem5.IsSeparator = false;
            uiComboBoxItem5.Text = "Xem trước khi in";
            uiComboBoxItem5.Value = "0";
            uiComboBoxItem6.FormatStyle.Alpha = 0;
            uiComboBoxItem6.IsSeparator = false;
            uiComboBoxItem6.Text = "In ngay";
            uiComboBoxItem6.Value = "1";
            this.cboPrintPreviewCLS.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem5,
            uiComboBoxItem6});
            this.cboPrintPreviewCLS.Location = new System.Drawing.Point(152, 169);
            this.cboPrintPreviewCLS.Name = "cboPrintPreviewCLS";
            this.cboPrintPreviewCLS.Size = new System.Drawing.Size(216, 21);
            this.cboPrintPreviewCLS.TabIndex = 459;
            this.cboPrintPreviewCLS.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
            // 
            // cboA4Cls
            // 
            this.cboA4Cls.BackColor = System.Drawing.Color.White;
            this.cboA4Cls.BorderStyle = Janus.Windows.UI.BorderStyle.Sunken;
            this.cboA4Cls.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboA4Cls.Font = new System.Drawing.Font("Arial", 9F);
            uiComboBoxItem7.FormatStyle.Alpha = 0;
            uiComboBoxItem7.IsSeparator = false;
            uiComboBoxItem7.Text = "A4";
            uiComboBoxItem7.Value = "A4";
            uiComboBoxItem8.FormatStyle.Alpha = 0;
            uiComboBoxItem8.IsSeparator = false;
            uiComboBoxItem8.Text = "A5";
            uiComboBoxItem8.Value = "A5";
            this.cboA4Cls.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem7,
            uiComboBoxItem8});
            this.cboA4Cls.Location = new System.Drawing.Point(95, 169);
            this.cboA4Cls.Name = "cboA4Cls";
            this.cboA4Cls.Size = new System.Drawing.Size(55, 21);
            this.cboA4Cls.TabIndex = 458;
            this.cboA4Cls.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
            // 
            // label13
            // 
            this.label13.Font = new System.Drawing.Font("Arial", 9F);
            this.label13.Location = new System.Drawing.Point(15, 169);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(74, 21);
            this.label13.TabIndex = 457;
            this.label13.Text = "Khổ giấy";
            this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // chkAutocollapse
            // 
            this.chkAutocollapse.AutoSize = true;
            this.chkAutocollapse.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkAutocollapse.Location = new System.Drawing.Point(95, 259);
            this.chkAutocollapse.Name = "chkAutocollapse";
            this.chkAutocollapse.Size = new System.Drawing.Size(270, 19);
            this.chkAutocollapse.TabIndex = 456;
            this.chkAutocollapse.Text = "Tự động thu gọn phần CLS sau khi chỉ định?";
            this.chkAutocollapse.UseVisualStyleBackColor = true;
            // 
            // cmdThamkhamConfig
            // 
            this.cmdThamkhamConfig.Font = new System.Drawing.Font("Arial", 9F);
            this.cmdThamkhamConfig.Location = new System.Drawing.Point(95, 284);
            this.cmdThamkhamConfig.Name = "cmdThamkhamConfig";
            this.cmdThamkhamConfig.Size = new System.Drawing.Size(119, 29);
            this.cmdThamkhamConfig.TabIndex = 453;
            this.cmdThamkhamConfig.Text = "Cấu hình thêm";
            // 
            // cboLaserPrinters
            // 
            this.cboLaserPrinters.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboLaserPrinters.FormattingEnabled = true;
            this.cboLaserPrinters.Location = new System.Drawing.Point(95, 32);
            this.cboLaserPrinters.Name = "cboLaserPrinters";
            this.cboLaserPrinters.Size = new System.Drawing.Size(273, 23);
            this.cboLaserPrinters.TabIndex = 445;
            // 
            // cboPrintPreviewDonthuoc
            // 
            this.cboPrintPreviewDonthuoc.BackColor = System.Drawing.Color.White;
            this.cboPrintPreviewDonthuoc.BorderStyle = Janus.Windows.UI.BorderStyle.Sunken;
            this.cboPrintPreviewDonthuoc.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboPrintPreviewDonthuoc.Font = new System.Drawing.Font("Arial", 9F);
            uiComboBoxItem9.FormatStyle.Alpha = 0;
            uiComboBoxItem9.IsSeparator = false;
            uiComboBoxItem9.Text = "Xem trước khi in";
            uiComboBoxItem9.Value = "0";
            uiComboBoxItem10.FormatStyle.Alpha = 0;
            uiComboBoxItem10.IsSeparator = false;
            uiComboBoxItem10.Text = "In ngay";
            uiComboBoxItem10.Value = "1";
            this.cboPrintPreviewDonthuoc.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem9,
            uiComboBoxItem10});
            this.cboPrintPreviewDonthuoc.Location = new System.Drawing.Point(152, 59);
            this.cboPrintPreviewDonthuoc.Name = "cboPrintPreviewDonthuoc";
            this.cboPrintPreviewDonthuoc.Size = new System.Drawing.Size(216, 21);
            this.cboPrintPreviewDonthuoc.TabIndex = 434;
            this.cboPrintPreviewDonthuoc.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
            // 
            // cboA4Donthuoc
            // 
            this.cboA4Donthuoc.BackColor = System.Drawing.Color.White;
            this.cboA4Donthuoc.BorderStyle = Janus.Windows.UI.BorderStyle.Sunken;
            this.cboA4Donthuoc.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.cboA4Donthuoc.Font = new System.Drawing.Font("Arial", 9F);
            uiComboBoxItem11.FormatStyle.Alpha = 0;
            uiComboBoxItem11.IsSeparator = false;
            uiComboBoxItem11.Text = "A4";
            uiComboBoxItem11.Value = "A4";
            uiComboBoxItem12.FormatStyle.Alpha = 0;
            uiComboBoxItem12.IsSeparator = false;
            uiComboBoxItem12.Text = "A5";
            uiComboBoxItem12.Value = "A5";
            this.cboA4Donthuoc.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
            uiComboBoxItem11,
            uiComboBoxItem12});
            this.cboA4Donthuoc.Location = new System.Drawing.Point(95, 59);
            this.cboA4Donthuoc.Name = "cboA4Donthuoc";
            this.cboA4Donthuoc.Size = new System.Drawing.Size(55, 21);
            this.cboA4Donthuoc.TabIndex = 433;
            this.cboA4Donthuoc.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
            // 
            // label26
            // 
            this.label26.AutoSize = true;
            this.label26.Location = new System.Drawing.Point(7, 36);
            this.label26.Name = "label26";
            this.label26.Size = new System.Drawing.Size(75, 15);
            this.label26.TabIndex = 446;
            this.label26.Text = "Chọn máy in";
            // 
            // label2
            // 
            this.label2.Font = new System.Drawing.Font("Arial", 9F);
            this.label2.Location = new System.Drawing.Point(15, 59);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(74, 21);
            this.label2.TabIndex = 432;
            this.label2.Text = "Khổ giấy";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // vbLine7
            // 
            this.vbLine7._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine7.BackColor = System.Drawing.Color.Transparent;
            this.vbLine7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine7.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine7.Location = new System.Drawing.Point(10, 197);
            this.vbLine7.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine7.Name = "vbLine7";
            this.vbLine7.Size = new System.Drawing.Size(762, 22);
            this.vbLine7.TabIndex = 466;
            this.vbLine7.TabStop = false;
            this.vbLine7.YourText = "Cấu hình In tóm tắt điều trị ngoại trú";
            // 
            // vbLine6
            // 
            this.vbLine6._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine6.BackColor = System.Drawing.Color.Transparent;
            this.vbLine6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine6.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine6.Location = new System.Drawing.Point(10, 140);
            this.vbLine6.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine6.Name = "vbLine6";
            this.vbLine6.Size = new System.Drawing.Size(762, 22);
            this.vbLine6.TabIndex = 462;
            this.vbLine6.TabStop = false;
            this.vbLine6.YourText = "Cấu hình cận lâm sàng";
            // 
            // vbLine5
            // 
            this.vbLine5._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine5.BackColor = System.Drawing.Color.Transparent;
            this.vbLine5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine5.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine5.Location = new System.Drawing.Point(10, 6);
            this.vbLine5.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine5.Name = "vbLine5";
            this.vbLine5.Size = new System.Drawing.Size(762, 22);
            this.vbLine5.TabIndex = 454;
            this.vbLine5.TabStop = false;
            this.vbLine5.YourText = "Cấu hình đơn thuốc";
            // 
            // pnlThongtinBNKCB
            // 
            this.pnlThongtinBNKCB.Controls.Add(this.uiTabThongtinBN);
            this.pnlThongtinBNKCB.Dock = System.Windows.Forms.DockStyle.Top;
            this.pnlThongtinBNKCB.Location = new System.Drawing.Point(0, 0);
            this.pnlThongtinBNKCB.Name = "pnlThongtinBNKCB";
            this.pnlThongtinBNKCB.Size = new System.Drawing.Size(587, 259);
            this.pnlThongtinBNKCB.TabIndex = 0;
            this.pnlThongtinBNKCB.TabStop = true;
            // 
            // uiTabThongtinBN
            // 
            this.uiTabThongtinBN.Dock = System.Windows.Forms.DockStyle.Fill;
            this.uiTabThongtinBN.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiTabThongtinBN.Location = new System.Drawing.Point(0, 0);
            this.uiTabThongtinBN.Name = "uiTabThongtinBN";
            this.uiTabThongtinBN.Size = new System.Drawing.Size(587, 259);
            this.uiTabThongtinBN.TabIndex = 469;
            this.uiTabThongtinBN.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
            this.uiTabPage6,
            this.uiTabPage8});
            this.uiTabThongtinBN.VisualStyle = Janus.Windows.UI.Tab.TabVisualStyle.VS2005;
            // 
            // uiTabPage6
            // 
            this.uiTabPage6.Controls.Add(this.pnlPatientInfor);
            this.uiTabPage6.Location = new System.Drawing.Point(1, 22);
            this.uiTabPage6.Name = "uiTabPage6";
            this.uiTabPage6.Size = new System.Drawing.Size(585, 236);
            this.uiTabPage6.TabStop = true;
            this.uiTabPage6.Text = "Thông tin Bệnh nhân";
            // 
            // pnlPatientInfor
            // 
            this.pnlPatientInfor.Controls.Add(this.txtGiuong_lapphieu);
            this.pnlPatientInfor.Controls.Add(this.label47);
            this.pnlPatientInfor.Controls.Add(this.label49);
            this.pnlPatientInfor.Controls.Add(this.label50);
            this.pnlPatientInfor.Controls.Add(this.txtKhoanoitru_lapphieu);
            this.pnlPatientInfor.Controls.Add(this.txtBuong_lapphieu);
            this.pnlPatientInfor.Controls.Add(this.txtIdPhieudieutri);
            this.pnlPatientInfor.Controls.Add(this.label45);
            this.pnlPatientInfor.Controls.Add(this.lblMsg);
            this.pnlPatientInfor.Controls.Add(this.txtGiuong);
            this.pnlPatientInfor.Controls.Add(this.label18);
            this.pnlPatientInfor.Controls.Add(this.dtpNgaylapphieu);
            this.pnlPatientInfor.Controls.Add(this.label8);
            this.pnlPatientInfor.Controls.Add(this.label25);
            this.pnlPatientInfor.Controls.Add(this.label7);
            this.pnlPatientInfor.Controls.Add(this.label5);
            this.pnlPatientInfor.Controls.Add(this.txtSoBHYT);
            this.pnlPatientInfor.Controls.Add(this.label48);
            this.pnlPatientInfor.Controls.Add(this.panel6);
            this.pnlPatientInfor.Controls.Add(this.txtKhoanoitru);
            this.pnlPatientInfor.Controls.Add(this.label30);
            this.pnlPatientInfor.Controls.Add(this.txtPatient_Name);
            this.pnlPatientInfor.Controls.Add(this.dtpNgayhethanBHYT);
            this.pnlPatientInfor.Controls.Add(this.label20);
            this.pnlPatientInfor.Controls.Add(this.label4);
            this.pnlPatientInfor.Controls.Add(this.txtDiachiBHYT);
            this.pnlPatientInfor.Controls.Add(this.label17);
            this.pnlPatientInfor.Controls.Add(this.txtPatient_ID);
            this.pnlPatientInfor.Controls.Add(this.label16);
            this.pnlPatientInfor.Controls.Add(this.txtTuoi);
            this.pnlPatientInfor.Controls.Add(this.cboBSDieutri);
            this.pnlPatientInfor.Controls.Add(this.txtBHTT);
            this.pnlPatientInfor.Controls.Add(this.txtObjectType_Name);
            this.pnlPatientInfor.Controls.Add(this.txtGioitinh);
            this.pnlPatientInfor.Controls.Add(this.txtBuong);
            this.pnlPatientInfor.Controls.Add(this.label19);
            this.pnlPatientInfor.Controls.Add(this.label15);
            this.pnlPatientInfor.Controls.Add(this.txtDiaChi);
            this.pnlPatientInfor.Controls.Add(this.dtInput_Date);
            this.pnlPatientInfor.Controls.Add(this.txtPatient_Code);
            this.pnlPatientInfor.Controls.Add(this.vbLine4);
            this.pnlPatientInfor.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlPatientInfor.Location = new System.Drawing.Point(0, 0);
            this.pnlPatientInfor.Name = "pnlPatientInfor";
            this.pnlPatientInfor.Size = new System.Drawing.Size(585, 236);
            this.pnlPatientInfor.TabIndex = 468;
            // 
            // txtGiuong_lapphieu
            // 
            this.txtGiuong_lapphieu.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtGiuong_lapphieu.Font = new System.Drawing.Font("Arial", 9F);
            this.txtGiuong_lapphieu.Location = new System.Drawing.Point(547, 181);
            this.txtGiuong_lapphieu.Name = "txtGiuong_lapphieu";
            this.txtGiuong_lapphieu.ReadOnly = true;
            this.txtGiuong_lapphieu.Size = new System.Drawing.Size(35, 21);
            this.txtGiuong_lapphieu.TabIndex = 468;
            this.txtGiuong_lapphieu.TabStop = false;
            // 
            // label47
            // 
            this.label47.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label47.Location = new System.Drawing.Point(482, 182);
            this.label47.Name = "label47";
            this.label47.Size = new System.Drawing.Size(59, 21);
            this.label47.TabIndex = 467;
            this.label47.Text = "Giường";
            this.label47.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label49
            // 
            this.label49.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label49.Location = new System.Drawing.Point(335, 183);
            this.label49.Name = "label49";
            this.label49.Size = new System.Drawing.Size(65, 21);
            this.label49.TabIndex = 466;
            this.label49.Text = "Buồng";
            this.label49.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label50
            // 
            this.label50.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label50.Location = new System.Drawing.Point(4, 181);
            this.label50.Name = "label50";
            this.label50.Size = new System.Drawing.Size(99, 22);
            this.label50.TabIndex = 465;
            this.label50.Text = "Lập phiếu cho";
            this.label50.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtKhoanoitru_lapphieu
            // 
            this.txtKhoanoitru_lapphieu.Font = new System.Drawing.Font("Arial", 9F);
            this.txtKhoanoitru_lapphieu.Location = new System.Drawing.Point(108, 181);
            this.txtKhoanoitru_lapphieu.Name = "txtKhoanoitru_lapphieu";
            this.txtKhoanoitru_lapphieu.ReadOnly = true;
            this.txtKhoanoitru_lapphieu.Size = new System.Drawing.Size(214, 21);
            this.txtKhoanoitru_lapphieu.TabIndex = 463;
            this.txtKhoanoitru_lapphieu.TabStop = false;
            // 
            // txtBuong_lapphieu
            // 
            this.txtBuong_lapphieu.Font = new System.Drawing.Font("Arial", 9F);
            this.txtBuong_lapphieu.Location = new System.Drawing.Point(406, 181);
            this.txtBuong_lapphieu.Name = "txtBuong_lapphieu";
            this.txtBuong_lapphieu.ReadOnly = true;
            this.txtBuong_lapphieu.Size = new System.Drawing.Size(71, 21);
            this.txtBuong_lapphieu.TabIndex = 464;
            this.txtBuong_lapphieu.TabStop = false;
            // 
            // txtIdPhieudieutri
            // 
            this.txtIdPhieudieutri.BackColor = System.Drawing.SystemColors.Control;
            this.txtIdPhieudieutri.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtIdPhieudieutri.Location = new System.Drawing.Point(258, 158);
            this.txtIdPhieudieutri.Name = "txtIdPhieudieutri";
            this.txtIdPhieudieutri.Size = new System.Drawing.Size(66, 18);
            this.txtIdPhieudieutri.TabIndex = 0;
            this.txtIdPhieudieutri.Text = "0";
            this.txtIdPhieudieutri.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // label45
            // 
            this.label45.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label45.Location = new System.Drawing.Point(231, 156);
            this.label45.Name = "label45";
            this.label45.Size = new System.Drawing.Size(27, 21);
            this.label45.TabIndex = 462;
            this.label45.Text = "ID:";
            this.label45.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblMsg
            // 
            this.lblMsg.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.lblMsg.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblMsg.Location = new System.Drawing.Point(0, 213);
            this.lblMsg.Name = "lblMsg";
            this.lblMsg.Size = new System.Drawing.Size(585, 23);
            this.lblMsg.TabIndex = 461;
            this.lblMsg.Text = "Msg";
            this.lblMsg.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtGiuong
            // 
            this.txtGiuong.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtGiuong.Font = new System.Drawing.Font("Arial", 9F);
            this.txtGiuong.Location = new System.Drawing.Point(547, 106);
            this.txtGiuong.Name = "txtGiuong";
            this.txtGiuong.ReadOnly = true;
            this.txtGiuong.Size = new System.Drawing.Size(35, 21);
            this.txtGiuong.TabIndex = 460;
            this.txtGiuong.TabStop = false;
            // 
            // label8
            // 
            this.label8.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label8.Location = new System.Drawing.Point(482, 107);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(59, 21);
            this.label8.TabIndex = 459;
            this.label8.Text = "Giường";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label25
            // 
            this.label25.Font = new System.Drawing.Font("Arial", 9F);
            this.label25.ForeColor = System.Drawing.Color.Black;
            this.label25.Location = new System.Drawing.Point(3, 155);
            this.label25.Name = "label25";
            this.label25.Size = new System.Drawing.Size(99, 21);
            this.label25.TabIndex = 410;
            this.label25.Text = "Ngày điều trị";
            this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label7
            // 
            this.label7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label7.Location = new System.Drawing.Point(335, 108);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(65, 21);
            this.label7.TabIndex = 458;
            this.label7.Text = "Buồng";
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label5
            // 
            this.label5.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label5.Location = new System.Drawing.Point(4, 107);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(99, 21);
            this.label5.TabIndex = 431;
            this.label5.Text = "Đang nằm khoa:";
            this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtSoBHYT
            // 
            this.txtSoBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSoBHYT.ForeColor = System.Drawing.Color.Navy;
            this.txtSoBHYT.Location = new System.Drawing.Point(108, 81);
            this.txtSoBHYT.Name = "txtSoBHYT";
            this.txtSoBHYT.ReadOnly = true;
            this.txtSoBHYT.Size = new System.Drawing.Size(125, 21);
            this.txtSoBHYT.TabIndex = 12;
            this.txtSoBHYT.TabStop = false;
            this.txtSoBHYT.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // label48
            // 
            this.label48.Font = new System.Drawing.Font("Arial", 9F);
            this.label48.ForeColor = System.Drawing.Color.Black;
            this.label48.Location = new System.Drawing.Point(328, 157);
            this.label48.Name = "label48";
            this.label48.Size = new System.Drawing.Size(72, 21);
            this.label48.TabIndex = 411;
            this.label48.Text = "Người lập";
            this.label48.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // panel6
            // 
            this.panel6.Controls.Add(this.txtNhommau);
            this.panel6.Controls.Add(this.txtNgheNghiep);
            this.panel6.Controls.Add(this.txtExam_ID);
            this.panel6.Controls.Add(this.txtHanTheBHYT);
            this.panel6.Controls.Add(this.txtDepartment_ID);
            this.panel6.Controls.Add(this.label21);
            this.panel6.Controls.Add(this.label31);
            this.panel6.Controls.Add(this.label32);
            this.panel6.Controls.Add(this.txtChieucao);
            this.panel6.Controls.Add(this.txtCannang);
            this.panel6.Location = new System.Drawing.Point(745, 9);
            this.panel6.Name = "panel6";
            this.panel6.Size = new System.Drawing.Size(10, 13);
            this.panel6.TabIndex = 79;
            this.panel6.Visible = false;
            // 
            // txtNhommau
            // 
            this.txtNhommau._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtNhommau._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNhommau.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtNhommau.AutoCompleteList")));
            this.txtNhommau.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtNhommau.CaseSensitive = false;
            this.txtNhommau.CompareNoID = true;
            this.txtNhommau.DefaultCode = "-1";
            this.txtNhommau.DefaultID = "-1";
            this.txtNhommau.Drug_ID = null;
            this.txtNhommau.ExtraWidth = 0;
            this.txtNhommau.FillValueAfterSelect = false;
            this.txtNhommau.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtNhommau.LOAI_DANHMUC = "NHOMMAU";
            this.txtNhommau.Location = new System.Drawing.Point(271, 6);
            this.txtNhommau.MaxHeight = -1;
            this.txtNhommau.MinTypedCharacters = 2;
            this.txtNhommau.MyCode = "-1";
            this.txtNhommau.MyID = "-1";
            this.txtNhommau.Name = "txtNhommau";
            this.txtNhommau.RaiseEvent = false;
            this.txtNhommau.RaiseEventEnter = false;
            this.txtNhommau.RaiseEventEnterWhenEmpty = false;
            this.txtNhommau.SelectedIndex = -1;
            this.txtNhommau.Size = new System.Drawing.Size(10, 21);
            this.txtNhommau.splitChar = '@';
            this.txtNhommau.splitCharIDAndCode = '#';
            this.txtNhommau.TabIndex = 9;
            this.txtNhommau.TakeCode = false;
            this.txtNhommau.txtMyCode = null;
            this.txtNhommau.txtMyCode_Edit = null;
            this.txtNhommau.txtMyID = null;
            this.txtNhommau.txtMyID_Edit = null;
            this.txtNhommau.txtMyName = null;
            this.txtNhommau.txtMyName_Edit = null;
            this.txtNhommau.txtNext = null;
            // 
            // txtNgheNghiep
            // 
            this.txtNgheNghiep.Font = new System.Drawing.Font("Arial", 9F);
            this.txtNgheNghiep.Location = new System.Drawing.Point(16, 26);
            this.txtNgheNghiep.Name = "txtNgheNghiep";
            this.txtNgheNghiep.Size = new System.Drawing.Size(11, 21);
            this.txtNgheNghiep.TabIndex = 49;
            this.txtNgheNghiep.TabStop = false;
            this.txtNgheNghiep.Visible = false;
            // 
            // txtExam_ID
            // 
            this.txtExam_ID.BackColor = System.Drawing.Color.White;
            this.txtExam_ID.Font = new System.Drawing.Font("Arial", 9F);
            this.txtExam_ID.Location = new System.Drawing.Point(45, 29);
            this.txtExam_ID.Name = "txtExam_ID";
            this.txtExam_ID.Size = new System.Drawing.Size(10, 21);
            this.txtExam_ID.TabIndex = 38;
            this.txtExam_ID.TabStop = false;
            this.txtExam_ID.Visible = false;
            // 
            // txtHanTheBHYT
            // 
            this.txtHanTheBHYT.Font = new System.Drawing.Font("Arial", 9F);
            this.txtHanTheBHYT.Location = new System.Drawing.Point(33, 30);
            this.txtHanTheBHYT.Name = "txtHanTheBHYT";
            this.txtHanTheBHYT.Size = new System.Drawing.Size(11, 21);
            this.txtHanTheBHYT.TabIndex = 48;
            this.txtHanTheBHYT.TabStop = false;
            this.txtHanTheBHYT.Visible = false;
            // 
            // txtDepartment_ID
            // 
            this.txtDepartment_ID.BackColor = System.Drawing.Color.White;
            this.txtDepartment_ID.Font = new System.Drawing.Font("Arial", 9F);
            this.txtDepartment_ID.Location = new System.Drawing.Point(17, 71);
            this.txtDepartment_ID.Name = "txtDepartment_ID";
            this.txtDepartment_ID.ReadOnly = true;
            this.txtDepartment_ID.Size = new System.Drawing.Size(10, 21);
            this.txtDepartment_ID.TabIndex = 20;
            this.txtDepartment_ID.TabStop = false;
            this.txtDepartment_ID.Visible = false;
            // 
            // label21
            // 
            this.label21.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label21.Location = new System.Drawing.Point(13, 3);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(61, 21);
            this.label21.TabIndex = 444;
            this.label21.Text = "Cân nặng";
            this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label31
            // 
            this.label31.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label31.Location = new System.Drawing.Point(182, 5);
            this.label31.Name = "label31";
            this.label31.Size = new System.Drawing.Size(83, 21);
            this.label31.TabIndex = 441;
            this.label31.Text = "Nhóm máu:";
            this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label32
            // 
            this.label32.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label32.Location = new System.Drawing.Point(101, 3);
            this.label32.Name = "label32";
            this.label32.Size = new System.Drawing.Size(63, 21);
            this.label32.TabIndex = 446;
            this.label32.Text = "Chiều cao";
            this.label32.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtChieucao
            // 
            this.txtChieucao.Location = new System.Drawing.Point(166, 4);
            this.txtChieucao.MaxLength = 3;
            this.txtChieucao.Name = "txtChieucao";
            this.txtChieucao.Numeric = true;
            this.txtChieucao.Size = new System.Drawing.Size(10, 20);
            this.txtChieucao.TabIndex = 8;
            this.txtChieucao.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // txtCannang
            // 
            this.txtCannang.Location = new System.Drawing.Point(85, 4);
            this.txtCannang.MaxLength = 3;
            this.txtCannang.Name = "txtCannang";
            this.txtCannang.Numeric = true;
            this.txtCannang.Size = new System.Drawing.Size(10, 20);
            this.txtCannang.TabIndex = 7;
            this.txtCannang.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // txtKhoanoitru
            // 
            this.txtKhoanoitru.Font = new System.Drawing.Font("Arial", 9F);
            this.txtKhoanoitru.Location = new System.Drawing.Point(108, 106);
            this.txtKhoanoitru.Name = "txtKhoanoitru";
            this.txtKhoanoitru.ReadOnly = true;
            this.txtKhoanoitru.Size = new System.Drawing.Size(214, 21);
            this.txtKhoanoitru.TabIndex = 62;
            this.txtKhoanoitru.TabStop = false;
            // 
            // label30
            // 
            this.label30.Font = new System.Drawing.Font("Arial", 9F);
            this.label30.Location = new System.Drawing.Point(392, 8);
            this.label30.Name = "label30";
            this.label30.Size = new System.Drawing.Size(69, 21);
            this.label30.TabIndex = 37;
            this.label30.Text = "Ngày nhập";
            this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtPatient_Name
            // 
            this.txtPatient_Name.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPatient_Name.ForeColor = System.Drawing.Color.Black;
            this.txtPatient_Name.Location = new System.Drawing.Point(108, 33);
            this.txtPatient_Name.Name = "txtPatient_Name";
            this.txtPatient_Name.ReadOnly = true;
            this.txtPatient_Name.Size = new System.Drawing.Size(178, 21);
            this.txtPatient_Name.TabIndex = 12;
            this.txtPatient_Name.TabStop = false;
            // 
            // dtpNgayhethanBHYT
            // 
            this.dtpNgayhethanBHYT.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.dtpNgayhethanBHYT.CustomFormat = "dd/MM/yyyy";
            this.dtpNgayhethanBHYT.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtpNgayhethanBHYT.DropDownCalendar.Name = "";
            this.dtpNgayhethanBHYT.Enabled = false;
            this.dtpNgayhethanBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dtpNgayhethanBHYT.ForeColor = System.Drawing.Color.Navy;
            this.dtpNgayhethanBHYT.Location = new System.Drawing.Point(467, 57);
            this.dtpNgayhethanBHYT.Name = "dtpNgayhethanBHYT";
            this.dtpNgayhethanBHYT.ReadOnly = true;
            this.dtpNgayhethanBHYT.ShowUpDown = true;
            this.dtpNgayhethanBHYT.Size = new System.Drawing.Size(113, 21);
            this.dtpNgayhethanBHYT.TabIndex = 457;
            this.dtpNgayhethanBHYT.TabStop = false;
            this.dtpNgayhethanBHYT.Value = new System.DateTime(2013, 8, 10, 0, 0, 0, 0);
            // 
            // label20
            // 
            this.label20.Font = new System.Drawing.Font("Arial", 9F);
            this.label20.Location = new System.Drawing.Point(3, 33);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(99, 21);
            this.label20.TabIndex = 5;
            this.label20.Text = "Tên Bệnh nhân:";
            this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label4
            // 
            this.label4.Font = new System.Drawing.Font("Arial", 9F);
            this.label4.ForeColor = System.Drawing.Color.Navy;
            this.label4.Location = new System.Drawing.Point(3, 81);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(99, 21);
            this.label4.TabIndex = 17;
            this.label4.Text = "Mã thẻ BHYT:";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtDiachiBHYT
            // 
            this.txtDiachiBHYT.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtDiachiBHYT.Font = new System.Drawing.Font("Arial", 9F);
            this.txtDiachiBHYT.ForeColor = System.Drawing.Color.Navy;
            this.txtDiachiBHYT.Location = new System.Drawing.Point(283, 81);
            this.txtDiachiBHYT.Name = "txtDiachiBHYT";
            this.txtDiachiBHYT.ReadOnly = true;
            this.txtDiachiBHYT.Size = new System.Drawing.Size(297, 21);
            this.txtDiachiBHYT.TabIndex = 12;
            this.txtDiachiBHYT.TabStop = false;
            // 
            // label17
            // 
            this.label17.Font = new System.Drawing.Font("Arial", 9F);
            this.label17.ForeColor = System.Drawing.Color.Navy;
            this.label17.Location = new System.Drawing.Point(381, 58);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(80, 21);
            this.label17.TabIndex = 456;
            this.label17.Text = "Hạn BHYT:";
            this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtPatient_ID
            // 
            this.txtPatient_ID.BackColor = System.Drawing.Color.White;
            this.txtPatient_ID.Font = new System.Drawing.Font("Arial", 9F);
            this.txtPatient_ID.Location = new System.Drawing.Point(283, 8);
            this.txtPatient_ID.Name = "txtPatient_ID";
            this.txtPatient_ID.Size = new System.Drawing.Size(97, 21);
            this.txtPatient_ID.TabIndex = 11;
            this.txtPatient_ID.TabStop = false;
            // 
            // label16
            // 
            this.label16.Font = new System.Drawing.Font("Arial", 9F);
            this.label16.Location = new System.Drawing.Point(386, 33);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(75, 21);
            this.label16.TabIndex = 13;
            this.label16.Text = "Đối tượng :";
            this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtTuoi
            // 
            this.txtTuoi.BackColor = System.Drawing.Color.White;
            this.txtTuoi.Font = new System.Drawing.Font("Arial", 9F);
            this.txtTuoi.Location = new System.Drawing.Point(323, 33);
            this.txtTuoi.Name = "txtTuoi";
            this.txtTuoi.ReadOnly = true;
            this.txtTuoi.Size = new System.Drawing.Size(57, 21);
            this.txtTuoi.TabIndex = 455;
            this.txtTuoi.TabStop = false;
            // 
            // cboBSDieutri
            // 
            this.cboBSDieutri.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.cboBSDieutri.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboBSDieutri.FormattingEnabled = true;
            this.cboBSDieutri.Location = new System.Drawing.Point(406, 156);
            this.cboBSDieutri.Name = "cboBSDieutri";
            this.cboBSDieutri.Size = new System.Drawing.Size(176, 22);
            this.cboBSDieutri.TabIndex = 1;
            // 
            // txtBHTT
            // 
            this.txtBHTT.BackColor = System.Drawing.Color.White;
            this.txtBHTT.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtBHTT.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.txtBHTT.Location = new System.Drawing.Point(234, 80);
            this.txtBHTT.Name = "txtBHTT";
            this.txtBHTT.ReadOnly = true;
            this.txtBHTT.Size = new System.Drawing.Size(49, 22);
            this.txtBHTT.TabIndex = 12;
            this.txtBHTT.TabStop = false;
            // 
            // txtObjectType_Name
            // 
            this.txtObjectType_Name.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtObjectType_Name.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtObjectType_Name.Location = new System.Drawing.Point(467, 33);
            this.txtObjectType_Name.Name = "txtObjectType_Name";
            this.txtObjectType_Name.ReadOnly = true;
            this.txtObjectType_Name.Size = new System.Drawing.Size(113, 21);
            this.txtObjectType_Name.TabIndex = 12;
            this.txtObjectType_Name.TabStop = false;
            this.txtObjectType_Name.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            // 
            // txtGioitinh
            // 
            this.txtGioitinh.BackColor = System.Drawing.Color.White;
            this.txtGioitinh.Font = new System.Drawing.Font("Arial", 9F);
            this.txtGioitinh.Location = new System.Drawing.Point(287, 33);
            this.txtGioitinh.Name = "txtGioitinh";
            this.txtGioitinh.ReadOnly = true;
            this.txtGioitinh.Size = new System.Drawing.Size(35, 21);
            this.txtGioitinh.TabIndex = 12;
            this.txtGioitinh.TabStop = false;
            // 
            // txtBuong
            // 
            this.txtBuong.Font = new System.Drawing.Font("Arial", 9F);
            this.txtBuong.Location = new System.Drawing.Point(406, 106);
            this.txtBuong.Name = "txtBuong";
            this.txtBuong.ReadOnly = true;
            this.txtBuong.Size = new System.Drawing.Size(71, 21);
            this.txtBuong.TabIndex = 62;
            this.txtBuong.TabStop = false;
            // 
            // label19
            // 
            this.label19.Font = new System.Drawing.Font("Arial", 9F);
            this.label19.Location = new System.Drawing.Point(235, 8);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(43, 21);
            this.label19.TabIndex = 7;
            this.label19.Text = "Mã BN";
            this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label15
            // 
            this.label15.Font = new System.Drawing.Font("Arial", 9F);
            this.label15.Location = new System.Drawing.Point(3, 57);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(99, 21);
            this.label15.TabIndex = 45;
            this.label15.Text = "Địa chỉ BN:";
            this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtDiaChi
            // 
            this.txtDiaChi.Font = new System.Drawing.Font("Arial", 9F);
            this.txtDiaChi.Location = new System.Drawing.Point(108, 57);
            this.txtDiaChi.Name = "txtDiaChi";
            this.txtDiaChi.ReadOnly = true;
            this.txtDiaChi.Size = new System.Drawing.Size(272, 21);
            this.txtDiaChi.TabIndex = 12;
            this.txtDiaChi.TabStop = false;
            // 
            // dtInput_Date
            // 
            this.dtInput_Date.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.dtInput_Date.CustomFormat = "dd/MM/yyyy";
            this.dtInput_Date.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
            // 
            // 
            // 
            this.dtInput_Date.DropDownCalendar.Name = "";
            this.dtInput_Date.Enabled = false;
            this.dtInput_Date.Font = new System.Drawing.Font("Arial", 9F);
            this.dtInput_Date.Location = new System.Drawing.Point(467, 9);
            this.dtInput_Date.Name = "dtInput_Date";
            this.dtInput_Date.ReadOnly = true;
            this.dtInput_Date.ShowUpDown = true;
            this.dtInput_Date.Size = new System.Drawing.Size(113, 21);
            this.dtInput_Date.TabIndex = 12;
            this.dtInput_Date.TabStop = false;
            this.dtInput_Date.Value = new System.DateTime(2013, 8, 10, 0, 0, 0, 0);
            // 
            // vbLine4
            // 
            this.vbLine4._FontColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.vbLine4.BackColor = System.Drawing.Color.Transparent;
            this.vbLine4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine4.FontText = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.vbLine4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.vbLine4.Location = new System.Drawing.Point(9, 130);
            this.vbLine4.Margin = new System.Windows.Forms.Padding(4);
            this.vbLine4.Name = "vbLine4";
            this.vbLine4.Size = new System.Drawing.Size(573, 22);
            this.vbLine4.TabIndex = 450;
            this.vbLine4.TabStop = false;
            this.vbLine4.YourText = "Thông tin phiếu điều trị";
            // 
            // uiTabPage8
            // 
            this.uiTabPage8.Controls.Add(this.panel11);
            this.uiTabPage8.Location = new System.Drawing.Point(1, 22);
            this.uiTabPage8.Name = "uiTabPage8";
            this.uiTabPage8.Size = new System.Drawing.Size(585, 214);
            this.uiTabPage8.TabStop = true;
            this.uiTabPage8.Text = "Thông tin Tạm ứng và Chi phí";
            // 
            // panel11
            // 
            this.panel11.Controls.Add(this.grdTamung);
            this.panel11.Controls.Add(this.panel12);
            this.panel11.Controls.Add(this.pnlThongbao);
            this.panel11.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel11.Location = new System.Drawing.Point(0, 0);
            this.panel11.Name = "panel11";
            this.panel11.Size = new System.Drawing.Size(585, 214);
            this.panel11.TabIndex = 0;
            // 
            // grdTamung
            // 
            this.grdTamung.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.grdTamung.BackColor = System.Drawing.Color.Silver;
            this.grdTamung.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><FilterRowInfoText>Lọc" +
    " thông tin tiền tạm ứng</FilterRowInfoText></LocalizableData>";
            grdTamung_DesignTimeLayout.LayoutString = resources.GetString("grdTamung_DesignTimeLayout.LayoutString");
            this.grdTamung.DesignTimeLayout = grdTamung_DesignTimeLayout;
            this.grdTamung.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdTamung.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.grdTamung.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
            this.grdTamung.FocusCellDisplayMode = Janus.Windows.GridEX.FocusCellDisplayMode.UseSelectedFormatStyle;
            this.grdTamung.FocusCellFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            this.grdTamung.FocusCellFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
            this.grdTamung.FocusCellFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdTamung.Font = new System.Drawing.Font("Arial", 8.5F);
            this.grdTamung.GroupByBoxVisible = false;
            this.grdTamung.GroupTotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
            this.grdTamung.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.grdTamung.Location = new System.Drawing.Point(298, 0);
            this.grdTamung.Name = "grdTamung";
            this.grdTamung.RecordNavigator = true;
            this.grdTamung.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdTamung.Size = new System.Drawing.Size(287, 190);
            this.grdTamung.TabIndex = 38;
            this.grdTamung.TabStop = false;
            this.grdTamung.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.grdTamung.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
            this.grdTamung.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
            // 
            // panel12
            // 
            this.panel12.Controls.Add(this.lblTongChiphi);
            this.panel12.Controls.Add(this.lblBuonggiuong);
            this.panel12.Controls.Add(this.lblVTTH);
            this.panel12.Controls.Add(this.lblDichvu);
            this.panel12.Controls.Add(this.lblThuoc);
            this.panel12.Controls.Add(this.lblCLS);
            this.panel12.Controls.Add(this.label42);
            this.panel12.Controls.Add(this.label41);
            this.panel12.Controls.Add(this.label34);
            this.panel12.Controls.Add(this.label33);
            this.panel12.Controls.Add(this.label29);
            this.panel12.Controls.Add(this.label28);
            this.panel12.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel12.Location = new System.Drawing.Point(0, 0);
            this.panel12.Name = "panel12";
            this.panel12.Size = new System.Drawing.Size(298, 190);
            this.panel12.TabIndex = 2;
            // 
            // lblTongChiphi
            // 
            this.lblTongChiphi.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblTongChiphi.ForeColor = System.Drawing.Color.Navy;
            this.lblTongChiphi.Location = new System.Drawing.Point(168, 124);
            this.lblTongChiphi.Name = "lblTongChiphi";
            this.lblTongChiphi.Size = new System.Drawing.Size(124, 23);
            this.lblTongChiphi.TabIndex = 92;
            this.lblTongChiphi.Text = "0";
            this.lblTongChiphi.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // lblBuonggiuong
            // 
            this.lblBuonggiuong.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblBuonggiuong.ForeColor = System.Drawing.Color.Navy;
            this.lblBuonggiuong.Location = new System.Drawing.Point(168, 101);
            this.lblBuonggiuong.Name = "lblBuonggiuong";
            this.lblBuonggiuong.Size = new System.Drawing.Size(124, 23);
            this.lblBuonggiuong.TabIndex = 91;
            this.lblBuonggiuong.Text = "0";
            this.lblBuonggiuong.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // lblVTTH
            // 
            this.lblVTTH.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblVTTH.ForeColor = System.Drawing.Color.Navy;
            this.lblVTTH.Location = new System.Drawing.Point(168, 78);
            this.lblVTTH.Name = "lblVTTH";
            this.lblVTTH.Size = new System.Drawing.Size(124, 23);
            this.lblVTTH.TabIndex = 90;
            this.lblVTTH.Text = "0";
            this.lblVTTH.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // lblDichvu
            // 
            this.lblDichvu.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblDichvu.ForeColor = System.Drawing.Color.Navy;
            this.lblDichvu.Location = new System.Drawing.Point(168, 55);
            this.lblDichvu.Name = "lblDichvu";
            this.lblDichvu.Size = new System.Drawing.Size(124, 23);
            this.lblDichvu.TabIndex = 89;
            this.lblDichvu.Text = "0";
            this.lblDichvu.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // lblThuoc
            // 
            this.lblThuoc.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblThuoc.ForeColor = System.Drawing.Color.Navy;
            this.lblThuoc.Location = new System.Drawing.Point(168, 32);
            this.lblThuoc.Name = "lblThuoc";
            this.lblThuoc.Size = new System.Drawing.Size(124, 23);
            this.lblThuoc.TabIndex = 88;
            this.lblThuoc.Text = "0";
            this.lblThuoc.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // lblCLS
            // 
            this.lblCLS.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblCLS.ForeColor = System.Drawing.Color.Navy;
            this.lblCLS.Location = new System.Drawing.Point(168, 9);
            this.lblCLS.Name = "lblCLS";
            this.lblCLS.Size = new System.Drawing.Size(124, 23);
            this.lblCLS.TabIndex = 87;
            this.lblCLS.Text = "0";
            this.lblCLS.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // label42
            // 
            this.label42.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label42.ForeColor = System.Drawing.Color.Navy;
            this.label42.Location = new System.Drawing.Point(6, 101);
            this.label42.Name = "label42";
            this.label42.Size = new System.Drawing.Size(158, 23);
            this.label42.TabIndex = 86;
            this.label42.Text = "Chi phí buồng- giường:";
            this.label42.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label41
            // 
            this.label41.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label41.ForeColor = System.Drawing.Color.Navy;
            this.label41.Location = new System.Drawing.Point(6, 55);
            this.label41.Name = "label41";
            this.label41.Size = new System.Drawing.Size(158, 23);
            this.label41.TabIndex = 85;
            this.label41.Text = "Gói dịch vụ(mổ,...): ";
            this.label41.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label34
            // 
            this.label34.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label34.ForeColor = System.Drawing.Color.Navy;
            this.label34.Location = new System.Drawing.Point(6, 124);
            this.label34.Name = "label34";
            this.label34.Size = new System.Drawing.Size(158, 23);
            this.label34.TabIndex = 84;
            this.label34.Text = "Tổng chi phí:";
            this.label34.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label33
            // 
            this.label33.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label33.ForeColor = System.Drawing.Color.Navy;
            this.label33.Location = new System.Drawing.Point(6, 78);
            this.label33.Name = "label33";
            this.label33.Size = new System.Drawing.Size(158, 23);
            this.label33.TabIndex = 83;
            this.label33.Text = "Chi phí VTTH:";
            this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label29
            // 
            this.label29.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label29.ForeColor = System.Drawing.Color.Navy;
            this.label29.Location = new System.Drawing.Point(6, 32);
            this.label29.Name = "label29";
            this.label29.Size = new System.Drawing.Size(158, 23);
            this.label29.TabIndex = 82;
            this.label29.Text = "Chi phí thuốc: ";
            this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label28
            // 
            this.label28.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label28.ForeColor = System.Drawing.Color.Navy;
            this.label28.Location = new System.Drawing.Point(6, 9);
            this.label28.Name = "label28";
            this.label28.Size = new System.Drawing.Size(158, 23);
            this.label28.TabIndex = 81;
            this.label28.Text = "Chi phí CLS: ";
            this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // pnlThongbao
            // 
            this.pnlThongbao.Controls.Add(this.lblChenhlech);
            this.pnlThongbao.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.pnlThongbao.Location = new System.Drawing.Point(0, 190);
            this.pnlThongbao.Name = "pnlThongbao";
            this.pnlThongbao.Size = new System.Drawing.Size(585, 24);
            this.pnlThongbao.TabIndex = 1;
            // 
            // lblChenhlech
            // 
            this.lblChenhlech.Dock = System.Windows.Forms.DockStyle.Left;
            this.lblChenhlech.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblChenhlech.ForeColor = System.Drawing.Color.Navy;
            this.lblChenhlech.Location = new System.Drawing.Point(0, 0);
            this.lblChenhlech.Name = "lblChenhlech";
            this.lblChenhlech.Size = new System.Drawing.Size(577, 24);
            this.lblChenhlech.TabIndex = 85;
            this.lblChenhlech.Text = "Tổng tạm ứng - Tổng chi phí =";
            this.lblChenhlech.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // ucError1
            // 
            this.ucError1.Color1 = System.Drawing.Color.Yellow;
            this.ucError1.Color2 = System.Drawing.Color.Red;
            this.ucError1.EllapsedTime = 1000;
            this.ucError1.ErrText = "";
            this.ucError1.Location = new System.Drawing.Point(430, 236);
            this.ucError1.Name = "ucError1";
            this.ucError1.NumberofBrlink = 5;
            this.ucError1.Size = new System.Drawing.Size(20, 19);
            this.ucError1.TabIndex = 462;
            this.ucError1.Visible = false;
            // 
            // frm_QuanlyPhieudieutri
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
            this.ClientSize = new System.Drawing.Size(1014, 736);
            this.Controls.Add(this.ucError1);
            this.Controls.Add(this.panel4);
            this.Controls.Add(this.panel3);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.KeyPreview = true;
            this.Name = "frm_QuanlyPhieudieutri";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Lập phiếu điều trị nội trú";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            ((System.ComponentModel.ISupportInitialize)(this.grpSearch)).EndInit();
            this.grpSearch.ResumeLayout(false);
            this.grpSearch.PerformLayout();
            this.ctxDelCLS.ResumeLayout(false);
            this.ctxDelDrug.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdAssignDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdGoidichvu)).EndInit();
            this.panel3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
            this.uiGroupBox2.ResumeLayout(false);
            this.panel5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiTabPhieudieutri)).EndInit();
            this.uiTabPhieudieutri.ResumeLayout(false);
            this.tabPagePhieuDieuTri.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdPhieudieutri)).EndInit();
            this.tabPageBuonggiuong.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdBuongGiuong)).EndInit();
            this.panel8.ResumeLayout(false);
            this.panel8.PerformLayout();
            this.panel7.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdPatientList)).EndInit();
            this.panel4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.tabDiagInfo)).EndInit();
            this.tabDiagInfo.ResumeLayout(false);
            this.TabPageChanDoan.ResumeLayout(false);
            this.panel9.ResumeLayout(false);
            this.panel9.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grd_ICD)).EndInit();
            this.panel10.ResumeLayout(false);
            this.pnlother.ResumeLayout(false);
            this.pnlother.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdChandoan)).EndInit();
            this.tabPageChiDinhCLS.ResumeLayout(false);
            this.pnlChidinh.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiTabKqCls)).EndInit();
            this.uiTabKqCls.ResumeLayout(false);
            this.tabPhieuDieuTri.ResumeLayout(false);
            this.pnlXN.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdKetqua)).EndInit();
            this.pnlXQ.ResumeLayout(false);
            this.pnlXQ.PerformLayout();
            this.pnlCLS.ResumeLayout(false);
            this.pnlCLS.PerformLayout();
            this.tabPageChidinhThuoc.ResumeLayout(false);
            this.pnltabkedon.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdPresDetail)).EndInit();
            this.pnlDonthuoc.ResumeLayout(false);
            this.TabPageVTTH.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdVTTH)).EndInit();
            this.pnlVTTH.ResumeLayout(false);
            this.tabPagegoimo.ResumeLayout(false);
            this.pnlKetluan.ResumeLayout(false);
            this.pnlGoiDV.ResumeLayout(false);
            this.pnlGoiDV.PerformLayout();
            this.pnlVTTHTronggoi.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdVTTH_tronggoi)).EndInit();
            this.pnlVTTHTronggoi_act.ResumeLayout(false);
            this.uiTabPage1.ResumeLayout(false);
            this.panel15.ResumeLayout(false);
            this.panel15.PerformLayout();
            this.panel14.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdChedoDinhduong)).EndInit();
            this.tabPageCauhinh.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            this.pnlThongtinBNKCB.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiTabThongtinBN)).EndInit();
            this.uiTabThongtinBN.ResumeLayout(false);
            this.uiTabPage6.ResumeLayout(false);
            this.pnlPatientInfor.ResumeLayout(false);
            this.pnlPatientInfor.PerformLayout();
            this.panel6.ResumeLayout(false);
            this.panel6.PerformLayout();
            this.uiTabPage8.ResumeLayout(false);
            this.panel11.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdTamung)).EndInit();
            this.panel12.ResumeLayout(false);
            this.pnlThongbao.ResumeLayout(false);
            this.ResumeLayout(false);

        }