Example #1
0
 private void FormatoGride(Janus.Windows.GridEX.GridEX grid)
 {
     if (grid.Name == gridDatat.Name)
     {
         if (grid.RowCount <= 27)
         {
             grid.RootTable.Columns["VLERA"].Width = 138;
         }
         else
         {
             grid.RootTable.Columns["VLERA"].Width = 121;
         }
     }
     else
     {
         if (grid.RowCount <= 27)
         {
             grid.RootTable.Columns["VLERA_KOMISION"].Width = 99;
         }
         else
         {
             grid.RootTable.Columns["VLERA_KOMISION"].Width = 82;
         }
     }
 }
 private void FormatoGride(Janus.Windows.GridEX.GridEX grid)
 {
     if (grid.Name == "gridFurnitoret")
     {
         if (grid.RowCount <= 23)
         {
             grid.RootTable.Columns["ARTIKULLI"].Width = 288;
         }
         else
         {
             grid.RootTable.Columns["ARTIKULLI"].Width = 271;
         }
     }
     else
     {
         if (grid.RowCount <= 12)
         {
             grid.RootTable.Columns["EMRI"].Width = 158;
         }
         else
         {
             grid.RootTable.Columns["EMRI"].Width = 141;
         }
     }
 }
Example #3
0
        protected Janus.Windows.GridEX.GridEX GetFolderGrid(XMenuFolder folder)
        {
            Janus.Windows.GridEX.GridEX grid = new Janus.Windows.GridEX.GridEX();
            grid.BorderStyle      = Janus.Windows.GridEX.BorderStyle.None;
            grid.ColumnAutoResize = true;
            grid.ColumnHeaders    = Janus.Windows.GridEX.InheritableBoolean.False;
            grid.Dock             = DockStyle.Fill;
            grid.Font             = new Font("微软雅黑", 10);
            grid.GridLines        = Janus.Windows.GridEX.GridLines.None;
            grid.GroupByBoxFormatStyle.BackColor = Color.White;
            grid.GroupByBoxVisible = false;
            grid.GroupRowFormatStyle.BackColorGradient = System.Drawing.Color.White;
            grid.GroupRowFormatStyle.ForeColor         = System.Drawing.Color.Black;
            grid.GroupRowVisualStyle = Janus.Windows.GridEX.GroupRowVisualStyle.UseRowStyle;
            grid.BorderStyle         = Janus.Windows.GridEX.BorderStyle.None;

            grid.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            grid.Location      = new System.Drawing.Point(0, 0);
            grid.Name          = folder.FolderName;
            grid.VisualStyle   = Janus.Windows.GridEX.VisualStyle.Office2007;

            grid.RootTable = new Janus.Windows.GridEX.GridEXTable();

            grid.RootTable.HideColumnsWhenGrouped = Janus.Windows.GridEX.InheritableBoolean.True;

            AddGridColumns(grid);

            grid.RootTable.Groups.Add("FolderGroup");
            grid.RootTable.Groups[0].GroupPrefix = "";

            grid.DataSource = folder;

            return(grid);
        }
Example #4
0
        private void cargarInfoGrillaAnterior(Janus.Windows.GridEX.GridEX grilla, GridVariablesLoader _loader)
        {
            _grilla = grilla;
            string    columnasAgrup = String.Empty;
            string    columnasTotal = String.Empty;
            ArrayList agrupadas     = new ArrayList();

            Janus.Windows.GridEX.GridEXGroupCollection grupos = _grilla.RootTable.Groups;
            foreach (Janus.Windows.GridEX.GridEXGroup g in grupos)
            {
                agrupadas.Add(g.Column.DataMember.ToString());
            }
            this.ColumnasGrupo = agrupadas;
            //TODO: esto habria q ver si se puede sacar de la grilla las columnas por las q totaliza, por ahora son fijas, pero podrian ser dinamicas.
            columnasTotal        = _loader.TotalGroups;
            this.ColumnasTotales = mz.erp.systemframework.Util.Parse(columnasTotal);
            //Solo estas columnas tienen q quedar visibles en el layout
            Hashtable _posiciones = new Hashtable();

            foreach (Janus.Windows.GridEX.GridEXColumn columna in _grilla.RootTable.Columns)
            {
                columna.Visible = false;
                _posiciones.Add(Convert.ToString(columna.DataMember), columna.Position);
            }
            this._posicionColumnas = _posiciones;
        }
        // Constructor para "Formato de Columnas VISIBLES"
        public FrmGrillasOpcionesSuperiores(string processName, string taskName, Janus.Windows.GridEX.GridEX grilla, IGridManager manager)
        {
            InitializeComponent();
            _manager      = manager;
            _processName  = processName;
            _taskName     = taskName;
            _grillaName   = grilla.Name;
            _grilla       = grilla;
            _uiController = new GrillasOpcionesSuperioresController(_processName, _taskName, _grillaName, _manager.GetLayoutProperties(string.Empty));
            // Config de UI
            this.ultraExplorerBar1.Groups["OpcionesGenerales"].Visible = false;
            this.ultraExplorerBar1.Groups["OpcionesFormato"].Visible   = true;

            // InitData.
            comboColumna.Items.AddRange(_uiController.Columns.ToArray());

            // InitEventHandlers.
            this.comboColumna.SelectedIndexChanged     += new EventHandler(comboColumna_SelectedIndexChanged);
            this.comboAlineacion.SelectedIndexChanged  += new EventHandler(comboAlineacion_SelectedIndexChanged);
            this.comboFormato.SelectedIndexChanged     += new EventHandler(comboFormato_SelectedIndexChanged);
            this.comboTipoEdicion.SelectedIndexChanged += new EventHandler(comboTipoEdicion_SelectedIndexChanged);
            this.comboTipoColumna.SelectedIndexChanged += new EventHandler(comboTipoColumna_SelectedIndexChanged);
            _uiController.ObjectHasChanged             += new EventHandler(Refresh);

            if (comboColumna.Items.Count > 0)
            {
                //Autoselecciono el primer elemento del combo.
                comboColumna.SelectedIndex = 0;
                KeyValuePar kvp = (KeyValuePar)comboColumna.SelectedItem;
                _uiController.SelectedItem = kvp.Key;
            }
        }
Example #6
0
        public static void SetReadonly(this Janus.Windows.GridEX.GridEX grid, bool readOnly)
        {
            var value = (!readOnly).ToInheritableBoolean();

            grid.AllowAddNew = value;
            grid.AllowDelete = value;
            grid.AllowEdit   = value;
        }
Example #7
0
 public void Configure(IGridManager manager, GridVariablesLoader loader, Janus.Windows.GridEX.GridEX grilla)
 {
     _loader      = loader;
     _grilla      = grilla;
     this.Enabled = (_loader.AllowSortByMergeAgregateColumn && grilla.RootTable.Groups.Count > 0 && grilla.RecordCount > 0);
     _manager     = manager;
     InitEventHandlers();
 }
Example #8
0
        private void SaveLayout(Janus.Windows.GridEX.GridEX dgv)
        {
            string path = Form_QD.__documentDirectory + "\\Layout\\" + dgv.SettingsKey + ".gxl";

            using (FileStream fs = new FileStream(path, FileMode.OpenOrCreate, FileAccess.Write))
            {
                dgv.SaveLayoutFile(fs);
            }
        }
Example #9
0
 private void ObtenerPago(Janus.Windows.GridEX.GridEX grilla)
 {
     if (grilla.SelectedItems.Count > 0)
     {
         ItemCuentaCorriente icc = (ItemCuentaCorriente)grilla.GetRow().DataRow;
         icc.Pago = Math.Abs(icc.Saldo);
         grilla.Refetch();
     }
 }
Example #10
0
 private void AddGridColumn(Janus.Windows.GridEX.GridEX grid, string dataMember, bool visible, int width = 200)
 {
     Janus.Windows.GridEX.GridEXColumn c1 = new Janus.Windows.GridEX.GridEXColumn();
     c1.DataMember = dataMember;
     grid.RootTable.Columns.Add(c1);
     c1.Visible    = visible;
     c1.Width      = width;
     c1.Key        = dataMember;
     c1.Selectable = false;
 }
        private void ObtenerPago(Janus.Windows.GridEX.GridEX grilla)
        {
            //if (grilla.CurrentColumn.Key.Equals("Saldo"))
            //{
            DetalleCuentaCorriente dcc = (DetalleCuentaCorriente)grilla.GetRow().DataRow;

            dcc.Pago = Math.Abs(dcc.Saldo);
            grilla.Refetch();
            //}
        }
Example #12
0
 private void FormatoGride(Janus.Windows.GridEX.GridEX grid)
 {
     if (grid.RowCount <= 24)
     {
         grid.RootTable.Columns["KAMARIERI"].Width = 150;
     }
     else
     {
         grid.RootTable.Columns["KAMARIERI"].Width = 133;
     }
 }
 private void FormatoGride(Janus.Windows.GridEX.GridEX grid)
 {
     if (grid.RowCount <= 14)
     {
         grid.RootTable.Columns["PERSHKRIMI"].Width = 293;
     }
     else
     {
         grid.RootTable.Columns["PERSHKRIMI"].Width = 276;
     }
 }
Example #14
0
 private void FormatoGride(Janus.Windows.GridEX.GridEX grid)
 {
     if (grid.RowCount <= 23)
     {
         grid.RootTable.Columns["EMAILI"].Width = 168;
     }
     else
     {
         grid.RootTable.Columns["EMAILI"].Width = 151;
     }
 }
Example #15
0
 private void FormatoGride(Janus.Windows.GridEX.GridEX grid)
 {
     if (grid.RowCount <= 18)
     {
         grid.RootTable.Columns["SQARIM_OFERTA"].Width = 364;
     }
     else
     {
         grid.RootTable.Columns["SQARIM_OFERTA"].Width = 347;
     }
 }
Example #16
0
 /// <summary>
 /// Ben formatimin e grides ne varesi te numrit te rreshtave
 /// </summary>
 /// <param name="grid"></param>
 private void FormatoGride(Janus.Windows.GridEX.GridEX grid)
 {
     if (grid.RowCount <= 14)
     {
         grid.RootTable.Columns["FORMA_PAGESA"].Width = 213;
     }
     else
     {
         grid.RootTable.Columns["FORMA_PAGESA"].Width = 196;
     }
 }
Example #17
0
 void grid_Click(object sender, EventArgs e)
 {
     Janus.Windows.GridEX.GridEX gridEx = sender as Janus.Windows.GridEX.GridEX;
     if (gridEx != null)
     {
         if (gridEx.CurrentRow != null && gridEx.CurrentRow.RowType == Janus.Windows.GridEX.RowType.Record)
         {
             DataRow   currentRow = ((System.Data.DataRowView)(gridEx.CurrentRow.DataRow)).Row;
             XMenuInfo menuInfo   = XMenuInfoTool.MenuRow2MenuInfo(currentRow);
             this.OnMenuClick(menuInfo, new EventArgs());
         }
     }
 }
Example #18
0
        //Se queda con las columnas visibles de la tabla para despues poner visibles solo esas
        public void columnasVisibles(Janus.Windows.GridEX.GridEX grilla)
        {
            ArrayList visibles = new ArrayList();

            foreach (Janus.Windows.GridEX.GridEXColumn columna in grilla.RootTable.Columns)
            {
                if (columna.Visible)
                {
                    visibles.Add(Convert.ToString(columna.DataMember));
                }
            }
            this.ColumnasVisibles = visibles;
        }
Example #19
0
        private void LoadDataGrid(Janus.Windows.GridEX.GridEX dgv, DBInfoList dBInfoList)
        {
            dgv.DataSource = dBInfoList;
            //dgv.AutoSizeColumns();
            string path = Form_QD.__documentDirectory + "\\Layout\\" + dgv.SettingsKey + ".gxl";

            if (File.Exists(path))
            {
                FileStream fs = new FileStream(path, FileMode.Open);
                try { dgv.LoadLayoutFile(fs); }
                catch { fs.Close(); File.Delete(path); }
                fs.Close();
            }
        }
Example #20
0
        private void SaveLayout(Janus.Windows.GridEX.GridEX dgv)
        {
            string path = Form_QD.__documentDirectory + "\\Layout\\" + dgv.SettingsKey + ".gxl";

            try
            {
                FileStream fs = new FileStream(path, FileMode.OpenOrCreate, FileAccess.Write);
                dgv.SaveLayoutFile(fs);
                fs.Close();
            }
            catch (Exception ex)
            {
            }
        }
Example #21
0
        private void btnPLExport_Click(object sender, EventArgs e)
        {
            Janus.Windows.GridEX.GridEX grid = grdPLTrade;
            SaveFileDialog sfd = new SaveFileDialog();

            sfd.Filter = "Excel file (*.xls)|*.xls";
            if (sfd.ShowDialog() == DialogResult.OK)
            {
                FileStream stream;
                Janus.Windows.GridEX.Export.GridEXExporter gridexport = new Janus.Windows.GridEX.Export.GridEXExporter();
                gridexport.IncludeFormatStyle = true;
                gridexport.GridEX             = grid;
                stream = new FileStream(sfd.FileName, FileMode.Create);
                gridexport.Export(stream);
            }
        }
Example #22
0
 public void layoutAnterior(Janus.Windows.GridEX.GridEX grilla)
 {
     //Le cargo la posicion q tenia antes y pongo invisibles a todas
     foreach (Janus.Windows.GridEX.GridEXColumn columna in grilla.RootTable.Columns)
     {
         columna.Position = Convert.ToInt32(this._posicionColumnas[Convert.ToString(columna.DataMember)]);
         columna.Visible  = false;
     }
     //Solo visible las q eran visibles
     foreach (string s in this.ColumnasVisibles)
     {
         grilla.RootTable.Columns[s].Visible = true;
     }
     //Vuelvo a agrupar como taba
     foreach (string s1 in this.ColumnasGrupo)
     {
         grilla.RootTable.Groups.Add(new Janus.Windows.GridEX.GridEXGroup(grilla.RootTable.Columns[s1]));
     }
 }
Example #23
0
        private void btnExportOrders_Click(object sender, EventArgs e)
        {
            Janus.Windows.GridEX.GridEX grid = grdOrders;
            SaveFileDialog sfd = new SaveFileDialog();

            sfd.Filter = "Excel file (*.xls)|*.xls";
            if (sfd.ShowDialog() == DialogResult.OK)
            {
                FileStream stream = null;
                try
                {
                    Janus.Windows.GridEX.Export.GridEXExporter gridExporter = new Janus.Windows.GridEX.Export.GridEXExporter();
                    gridExporter.IncludeFormatStyle   = true;
                    gridExporter.GridEX               = grid;
                    gridExporter.IncludeCollapsedRows = false;
                    gridExporter.IncludeHeaders       = true;
                    gridExporter.GridEX.AutoSizeColumns();

                    stream = new FileStream(sfd.FileName, FileMode.Create);
                    gridExporter.Export(stream);
                    MessageBox.Show("Orders Exported", "TC Admin");
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.Message);
                }
                finally
                {
                    if (!((stream == null)))
                    {
                        stream.Close();
                        stream.Dispose();
                        stream = null;
                    }
                }
            }
            else
            {
                MessageBox.Show("Excel Export Cancel!", "TC Admin");
            }
        }
 public void Configure(IGridManager manager, GridVariablesLoader loader, ArrayList Columns, Janus.Windows.GridEX.GridEX Grilla, string ProcessName, string TaskName, string Formulario, string TituloFormularioPadre)
 {
     _loader      = loader;
     _manager     = manager;
     _columnas    = Columns;
     _grilla      = Grilla;
     _processName = ProcessName;
     _taskName    = TaskName;
     if (Formulario == null)
     {
         _formulario = string.Empty;
     }
     else
     {
         _formulario = Formulario;
     }
     _tituloFormularioPadre = TituloFormularioPadre;
     btnConfGrilla.Click   += new EventHandler(btnConfGrilla_Click);
     this.ObtenerConfiguracionGrilla();
     _grilla.FormattingRow += new Janus.Windows.GridEX.RowLoadEventHandler(_grilla_FormattingRow);
 }
Example #25
0
 private DataTable cargarTabla(DataTable dataTable, Janus.Windows.GridEX.GridEX _grilla)
 {
     /*Janus.Windows.GridEX.GridEXRow[] todasRows=_grilla.GetRows();
      * foreach (Janus.Windows.GridEX.GridEXRow row in todasRows)
      * {
      *      //Esto seria los valores encabezados del grupo entonces sacar los valores para las colum agrup
      *      Janus.Windows.GridEX.GridEXRow prueba=row;
      *      if(prueba.RowType == Janus.Windows.GridEX.RowType.GroupHeader)
      *      {
      *
      *              DataRow fila=dataTable.NewRow();
      *              foreach (string s in ColumnasGrupo)
      *              {
      *                      fila[s]=prueba.GroupCaption;
      *                      prueba=row.GetChildRows()[0];
      *              }
      *              //No hay mas groupsHeader ahora tengo q totalizar el grupo :S, pipi
      *              foreach (string s1 in ColumnasTotales)
      *                      {
      *                      if(prueba.RowType== Janus.Windows.GridEX.RowType.GroupHeader)
      *                              fila[s1]=prueba.GetSubTotal(_grilla.RootTable.Columns[s1],Janus.Windows.GridEX.AggregateFunction.Sum);
      *                      else
      *                              fila[s1]=prueba.Parent.GetSubTotal(_grilla.RootTable.Columns[s1],Janus.Windows.GridEX.AggregateFunction.Sum);
      *                      }
      *              dataTable.Rows.Add(fila);
      *              }
      *
      *
      * }
      * return dataTable;*/
     Janus.Windows.GridEX.GridEXRow[] todasRows = _grilla.GetRows();
     foreach (Janus.Windows.GridEX.GridEXRow row in todasRows)
     {
         //Esto seria los valores encabezados del grupo entonces sacar los valores para las colum agrup
         Janus.Windows.GridEX.GridEXRow prueba = row;
         DataRow fila = dataTable.NewRow();
         recorrerGrillaCargandoInfo(prueba, dataTable, _grilla, "");
     }
     return(dataTable);
 }
Example #26
0
        public void nuevoLayout(Janus.Windows.GridEX.GridEX grilla, GridVariablesLoader _loader)
        {
            _grilla = grilla;
            this.cargarInfoGrillaAnterior(_grilla, _loader);

            //Aca tengo todas las columnas de la 'nueva grilla', recorro la grilla para quedarme con el tipo y ponerlas visibles
            ArrayList nuevasColum = new ArrayList();

            nuevasColum.AddRange(ColumnasGrupo);
            foreach (string col in ColumnasTotales)
            {
                if (!nuevasColum.Contains(col))
                {
                    nuevasColum.Add(col);
                }
            }

            DataTable dataTable = new DataTable();
            int       i         = 1;

            foreach (string s in nuevasColum)
            {
                grilla.RootTable.Columns[s].Visible  = true;
                grilla.RootTable.Columns[s].Position = i;
                i++;
                //DataColumn columna=new DataColumn(Convert.ToString(s));
                DataColumn columna = new DataColumn(s);
                /* Silvina 20100914 */
                //columna.DataType =_grilla.RootTable.Columns[s].GetType();
                columna.DataType = _grilla.RootTable.Columns[s].Type;
                /* Fin Silvina */
                dataTable.Columns.Add(columna);
            }
            //Carga el nuevo datasource con los datos q necesita
            dataTable = this.cargarTabla(dataTable, _grilla);
            //Una vez q tengo todos los datos cargados para la grilla nueva, vuelo los grupos
            _grilla.RootTable.Groups.Clear();
            this._dataSource = dataTable;
        }
Example #27
0
        public static void ExportGridEx(Janus.Windows.GridEX.GridEX gridEx)
        {
            Stream sw = null;

            try
            {
                var sd = new SaveFileDialog {
                    Filter = "Excel File (*.xml)|*.xml"
                };
                if (sd.ShowDialog() == DialogResult.OK)
                {
                    //sw = new FileStream(sd.FileName, FileMode.OpenOrCreate, FileAccess.ReadWrite);
                    sw = new FileStream(sd.FileName, FileMode.Create);
                    GridEXExporter grdListExporter = new GridEXExporter();
                    grdListExporter.IncludeExcelProcessingInstruction = true;
                    grdListExporter.IncludeFormatStyle = true;
                    grdListExporter.IncludeHeaders     = true;
                    grdListExporter.GridEX             = gridEx;
                    grdListExporter.Export(sw);
                    Utility.ShowMsg("Xuất dữ liệu thành công");
                }
            }
            catch (Exception ex)
            {
                Utility.ShowMsg(ex.Message);
            }
            finally
            {
                if (sw != null)
                {
                    sw.Flush();
                    sw.Close();
                    sw.Dispose();
                }
            }
        }
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FrmIngresarCodigoSecundario));
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     this.ultraExplorerBarContainerControl2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.labelTarea                 = new System.Windows.Forms.Label();
     this.containerProductos         = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.panel1                     = new System.Windows.Forms.Panel();
     this.gridProductos              = new Janus.Windows.GridEX.GridEX();
     this.hierarchicalSearchControl1 = new mz.erp.ui.controls.HierarchicalSearchControl();
     this.imglStandar                = new System.Windows.Forms.ImageList(this.components);
     this.toolBarStandar             = new System.Windows.Forms.ToolBar();
     this.tbbAnterior                = new System.Windows.Forms.ToolBarButton();
     this.tbbSeparator               = new System.Windows.Forms.ToolBarButton();
     this.tbbSiguiente               = new System.Windows.Forms.ToolBarButton();
     this.tbbSeparator2              = new System.Windows.Forms.ToolBarButton();
     this.tbbCancelar                = new System.Windows.Forms.ToolBarButton();
     this.ultraExplorerBar           = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBar();
     this.ultraExplorerBarContainerControl2.SuspendLayout();
     this.containerProductos.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridProductos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar)).BeginInit();
     this.ultraExplorerBar.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraExplorerBarContainerControl2
     //
     this.ultraExplorerBarContainerControl2.Controls.Add(this.labelTarea);
     this.ultraExplorerBarContainerControl2.Location = new System.Drawing.Point(28, -15);
     this.ultraExplorerBarContainerControl2.Name     = "ultraExplorerBarContainerControl2";
     this.ultraExplorerBarContainerControl2.Size     = new System.Drawing.Size(854, 28);
     this.ultraExplorerBarContainerControl2.TabIndex = 2;
     //
     // labelTarea
     //
     this.labelTarea.BackColor = System.Drawing.Color.Transparent;
     this.labelTarea.Dock      = System.Windows.Forms.DockStyle.Top;
     this.labelTarea.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelTarea.Location  = new System.Drawing.Point(0, 0);
     this.labelTarea.Name      = "labelTarea";
     this.labelTarea.Size      = new System.Drawing.Size(854, 23);
     this.labelTarea.TabIndex  = 1;
     this.labelTarea.Text      = "Tarea";
     this.labelTarea.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // containerProductos
     //
     this.containerProductos.Controls.Add(this.panel1);
     this.containerProductos.Controls.Add(this.hierarchicalSearchControl1);
     this.containerProductos.Location = new System.Drawing.Point(28, 9);
     this.containerProductos.Name     = "containerProductos";
     this.containerProductos.Size     = new System.Drawing.Size(854, 360);
     this.containerProductos.TabIndex = 3;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Transparent;
     this.panel1.Controls.Add(this.gridProductos);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 88);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(854, 272);
     this.panel1.TabIndex = 75;
     //
     // gridProductos
     //
     this.gridProductos.AllowCardSizing = false;
     this.gridProductos.AllowDelete     = Janus.Windows.GridEX.InheritableBoolean.True;
     this.gridProductos.AllowEdit       = Janus.Windows.GridEX.InheritableBoolean.False;
     this.gridProductos.Anchor          = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                                | System.Windows.Forms.AnchorStyles.Left)));
     this.gridProductos.Cursor = System.Windows.Forms.Cursors.Default;
     this.gridProductos.EditorsControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
     this.gridProductos.EnterKeyBehavior   = Janus.Windows.GridEX.EnterKeyBehavior.None;
     this.gridProductos.Font               = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.gridProductos.InvalidValueAction = Janus.Windows.GridEX.InvalidValueAction.DiscardChanges;
     this.gridProductos.Location           = new System.Drawing.Point(0, 8);
     this.gridProductos.Name               = "gridProductos";
     this.gridProductos.Size               = new System.Drawing.Size(848, 263);
     this.gridProductos.TabIndex           = 74;
     this.gridProductos.TabStop            = false;
     //
     // hierarchicalSearchControl1
     //
     this.hierarchicalSearchControl1.BackColor = System.Drawing.Color.Transparent;
     this.hierarchicalSearchControl1.Dock      = System.Windows.Forms.DockStyle.Top;
     this.hierarchicalSearchControl1.Location  = new System.Drawing.Point(0, 0);
     this.hierarchicalSearchControl1.Name      = "hierarchicalSearchControl1";
     this.hierarchicalSearchControl1.Size      = new System.Drawing.Size(854, 88);
     this.hierarchicalSearchControl1.TabIndex  = 74;
     this.hierarchicalSearchControl1.Load     += new System.EventHandler(this.hierarchicalSearchControl1_Load);
     //
     // imglStandar
     //
     this.imglStandar.ImageSize        = new System.Drawing.Size(16, 16);
     this.imglStandar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglStandar.ImageStream")));
     this.imglStandar.TransparentColor = System.Drawing.Color.Magenta;
     //
     // toolBarStandar
     //
     this.toolBarStandar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBarStandar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbbAnterior,
         this.tbbSeparator,
         this.tbbSiguiente,
         this.tbbSeparator2,
         this.tbbCancelar
     });
     this.toolBarStandar.DropDownArrows = true;
     this.toolBarStandar.ImageList      = this.imglStandar;
     this.toolBarStandar.Location       = new System.Drawing.Point(0, 0);
     this.toolBarStandar.Name           = "toolBarStandar";
     this.toolBarStandar.ShowToolTips   = true;
     this.toolBarStandar.Size           = new System.Drawing.Size(920, 28);
     this.toolBarStandar.TabIndex       = 25;
     this.toolBarStandar.TextAlign      = System.Windows.Forms.ToolBarTextAlign.Right;
     //
     // tbbAnterior
     //
     this.tbbAnterior.ImageIndex = 9;
     this.tbbAnterior.Text       = "&Anterior";
     //
     // tbbSeparator
     //
     this.tbbSeparator.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbSiguiente
     //
     this.tbbSiguiente.ImageIndex = 8;
     this.tbbSiguiente.Text       = "&Siguiente";
     //
     // tbbSeparator2
     //
     this.tbbSeparator2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbCancelar
     //
     this.tbbCancelar.ImageIndex = 7;
     this.tbbCancelar.Text       = "Cancelar";
     //
     // ultraExplorerBar
     //
     this.ultraExplorerBar.Controls.Add(this.ultraExplorerBarContainerControl2);
     this.ultraExplorerBar.Controls.Add(this.containerProductos);
     this.ultraExplorerBar.Cursor     = System.Windows.Forms.Cursors.Hand;
     this.ultraExplorerBar.Dock       = System.Windows.Forms.DockStyle.Fill;
     ultraExplorerBarGroup1.Container = this.ultraExplorerBarContainerControl2;
     ultraExplorerBarGroup1.Settings.ContainerHeight = 28;
     ultraExplorerBarGroup1.Settings.HeaderVisible   = Infragistics.Win.DefaultableBoolean.False;
     ultraExplorerBarGroup1.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup1.Text      = "Tarea";
     ultraExplorerBarGroup2.Container = this.containerProductos;
     ultraExplorerBarGroup2.Settings.ContainerHeight = 360;
     ultraExplorerBarGroup2.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup2.Text = "Productos";
     this.ultraExplorerBar.Groups.AddRange(new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup[] {
         ultraExplorerBarGroup1,
         ultraExplorerBarGroup2
     });
     this.ultraExplorerBar.Location = new System.Drawing.Point(0, 28);
     this.ultraExplorerBar.Name     = "ultraExplorerBar"; this.ultraExplorerBar.AnimationEnabled = false;         //German 20101207 - Tarea Infragistics 2008 – Tarea 983
     this.ultraExplorerBar.Size     = new System.Drawing.Size(920, 394);
     this.ultraExplorerBar.TabIndex = 26;
     this.ultraExplorerBar.TabStop  = false;
     //
     // FrmIngresarCodigoSecundario
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(920, 422);
     this.Controls.Add(this.ultraExplorerBar);
     this.Controls.Add(this.toolBarStandar);
     this.Name = "FrmIngresarCodigoSecundario";
     this.Text = "FrmIngresarCodigoSecundario";
     this.ultraExplorerBarContainerControl2.ResumeLayout(false);
     this.containerProductos.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridProductos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar)).EndInit();
     this.ultraExplorerBar.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #29
0
        /// <summary>
        /// Limpiar los recursos que se estén utilizando.
        /// </summary>

        #region Código generado por el Diseñador de Windows Forms
        /// <summary>
        /// Método necesario para admitir el Diseñador. No se puede modificar
        /// el contenido del método con el editor de código.
        /// </summary>
        private void InitializeComponent()
        {
            Infragistics.Win.UltraWinTree.UltraTreeNode ultraTreeNode1 = new Infragistics.Win.UltraWinTree.UltraTreeNode();
            Infragistics.Win.UltraWinTree.Override      _override1     = new Infragistics.Win.UltraWinTree.Override();
            Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
            Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
            Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup3 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
            this.ultraExplorerBarContainerControl1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
            this.mzProductosControl1 = new mz.erp.ui.controls.mzProductosControl();
            this.label1 = new System.Windows.Forms.Label();
            this.ultraExplorerBarContainerControl3 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
            this.gridProductos = new Janus.Windows.GridEX.GridEX();
            this.ultraExplorerBarContainerControl2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
            this.btnEliminar         = new Infragistics.Win.Misc.UltraButton();
            this.btnAgregar          = new Infragistics.Win.Misc.UltraButton();
            this.gridEXAgrupamientos = new Janus.Windows.GridEX.GridEX();
            this.btnBuscar           = new Infragistics.Win.Misc.UltraButton();
            this.ultraTree1          = new Infragistics.Win.UltraWinTree.UltraTree();
            this.ultraExplorerBar1   = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBar();
            this.ultraExplorerBarContainerControl1.SuspendLayout();
            this.ultraExplorerBarContainerControl3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridProductos)).BeginInit();
            this.ultraExplorerBarContainerControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridEXAgrupamientos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraTree1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).BeginInit();
            this.ultraExplorerBar1.SuspendLayout();
            this.SuspendLayout();
            //
            // ultraExplorerBarContainerControl1
            //
            this.ultraExplorerBarContainerControl1.Controls.Add(this.mzProductosControl1);
            this.ultraExplorerBarContainerControl1.Controls.Add(this.label1);
            this.ultraExplorerBarContainerControl1.Location = new System.Drawing.Point(28, -22);
            this.ultraExplorerBarContainerControl1.Name     = "ultraExplorerBarContainerControl1";
            this.ultraExplorerBarContainerControl1.Size     = new System.Drawing.Size(862, 63);
            this.ultraExplorerBarContainerControl1.TabIndex = 0;
            //
            // mzProductosControl1
            //
            this.mzProductosControl1.BackColor            = System.Drawing.Color.Transparent;
            this.mzProductosControl1.EnabledCantidad      = true;
            this.mzProductosControl1.EnabledListaDePrecio = true;
            this.mzProductosControl1.Location             = new System.Drawing.Point(95, -8);
            this.mzProductosControl1.Name                            = "mzProductosControl1";
            this.mzProductosControl1.Size                            = new System.Drawing.Size(672, 80);
            this.mzProductosControl1.TabIndex                        = 0;
            this.mzProductosControl1.VisibleCantidad                 = true;
            this.mzProductosControl1.VisibleComboListaDePrecios      = true;
            this.mzProductosControl1.VisibleComboTipoDePrecioDeCosto = false;
            this.mzProductosControl1.VisiblePrecios                  = true;
            //
            // label1
            //
            this.label1.BackColor = System.Drawing.Color.Transparent;
            this.label1.Location  = new System.Drawing.Point(0, 3);
            this.label1.Name      = "label1";
            this.label1.Size      = new System.Drawing.Size(100, 16);
            this.label1.TabIndex  = 23;
            this.label1.Text      = "Producto";
            //
            // ultraExplorerBarContainerControl3
            //
            this.ultraExplorerBarContainerControl3.Controls.Add(this.gridProductos);
            this.ultraExplorerBarContainerControl3.Location = new System.Drawing.Point(28, -15);
            this.ultraExplorerBarContainerControl3.Name     = "ultraExplorerBarContainerControl3";
            this.ultraExplorerBarContainerControl3.Size     = new System.Drawing.Size(862, 150);
            this.ultraExplorerBarContainerControl3.TabIndex = 2;
            //
            // gridProductos
            //
            this.gridProductos.AllowEdit                     = Janus.Windows.GridEX.InheritableBoolean.False;
            this.gridProductos.AlternatingColors             = true;
            this.gridProductos.AutomaticSort                 = false;
            this.gridProductos.ControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
            this.gridProductos.Cursor = System.Windows.Forms.Cursors.Default;
            this.gridProductos.Dock   = System.Windows.Forms.DockStyle.Fill;
            this.gridProductos.EditorsControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
            this.gridProductos.EnterKeyBehavior                = Janus.Windows.GridEX.EnterKeyBehavior.None;
            this.gridProductos.Font                            = new System.Drawing.Font("Tahoma", 8.25F);
            this.gridProductos.GroupByBoxInfoText              = "Arraste un encabezado de columna hasta aquí para agrupar por esa columna.";
            this.gridProductos.GroupByBoxVisible               = false;
            this.gridProductos.HeaderFormatStyle.FontBold      = Janus.Windows.GridEX.TriState.True;
            this.gridProductos.HeaderFormatStyle.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            this.gridProductos.IncrementalSearchMode           = Janus.Windows.GridEX.IncrementalSearchMode.FirstCharacter;
            this.gridProductos.InvalidValueAction              = Janus.Windows.GridEX.InvalidValueAction.DiscardChangesAndShowErrorMessage;
            this.gridProductos.Location                        = new System.Drawing.Point(0, 0);
            this.gridProductos.Name                            = "gridProductos";
            this.gridProductos.RecordNavigatorText             = "Registro:|de";
            this.gridProductos.RowHeaders                      = Janus.Windows.GridEX.InheritableBoolean.True;
            this.gridProductos.ShowEmptyFields                 = false;
            this.gridProductos.Size                            = new System.Drawing.Size(862, 150);
            this.gridProductos.TabIndex                        = 0;
            this.gridProductos.UpdateMode                      = Janus.Windows.GridEX.UpdateMode.CellUpdate;
            //
            // ultraExplorerBarContainerControl2
            //
            this.ultraExplorerBarContainerControl2.Controls.Add(this.btnEliminar);
            this.ultraExplorerBarContainerControl2.Controls.Add(this.btnAgregar);
            this.ultraExplorerBarContainerControl2.Controls.Add(this.gridEXAgrupamientos);
            this.ultraExplorerBarContainerControl2.Controls.Add(this.btnBuscar);
            this.ultraExplorerBarContainerControl2.Controls.Add(this.ultraTree1);
            this.ultraExplorerBarContainerControl2.Location = new System.Drawing.Point(28, 194);
            this.ultraExplorerBarContainerControl2.Name     = "ultraExplorerBarContainerControl2";
            this.ultraExplorerBarContainerControl2.Size     = new System.Drawing.Size(862, 461);
            this.ultraExplorerBarContainerControl2.TabIndex = 1;
            //
            // btnEliminar
            //
            this.btnEliminar.Location = new System.Drawing.Point(408, 66);
            this.btnEliminar.Name     = "btnEliminar";
            this.btnEliminar.Size     = new System.Drawing.Size(80, 24);
            this.btnEliminar.TabIndex = 3;
            this.btnEliminar.Text     = "&Eliminar";
            this.btnEliminar.Click   += new System.EventHandler(this.btnEliminar_Click);
            //
            // btnAgregar
            //
            this.btnAgregar.Location = new System.Drawing.Point(408, 34);
            this.btnAgregar.Name     = "btnAgregar";
            this.btnAgregar.Size     = new System.Drawing.Size(80, 24);
            this.btnAgregar.TabIndex = 2;
            this.btnAgregar.Text     = "&Agregar";
            this.btnAgregar.Click   += new System.EventHandler(this.btnAgregar_Click);
            //
            // gridEXAgrupamientos
            //
            this.gridEXAgrupamientos.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.gridEXAgrupamientos.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.gridEXAgrupamientos.Cursor             = System.Windows.Forms.Cursors.Default;
            this.gridEXAgrupamientos.GroupByBoxInfoText = "";
            this.gridEXAgrupamientos.GroupByBoxVisible  = false;
            this.gridEXAgrupamientos.InvalidValueAction = Janus.Windows.GridEX.InvalidValueAction.DiscardChanges;
            this.gridEXAgrupamientos.Location           = new System.Drawing.Point(499, 0);
            this.gridEXAgrupamientos.Name     = "gridEXAgrupamientos";
            this.gridEXAgrupamientos.Size     = new System.Drawing.Size(356, 456);
            this.gridEXAgrupamientos.TabIndex = 4;
            //
            // btnBuscar
            //
            this.btnBuscar.Location = new System.Drawing.Point(408, 2);
            this.btnBuscar.Name     = "btnBuscar";
            this.btnBuscar.Size     = new System.Drawing.Size(80, 24);
            this.btnBuscar.TabIndex = 1;
            this.btnBuscar.Text     = "&Buscar";
            //
            // ultraTree1
            //
            this.ultraTree1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                           | System.Windows.Forms.AnchorStyles.Left)));
            this.ultraTree1.HideSelection = false;
            this.ultraTree1.Location      = new System.Drawing.Point(0, 0);
            this.ultraTree1.Name          = "ultraTree1";
            ultraTreeNode1.Key            = "RAIZ";
            ultraTreeNode1.Text           = "Agrupamientos";
            this.ultraTree1.Nodes.AddRange(new Infragistics.Win.UltraWinTree.UltraTreeNode[] {
                ultraTreeNode1
            });
            _override1.SelectionType       = Infragistics.Win.UltraWinTree.SelectType.Single;
            this.ultraTree1.Override       = _override1;
            this.ultraTree1.Size           = new System.Drawing.Size(400, 456);
            this.ultraTree1.TabIndex       = 0;
            this.ultraTree1.AfterExpand   += new Infragistics.Win.UltraWinTree.AfterNodeChangedEventHandler(this.ultraTree1_AfterExpand);
            this.ultraTree1.AfterActivate += new Infragistics.Win.UltraWinTree.AfterNodeChangedEventHandler(this.ultraTree1_AfterActivate);
            //
            // ultraExplorerBar1
            //
            this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl1);
            this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl2);
            this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl3);
            this.ultraExplorerBar1.Cursor    = System.Windows.Forms.Cursors.Hand;
            this.ultraExplorerBar1.Dock      = System.Windows.Forms.DockStyle.Fill;
            ultraExplorerBarGroup1.Container = this.ultraExplorerBarContainerControl1;
            ultraExplorerBarGroup1.Settings.ContainerHeight = 63;
            ultraExplorerBarGroup1.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
            ultraExplorerBarGroup1.Text                     = "Datos Generales";
            ultraExplorerBarGroup2.Container                = this.ultraExplorerBarContainerControl3;
            ultraExplorerBarGroup2.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
            ultraExplorerBarGroup2.Text                     = "Detalle de productos";
            ultraExplorerBarGroup3.Container                = this.ultraExplorerBarContainerControl2;
            ultraExplorerBarGroup3.Settings.ContainerHeight = 461;
            ultraExplorerBarGroup3.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
            ultraExplorerBarGroup3.Text                     = "Detalle de Agrupamiento";
            this.ultraExplorerBar1.Groups.AddRange(new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup[] {
                ultraExplorerBarGroup1,
                ultraExplorerBarGroup2,
                ultraExplorerBarGroup3
            });
            this.ultraExplorerBar1.Location = new System.Drawing.Point(0, 0);
            this.ultraExplorerBar1.Name     = "ultraExplorerBar1"; this.ultraExplorerBar1.AnimationEnabled = false;         //German 20101207 - Tarea Infragistics 2008 – Tarea 983
            this.ultraExplorerBar1.Size     = new System.Drawing.Size(928, 645);
            this.ultraExplorerBar1.TabIndex = 23;
            this.ultraExplorerBar1.TabStop  = false;
            //
            // FrmAgrupProductos
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize        = new System.Drawing.Size(928, 645);
            this.Controls.Add(this.ultraExplorerBar1);
            this.Name = "FrmAgrupProductos";
            this.Text = "Agrupamiento de productos";
            this.ultraExplorerBarContainerControl1.ResumeLayout(false);
            this.ultraExplorerBarContainerControl3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridProductos)).EndInit();
            this.ultraExplorerBarContainerControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridEXAgrupamientos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraTree1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).EndInit();
            this.ultraExplorerBar1.ResumeLayout(false);
            this.ResumeLayout(false);
        }
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()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_TimKiemBN));
     Janus.Windows.GridEX.GridEXLayout grdAssignDetail_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     Janus.Windows.GridEX.GridEXLayout grdRegExam_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem1 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem2 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem3 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem4 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem5 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem6 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.GridEX.GridEXLayout cboKieuKham_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel1 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel2 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel3 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel4 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel5 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.cmdThemMoiBN = new System.Windows.Forms.ToolStripButton();
     this.cmdSuaThongTinBN = new System.Windows.Forms.ToolStripButton();
     this.cmdThemLanKham = new System.Windows.Forms.ToolStripButton();
     this.cmdXoaBenhNhan = new System.Windows.Forms.ToolStripButton();
     this.cmdExit = new System.Windows.Forms.ToolStripButton();
     this.tabChiDinh = new Janus.Windows.UI.Tab.UITab();
     this.tabPageChiDinh = new Janus.Windows.UI.Tab.UITabPage();
     this.uiGroupBox4 = new Janus.Windows.EditControls.UIGroupBox();
     this.grdAssignDetail = new Janus.Windows.GridEX.GridEX();
     this.uiGroupBox5 = new Janus.Windows.EditControls.UIGroupBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.barcode = new Mabry.Windows.Forms.Barcode.Barcode();
     this.txtTongChiPhi = new Janus.Windows.GridEX.EditControls.EditBox();
     this.uiGroupBox3 = new Janus.Windows.EditControls.UIGroupBox();
     this.cmdPrintAssign = new Janus.Windows.EditControls.UIButton();
     this.chkIntach = new System.Windows.Forms.CheckBox();
     this.cboServicePrint = new System.Windows.Forms.ComboBox();
     this.cmdXoaChiDinh = new Janus.Windows.EditControls.UIButton();
     this.cmdSuaChiDinh = new Janus.Windows.EditControls.UIButton();
     this.cmdThemChiDinh = new Janus.Windows.EditControls.UIButton();
     this.grdRegExam = new Janus.Windows.GridEX.GridEX();
     this.panel2 = new System.Windows.Forms.Panel();
     this.pnlnutchucnang = new System.Windows.Forms.Panel();
     this.cmdInPhieuKham = new Janus.Windows.EditControls.UIButton();
     this.cmdXoaKham = new Janus.Windows.EditControls.UIButton();
     this.cmdThanhToanKham = new Janus.Windows.EditControls.UIButton();
     this.pnlPrint = new System.Windows.Forms.FlowLayoutPanel();
     this.cmdInhoadon = new Janus.Windows.EditControls.UIButton();
     this.cmdInBienlai = new Janus.Windows.EditControls.UIButton();
     this.lblMsg = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.cboKieuin = new Janus.Windows.EditControls.UIComboBox();
     this.cmdCauhinh = new Janus.Windows.EditControls.UIButton();
     this.chkInsaukhiluu = new System.Windows.Forms.CheckBox();
     this.cboLaserPrinters = new System.Windows.Forms.ComboBox();
     this.cboPrintPreview = new Janus.Windows.EditControls.UIComboBox();
     this.cboA4 = new Janus.Windows.EditControls.UIComboBox();
     this.label26 = new System.Windows.Forms.Label();
     this.plnAddDvuKCB = new System.Windows.Forms.Panel();
     this.txtMyNameEdit = new Janus.Windows.GridEX.EditControls.EditBox();
     this.panel3 = new System.Windows.Forms.Panel();
     this.pnlGoMaDvu = new System.Windows.Forms.Panel();
     this.txtExamtypeCode = new VNS.HIS.UCs.AutoCompleteTextbox();
     this.txtIDKieuKham = new Janus.Windows.GridEX.EditControls.EditBox();
     this.cboKieuKham = new Janus.Windows.GridEX.EditControls.MultiColumnCombo();
     this.pnlKieuPhongkham = new System.Windows.Forms.Panel();
     this.label35 = new System.Windows.Forms.Label();
     this.txtKieuKham = new VNS.HIS.UCs.AutoCompleteTextbox();
     this.label23 = new System.Windows.Forms.Label();
     this.txtPhongkham = new VNS.HIS.UCs.AutoCompleteTextbox();
     this.txtIDPkham = new Janus.Windows.GridEX.EditControls.EditBox();
     this.lblDonGia = new System.Windows.Forms.Label();
     this.lblPhuThu = new System.Windows.Forms.Label();
     this.cmdAddDvuKCB = new Janus.Windows.EditControls.UIButton();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mnuMaDVu = new System.Windows.Forms.ToolStripMenuItem();
     this.uiStatusBar1 = new Janus.Windows.UI.StatusBar.UIStatusBar();
     this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
     this.lblTongSo = new System.Windows.Forms.Label();
     this.cboObjectType = new Janus.Windows.EditControls.UIComboBox();
     this.radTatCa = new Janus.Windows.EditControls.UIRadioButton();
     this.radNoiTru = new Janus.Windows.EditControls.UIRadioButton();
     this.radNgoaiTru = new Janus.Windows.EditControls.UIRadioButton();
     this.label4 = new System.Windows.Forms.Label();
     this.txtPatientCode = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtPatient_ID = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.Label7 = new System.Windows.Forms.Label();
     this.txtPatientName = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label3 = new System.Windows.Forms.Label();
     this.dtmTo = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtmFrom = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.chkByDate = new System.Windows.Forms.CheckBox();
     this.Label1 = new System.Windows.Forms.Label();
     this.cmdTimKiem = new Janus.Windows.EditControls.UIButton();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
     this.grdList = new Janus.Windows.GridEX.GridEX();
     this.panel1 = new System.Windows.Forms.Panel();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabChiDinh)).BeginInit();
     this.tabChiDinh.SuspendLayout();
     this.tabPageChiDinh.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox4)).BeginInit();
     this.uiGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdAssignDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox5)).BeginInit();
     this.uiGroupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).BeginInit();
     this.uiGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdRegExam)).BeginInit();
     this.panel2.SuspendLayout();
     this.pnlnutchucnang.SuspendLayout();
     this.pnlPrint.SuspendLayout();
     this.plnAddDvuKCB.SuspendLayout();
     this.panel3.SuspendLayout();
     this.pnlGoMaDvu.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboKieuKham)).BeginInit();
     this.pnlKieuPhongkham.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
     this.uiGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
     this.uiGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.BackColor = System.Drawing.SystemColors.Control;
     this.toolStrip1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.cmdThemMoiBN,
     this.cmdSuaThongTinBN,
     this.cmdThemLanKham,
     this.cmdXoaBenhNhan,
     this.cmdExit});
     this.toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(1018, 31);
     this.toolStrip1.TabIndex = 0;
     this.toolStrip1.Text = "toolStrip1";
     //
     // cmdThemMoiBN
     //
     this.cmdThemMoiBN.BackColor = System.Drawing.SystemColors.Control;
     this.cmdThemMoiBN.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdThemMoiBN.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemMoiBN.Image")));
     this.cmdThemMoiBN.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdThemMoiBN.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdThemMoiBN.Name = "cmdThemMoiBN";
     this.cmdThemMoiBN.Size = new System.Drawing.Size(92, 28);
     this.cmdThemMoiBN.Text = "&Thêm mới";
     this.cmdThemMoiBN.ToolTipText = "Nhấn vào đây để tiếp đón Bệnh nhân mới";
     //
     // cmdSuaThongTinBN
     //
     this.cmdSuaThongTinBN.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdSuaThongTinBN.Image = ((System.Drawing.Image)(resources.GetObject("cmdSuaThongTinBN.Image")));
     this.cmdSuaThongTinBN.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdSuaThongTinBN.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdSuaThongTinBN.Name = "cmdSuaThongTinBN";
     this.cmdSuaThongTinBN.Size = new System.Drawing.Size(111, 28);
     this.cmdSuaThongTinBN.Text = "&Sửa thông tin ";
     this.cmdSuaThongTinBN.ToolTipText = "Nhấn vào nút này để sửa thông tin Bệnh nhân đang chọn trên lưới";
     //
     // cmdThemLanKham
     //
     this.cmdThemLanKham.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdThemLanKham.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemLanKham.Image")));
     this.cmdThemLanKham.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdThemLanKham.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdThemLanKham.Name = "cmdThemLanKham";
     this.cmdThemLanKham.Size = new System.Drawing.Size(121, 28);
     this.cmdThemLanKham.Text = "&Thêm lần khám";
     this.cmdThemLanKham.ToolTipText = "Nhấn nút này để thêm lần khám cho Bệnh nhân đang chọn trên lưới";
     //
     // cmdXoaBenhNhan
     //
     this.cmdXoaBenhNhan.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdXoaBenhNhan.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoaBenhNhan.Image")));
     this.cmdXoaBenhNhan.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdXoaBenhNhan.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdXoaBenhNhan.Name = "cmdXoaBenhNhan";
     this.cmdXoaBenhNhan.Size = new System.Drawing.Size(110, 28);
     this.cmdXoaBenhNhan.Text = "&Xóa lần khám";
     this.cmdXoaBenhNhan.ToolTipText = "Nhấn nút này để xóa lần khám của Bệnh nhân đang chọn trên lưới";
     //
     // cmdExit
     //
     this.cmdExit.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdExit.Image = ((System.Drawing.Image)(resources.GetObject("cmdExit.Image")));
     this.cmdExit.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdExit.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdExit.Name = "cmdExit";
     this.cmdExit.Size = new System.Drawing.Size(126, 28);
     this.cmdExit.Text = "Đóng chức năng";
     this.cmdExit.ToolTipText = "Nhấn nút này để thoát khỏi chức năng ";
     //
     // tabChiDinh
     //
     this.tabChiDinh.Dock = System.Windows.Forms.DockStyle.Right;
     this.tabChiDinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabChiDinh.Location = new System.Drawing.Point(531, 103);
     this.tabChiDinh.Name = "tabChiDinh";
     this.tabChiDinh.Size = new System.Drawing.Size(487, 610);
     this.tabChiDinh.TabIndex = 0;
     this.tabChiDinh.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
     this.tabPageChiDinh});
     this.tabChiDinh.TabStop = false;
     this.tabChiDinh.VisualStyle = Janus.Windows.UI.Tab.TabVisualStyle.VS2005;
     //
     // tabPageChiDinh
     //
     this.tabPageChiDinh.Controls.Add(this.uiGroupBox4);
     this.tabPageChiDinh.Controls.Add(this.uiGroupBox5);
     this.tabPageChiDinh.Controls.Add(this.uiGroupBox3);
     this.tabPageChiDinh.Location = new System.Drawing.Point(1, 23);
     this.tabPageChiDinh.Name = "tabPageChiDinh";
     this.tabPageChiDinh.Size = new System.Drawing.Size(485, 586);
     this.tabPageChiDinh.TabStop = true;
     this.tabPageChiDinh.Text = "Thông tin chỉ định(Nhấn F2)";
     //
     // uiGroupBox4
     //
     this.uiGroupBox4.Controls.Add(this.grdAssignDetail);
     this.uiGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.uiGroupBox4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox4.Location = new System.Drawing.Point(0, 0);
     this.uiGroupBox4.Name = "uiGroupBox4";
     this.uiGroupBox4.Size = new System.Drawing.Size(485, 495);
     this.uiGroupBox4.TabIndex = 1;
     this.uiGroupBox4.Text = "Danh sách các chỉ định CLS Bệnh nhân đã đăng ký";
     //
     // grdAssignDetail
     //
     this.grdAssignDetail.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     this.grdAssignDetail.BackColor = System.Drawing.Color.Silver;
     grdAssignDetail_DesignTimeLayout.LayoutString = resources.GetString("grdAssignDetail_DesignTimeLayout.LayoutString");
     this.grdAssignDetail.DesignTimeLayout = grdAssignDetail_DesignTimeLayout;
     this.grdAssignDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdAssignDetail.Font = new System.Drawing.Font("Arial", 9F);
     this.grdAssignDetail.GroupByBoxVisible = false;
     this.grdAssignDetail.GroupTotals = Janus.Windows.GridEX.GroupTotals.Always;
     this.grdAssignDetail.Location = new System.Drawing.Point(3, 17);
     this.grdAssignDetail.Name = "grdAssignDetail";
     this.grdAssignDetail.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdAssignDetail.Size = new System.Drawing.Size(479, 475);
     this.grdAssignDetail.TabIndex = 0;
     this.grdAssignDetail.TabStop = false;
     this.grdAssignDetail.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdAssignDetail.TotalRowFormatStyle.BackColor = System.Drawing.Color.White;
     this.grdAssignDetail.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdAssignDetail.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // uiGroupBox5
     //
     this.uiGroupBox5.Controls.Add(this.label6);
     this.uiGroupBox5.Controls.Add(this.label5);
     this.uiGroupBox5.Controls.Add(this.barcode);
     this.uiGroupBox5.Controls.Add(this.txtTongChiPhi);
     this.uiGroupBox5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.uiGroupBox5.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox5.Location = new System.Drawing.Point(0, 495);
     this.uiGroupBox5.Name = "uiGroupBox5";
     this.uiGroupBox5.Size = new System.Drawing.Size(485, 0);
     this.uiGroupBox5.TabIndex = 3;
     this.uiGroupBox5.Text = "&Thông tin chi phí";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.Black;
     this.label6.Location = new System.Drawing.Point(258, 40);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(28, 15);
     this.label6.TabIndex = 242;
     this.label6.Text = "Vnđ";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(7, 40);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(45, 15);
     this.label5.TabIndex = 241;
     this.label5.Text = "Chi phí";
     //
     // barcode
     //
     this.barcode.BackColor = System.Drawing.Color.White;
     this.barcode.BarColor = System.Drawing.Color.Black;
     this.barcode.BarRatio = 2F;
     this.barcode.Data = "00000";
     this.barcode.DataExtension = null;
     this.barcode.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.barcode.Location = new System.Drawing.Point(345, 15);
     this.barcode.Name = "barcode";
     this.barcode.Size = new System.Drawing.Size(218, 53);
     this.barcode.Symbology = Mabry.Windows.Forms.Barcode.Barcode.BarcodeSymbologies.Code128;
     this.barcode.TabIndex = 443;
     this.barcode.Text = "000000";
     this.barcode.Visible = false;
     //
     // txtTongChiPhi
     //
     this.txtTongChiPhi.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTongChiPhi.Location = new System.Drawing.Point(68, 37);
     this.txtTongChiPhi.Name = "txtTongChiPhi";
     this.txtTongChiPhi.ReadOnly = true;
     this.txtTongChiPhi.Size = new System.Drawing.Size(183, 23);
     this.txtTongChiPhi.TabIndex = 0;
     this.txtTongChiPhi.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
     //
     // uiGroupBox3
     //
     this.uiGroupBox3.Controls.Add(this.cmdPrintAssign);
     this.uiGroupBox3.Controls.Add(this.chkIntach);
     this.uiGroupBox3.Controls.Add(this.cboServicePrint);
     this.uiGroupBox3.Controls.Add(this.cmdXoaChiDinh);
     this.uiGroupBox3.Controls.Add(this.cmdSuaChiDinh);
     this.uiGroupBox3.Controls.Add(this.cmdThemChiDinh);
     this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.uiGroupBox3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox3.Location = new System.Drawing.Point(0, 495);
     this.uiGroupBox3.Name = "uiGroupBox3";
     this.uiGroupBox3.Size = new System.Drawing.Size(485, 91);
     this.uiGroupBox3.TabIndex = 0;
     //
     // cmdPrintAssign
     //
     this.cmdPrintAssign.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdPrintAssign.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdPrintAssign.Image = ((System.Drawing.Image)(resources.GetObject("cmdPrintAssign.Image")));
     this.cmdPrintAssign.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdPrintAssign.Location = new System.Drawing.Point(312, 56);
     this.cmdPrintAssign.Name = "cmdPrintAssign";
     this.cmdPrintAssign.Size = new System.Drawing.Size(78, 28);
     this.cmdPrintAssign.TabIndex = 706;
     this.cmdPrintAssign.Text = "In";
     this.toolTip1.SetToolTip(this.cmdPrintAssign, "Nhấn vào đây để in phiếu CLS(Phím tắt Ctrl+P)");
     //
     // chkIntach
     //
     this.chkIntach.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.chkIntach.AutoSize = true;
     this.chkIntach.Location = new System.Drawing.Point(3, 14);
     this.chkIntach.Name = "chkIntach";
     this.chkIntach.Size = new System.Drawing.Size(69, 19);
     this.chkIntach.TabIndex = 705;
     this.chkIntach.Text = "In tách?";
     this.chkIntach.UseVisualStyleBackColor = true;
     //
     // cboServicePrint
     //
     this.cboServicePrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cboServicePrint.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboServicePrint.FormattingEnabled = true;
     this.cboServicePrint.Location = new System.Drawing.Point(78, 11);
     this.cboServicePrint.Name = "cboServicePrint";
     this.cboServicePrint.Size = new System.Drawing.Size(385, 23);
     this.cboServicePrint.TabIndex = 704;
     //
     // cmdXoaChiDinh
     //
     this.cmdXoaChiDinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdXoaChiDinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdXoaChiDinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoaChiDinh.Image")));
     this.cmdXoaChiDinh.ImageSize = new System.Drawing.Size(18, 18);
     this.cmdXoaChiDinh.Location = new System.Drawing.Point(210, 56);
     this.cmdXoaChiDinh.Name = "cmdXoaChiDinh";
     this.cmdXoaChiDinh.Size = new System.Drawing.Size(93, 29);
     this.cmdXoaChiDinh.TabIndex = 702;
     this.cmdXoaChiDinh.TabStop = false;
     this.cmdXoaChiDinh.Text = "&Xóa";
     //
     // cmdSuaChiDinh
     //
     this.cmdSuaChiDinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdSuaChiDinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdSuaChiDinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdSuaChiDinh.Image")));
     this.cmdSuaChiDinh.ImageSize = new System.Drawing.Size(18, 18);
     this.cmdSuaChiDinh.Location = new System.Drawing.Point(119, 56);
     this.cmdSuaChiDinh.Name = "cmdSuaChiDinh";
     this.cmdSuaChiDinh.Size = new System.Drawing.Size(85, 29);
     this.cmdSuaChiDinh.TabIndex = 701;
     this.cmdSuaChiDinh.TabStop = false;
     this.cmdSuaChiDinh.Text = "&Sửa";
     //
     // cmdThemChiDinh
     //
     this.cmdThemChiDinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdThemChiDinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdThemChiDinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemChiDinh.Image")));
     this.cmdThemChiDinh.ImageSize = new System.Drawing.Size(18, 18);
     this.cmdThemChiDinh.Location = new System.Drawing.Point(10, 56);
     this.cmdThemChiDinh.Name = "cmdThemChiDinh";
     this.cmdThemChiDinh.Size = new System.Drawing.Size(103, 29);
     this.cmdThemChiDinh.TabIndex = 700;
     this.cmdThemChiDinh.TabStop = false;
     this.cmdThemChiDinh.Text = "&Thêm";
     //
     // grdRegExam
     //
     this.grdRegExam.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     this.grdRegExam.AlternatingColors = true;
     grdRegExam_DesignTimeLayout.LayoutString = resources.GetString("grdRegExam_DesignTimeLayout.LayoutString");
     this.grdRegExam.DesignTimeLayout = grdRegExam_DesignTimeLayout;
     this.grdRegExam.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdRegExam.Font = new System.Drawing.Font("Arial", 9F);
     this.grdRegExam.GroupByBoxVisible = false;
     this.grdRegExam.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdRegExam.Location = new System.Drawing.Point(0, 44);
     this.grdRegExam.Name = "grdRegExam";
     this.grdRegExam.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdRegExam.SelectedInactiveFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.grdRegExam.Size = new System.Drawing.Size(485, 355);
     this.grdRegExam.TabIndex = 603;
     this.grdRegExam.TabStop = false;
     this.grdRegExam.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdRegExam.TotalRowFormatStyle.BackColor = System.Drawing.SystemColors.Control;
     this.grdRegExam.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdRegExam.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.pnlnutchucnang);
     this.panel2.Controls.Add(this.lblMsg);
     this.panel2.Controls.Add(this.label9);
     this.panel2.Controls.Add(this.label8);
     this.panel2.Controls.Add(this.cboKieuin);
     this.panel2.Controls.Add(this.cmdCauhinh);
     this.panel2.Controls.Add(this.chkInsaukhiluu);
     this.panel2.Controls.Add(this.cboLaserPrinters);
     this.panel2.Controls.Add(this.cboPrintPreview);
     this.panel2.Controls.Add(this.cboA4);
     this.panel2.Controls.Add(this.label26);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel2.Location = new System.Drawing.Point(0, 399);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(485, 187);
     this.panel2.TabIndex = 602;
     //
     // pnlnutchucnang
     //
     this.pnlnutchucnang.Controls.Add(this.cmdInPhieuKham);
     this.pnlnutchucnang.Controls.Add(this.cmdXoaKham);
     this.pnlnutchucnang.Controls.Add(this.cmdThanhToanKham);
     this.pnlnutchucnang.Controls.Add(this.pnlPrint);
     this.pnlnutchucnang.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pnlnutchucnang.Location = new System.Drawing.Point(0, 154);
     this.pnlnutchucnang.Name = "pnlnutchucnang";
     this.pnlnutchucnang.Size = new System.Drawing.Size(485, 33);
     this.pnlnutchucnang.TabIndex = 704;
     //
     // cmdInPhieuKham
     //
     this.cmdInPhieuKham.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdInPhieuKham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdInPhieuKham.Image = ((System.Drawing.Image)(resources.GetObject("cmdInPhieuKham.Image")));
     this.cmdInPhieuKham.Location = new System.Drawing.Point(307, 2);
     this.cmdInPhieuKham.Name = "cmdInPhieuKham";
     this.cmdInPhieuKham.Size = new System.Drawing.Size(107, 27);
     this.cmdInPhieuKham.TabIndex = 34;
     this.cmdInPhieuKham.TabStop = false;
     this.cmdInPhieuKham.Text = "In phiếu KCB";
     this.cmdInPhieuKham.ToolTipText = "Nhấn vào đây để in phiếu khám chữa bệnh";
     //
     // cmdXoaKham
     //
     this.cmdXoaKham.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdXoaKham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdXoaKham.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoaKham.Image")));
     this.cmdXoaKham.Location = new System.Drawing.Point(416, 2);
     this.cmdXoaKham.Name = "cmdXoaKham";
     this.cmdXoaKham.Size = new System.Drawing.Size(66, 27);
     this.cmdXoaKham.TabIndex = 35;
     this.cmdXoaKham.TabStop = false;
     this.cmdXoaKham.Text = "Xóa";
     this.cmdXoaKham.ToolTipText = "Nhấn vào đây để xóa phiếu khám";
     //
     // cmdThanhToanKham
     //
     this.cmdThanhToanKham.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdThanhToanKham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdThanhToanKham.Image = ((System.Drawing.Image)(resources.GetObject("cmdThanhToanKham.Image")));
     this.cmdThanhToanKham.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdThanhToanKham.Location = new System.Drawing.Point(214, 2);
     this.cmdThanhToanKham.Name = "cmdThanhToanKham";
     this.cmdThanhToanKham.Size = new System.Drawing.Size(92, 27);
     this.cmdThanhToanKham.TabIndex = 33;
     this.cmdThanhToanKham.TabStop = false;
     this.cmdThanhToanKham.Tag = "TT";
     this.cmdThanhToanKham.Text = "T.Toán";
     this.cmdThanhToanKham.ToolTipText = "Nhấn vào đây để thanh toán chi phí KCB đang chọn";
     //
     // pnlPrint
     //
     this.pnlPrint.Controls.Add(this.cmdInhoadon);
     this.pnlPrint.Controls.Add(this.cmdInBienlai);
     this.pnlPrint.Dock = System.Windows.Forms.DockStyle.Left;
     this.pnlPrint.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.pnlPrint.Location = new System.Drawing.Point(0, 0);
     this.pnlPrint.Name = "pnlPrint";
     this.pnlPrint.Size = new System.Drawing.Size(208, 33);
     this.pnlPrint.TabIndex = 0;
     //
     // cmdInhoadon
     //
     this.cmdInhoadon.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdInhoadon.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdInhoadon.Image = ((System.Drawing.Image)(resources.GetObject("cmdInhoadon.Image")));
     this.cmdInhoadon.Location = new System.Drawing.Point(108, 3);
     this.cmdInhoadon.Name = "cmdInhoadon";
     this.cmdInhoadon.Size = new System.Drawing.Size(97, 27);
     this.cmdInhoadon.TabIndex = 37;
     this.cmdInhoadon.TabStop = false;
     this.cmdInhoadon.Text = "In hóa đơn";
     this.cmdInhoadon.ToolTipText = "Nhấn vào đây để in hóa đơn thanh toán";
     //
     // cmdInBienlai
     //
     this.cmdInBienlai.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdInBienlai.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdInBienlai.Image = ((System.Drawing.Image)(resources.GetObject("cmdInBienlai.Image")));
     this.cmdInBienlai.Location = new System.Drawing.Point(5, 3);
     this.cmdInBienlai.Name = "cmdInBienlai";
     this.cmdInBienlai.Size = new System.Drawing.Size(97, 27);
     this.cmdInBienlai.TabIndex = 36;
     this.cmdInBienlai.TabStop = false;
     this.cmdInBienlai.Text = "In biên lai";
     this.cmdInBienlai.ToolTipText = "Nhấn vào đây để in phiếu thu (biên lai)";
     //
     // lblMsg
     //
     this.lblMsg.AutoSize = true;
     this.lblMsg.Location = new System.Drawing.Point(14, 120);
     this.lblMsg.Name = "lblMsg";
     this.lblMsg.Size = new System.Drawing.Size(0, 13);
     this.lblMsg.TabIndex = 703;
     this.lblMsg.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(15, 64);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(75, 15);
     this.label9.TabIndex = 702;
     this.label9.Text = "Kiểu in";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(11, 36);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(75, 15);
     this.label8.TabIndex = 455;
     this.label8.Text = "Cỡ giấy";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboKieuin
     //
     this.cboKieuin.BackColor = System.Drawing.Color.White;
     this.cboKieuin.BorderStyle = Janus.Windows.UI.BorderStyle.Sunken;
     this.cboKieuin.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.cboKieuin.Font = new System.Drawing.Font("Arial", 9F);
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.IsSeparator = false;
     uiComboBoxItem1.Text = "In nhiệt";
     uiComboBoxItem1.Value = "0";
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator = false;
     uiComboBoxItem2.Text = "In laser";
     uiComboBoxItem2.Value = "1";
     this.cboKieuin.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
     uiComboBoxItem1,
     uiComboBoxItem2});
     this.cboKieuin.Location = new System.Drawing.Point(93, 60);
     this.cboKieuin.Name = "cboKieuin";
     this.cboKieuin.Size = new System.Drawing.Size(273, 21);
     this.cboKieuin.TabIndex = 453;
     this.cboKieuin.TabStop = false;
     this.cboKieuin.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
     //
     // cmdCauhinh
     //
     this.cmdCauhinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdCauhinh.Image")));
     this.cmdCauhinh.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdCauhinh.Location = new System.Drawing.Point(372, 6);
     this.cmdCauhinh.Name = "cmdCauhinh";
     this.cmdCauhinh.Size = new System.Drawing.Size(102, 48);
     this.cmdCauhinh.TabIndex = 546;
     this.cmdCauhinh.TabStop = false;
     this.cmdCauhinh.Text = "Cấu hình thêm";
     //
     // chkInsaukhiluu
     //
     this.chkInsaukhiluu.AutoSize = true;
     this.chkInsaukhiluu.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkInsaukhiluu.Location = new System.Drawing.Point(93, 89);
     this.chkInsaukhiluu.Name = "chkInsaukhiluu";
     this.chkInsaukhiluu.Size = new System.Drawing.Size(302, 19);
     this.chkInsaukhiluu.TabIndex = 451;
     this.chkInsaukhiluu.TabStop = false;
     this.chkInsaukhiluu.Text = "In phiếu khám ngay sau khi thêm mới Bệnh nhân?";
     this.chkInsaukhiluu.UseVisualStyleBackColor = true;
     //
     // cboLaserPrinters
     //
     this.cboLaserPrinters.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboLaserPrinters.FormattingEnabled = true;
     this.cboLaserPrinters.Location = new System.Drawing.Point(93, 6);
     this.cboLaserPrinters.Name = "cboLaserPrinters";
     this.cboLaserPrinters.Size = new System.Drawing.Size(273, 21);
     this.cboLaserPrinters.TabIndex = 449;
     this.cboLaserPrinters.TabStop = false;
     //
     // cboPrintPreview
     //
     this.cboPrintPreview.BackColor = System.Drawing.Color.White;
     this.cboPrintPreview.BorderStyle = Janus.Windows.UI.BorderStyle.Sunken;
     this.cboPrintPreview.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.cboPrintPreview.Font = new System.Drawing.Font("Arial", 9F);
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator = false;
     uiComboBoxItem3.Text = "Xem trước khi in";
     uiComboBoxItem3.Value = "0";
     uiComboBoxItem4.FormatStyle.Alpha = 0;
     uiComboBoxItem4.IsSeparator = false;
     uiComboBoxItem4.Text = "In ngay";
     uiComboBoxItem4.Value = "1";
     this.cboPrintPreview.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
     uiComboBoxItem3,
     uiComboBoxItem4});
     this.cboPrintPreview.Location = new System.Drawing.Point(150, 33);
     this.cboPrintPreview.Name = "cboPrintPreview";
     this.cboPrintPreview.Size = new System.Drawing.Size(216, 21);
     this.cboPrintPreview.TabIndex = 448;
     this.cboPrintPreview.TabStop = false;
     this.cboPrintPreview.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
     //
     // cboA4
     //
     this.cboA4.BackColor = System.Drawing.Color.White;
     this.cboA4.BorderStyle = Janus.Windows.UI.BorderStyle.Sunken;
     this.cboA4.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.cboA4.Font = new System.Drawing.Font("Arial", 9F);
     uiComboBoxItem5.FormatStyle.Alpha = 0;
     uiComboBoxItem5.IsSeparator = false;
     uiComboBoxItem5.Text = "A4";
     uiComboBoxItem5.Value = "A4";
     uiComboBoxItem6.FormatStyle.Alpha = 0;
     uiComboBoxItem6.IsSeparator = false;
     uiComboBoxItem6.Text = "A5";
     uiComboBoxItem6.Value = "A5";
     this.cboA4.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
     uiComboBoxItem5,
     uiComboBoxItem6});
     this.cboA4.Location = new System.Drawing.Point(93, 33);
     this.cboA4.Name = "cboA4";
     this.cboA4.Size = new System.Drawing.Size(55, 21);
     this.cboA4.TabIndex = 447;
     this.cboA4.TabStop = false;
     this.cboA4.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
     //
     // label26
     //
     this.label26.Location = new System.Drawing.Point(11, 9);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(75, 15);
     this.label26.TabIndex = 450;
     this.label26.Text = "Chọn máy in";
     this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // plnAddDvuKCB
     //
     this.plnAddDvuKCB.Controls.Add(this.txtMyNameEdit);
     this.plnAddDvuKCB.Controls.Add(this.panel3);
     this.plnAddDvuKCB.Controls.Add(this.lblDonGia);
     this.plnAddDvuKCB.Controls.Add(this.lblPhuThu);
     this.plnAddDvuKCB.Controls.Add(this.cmdAddDvuKCB);
     this.plnAddDvuKCB.Controls.Add(this.txtIDKieuKham);
     this.plnAddDvuKCB.Controls.Add(this.txtIDPkham);
     this.plnAddDvuKCB.Dock = System.Windows.Forms.DockStyle.Top;
     this.plnAddDvuKCB.Location = new System.Drawing.Point(0, 0);
     this.plnAddDvuKCB.Name = "plnAddDvuKCB";
     this.plnAddDvuKCB.Size = new System.Drawing.Size(485, 44);
     this.plnAddDvuKCB.TabIndex = 0;
     this.plnAddDvuKCB.TabStop = true;
     //
     // txtMyNameEdit
     //
     this.txtMyNameEdit.BackColor = System.Drawing.Color.White;
     this.txtMyNameEdit.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMyNameEdit.Location = new System.Drawing.Point(2, 17);
     this.txtMyNameEdit.Name = "txtMyNameEdit";
     this.txtMyNameEdit.Size = new System.Drawing.Size(10, 23);
     this.txtMyNameEdit.TabIndex = 549;
     this.txtMyNameEdit.TabStop = false;
     this.txtMyNameEdit.Visible = false;
     //
     // panel3
     //
     this.panel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.panel3.Controls.Add(this.pnlGoMaDvu);
     this.panel3.Controls.Add(this.pnlKieuPhongkham);
     this.panel3.Location = new System.Drawing.Point(10, 6);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(434, 34);
     this.panel3.TabIndex = 548;
     //
     // pnlGoMaDvu
     //
     this.pnlGoMaDvu.Controls.Add(this.txtExamtypeCode);
     this.pnlGoMaDvu.Controls.Add(this.cboKieuKham);
     this.pnlGoMaDvu.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlGoMaDvu.Location = new System.Drawing.Point(0, 0);
     this.pnlGoMaDvu.Name = "pnlGoMaDvu";
     this.pnlGoMaDvu.Size = new System.Drawing.Size(434, 34);
     this.pnlGoMaDvu.TabIndex = 549;
     this.pnlGoMaDvu.TabStop = true;
     //
     // txtExamtypeCode
     //
     this.txtExamtypeCode._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.txtExamtypeCode._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtExamtypeCode.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtExamtypeCode.AutoCompleteList")));
     this.txtExamtypeCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtExamtypeCode.CaseSensitive = false;
     this.txtExamtypeCode.CompareNoID = true;
     this.txtExamtypeCode.DefaultCode = "-1";
     this.txtExamtypeCode.DefaultID = "-1";
     this.txtExamtypeCode.Drug_ID = null;
     this.txtExamtypeCode.ExtraWidth = 374;
     this.txtExamtypeCode.FillValueAfterSelect = false;
     this.txtExamtypeCode.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtExamtypeCode.Location = new System.Drawing.Point(4, 6);
     this.txtExamtypeCode.MaxHeight = 289;
     this.txtExamtypeCode.MinTypedCharacters = 2;
     this.txtExamtypeCode.MyCode = "-1";
     this.txtExamtypeCode.MyID = "-1";
     this.txtExamtypeCode.Name = "txtExamtypeCode";
     this.txtExamtypeCode.RaiseEvent = true;
     this.txtExamtypeCode.RaiseEventEnter = false;
     this.txtExamtypeCode.RaiseEventEnterWhenEmpty = false;
     this.txtExamtypeCode.SelectedIndex = -1;
     this.txtExamtypeCode.Size = new System.Drawing.Size(93, 21);
     this.txtExamtypeCode.splitChar = '@';
     this.txtExamtypeCode.splitCharIDAndCode = '#';
     this.txtExamtypeCode.TabIndex = 9;
     this.txtExamtypeCode.TakeCode = true;
     this.txtExamtypeCode.txtMyCode = null;
     this.txtExamtypeCode.txtMyCode_Edit = null;
     this.txtExamtypeCode.txtMyID = null;
     this.txtExamtypeCode.txtMyID_Edit = this.txtIDKieuKham;
     this.txtExamtypeCode.txtMyName = null;
     this.txtExamtypeCode.txtMyName_Edit = this.txtMyNameEdit;
     this.txtExamtypeCode.txtNext = null;
     //
     // txtIDKieuKham
     //
     this.txtIDKieuKham.BackColor = System.Drawing.Color.White;
     this.txtIDKieuKham.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtIDKieuKham.Location = new System.Drawing.Point(25, 43);
     this.txtIDKieuKham.Name = "txtIDKieuKham";
     this.txtIDKieuKham.Size = new System.Drawing.Size(12, 23);
     this.txtIDKieuKham.TabIndex = 543;
     this.txtIDKieuKham.TabStop = false;
     this.txtIDKieuKham.Visible = false;
     //
     // cboKieuKham
     //
     this.cboKieuKham.AllowDrop = true;
     this.cboKieuKham.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.cboKieuKham.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     cboKieuKham_DesignTimeLayout.LayoutString = resources.GetString("cboKieuKham_DesignTimeLayout.LayoutString");
     this.cboKieuKham.DesignTimeLayout = cboKieuKham_DesignTimeLayout;
     this.cboKieuKham.DisplayMember = "_name";
     this.cboKieuKham.HoverMode = Janus.Windows.GridEX.HoverMode.Highlight;
     this.cboKieuKham.Location = new System.Drawing.Point(99, 6);
     this.cboKieuKham.Name = "cboKieuKham";
     this.cboKieuKham.SelectedIndex = -1;
     this.cboKieuKham.SelectedItem = null;
     this.cboKieuKham.Size = new System.Drawing.Size(332, 20);
     this.cboKieuKham.TabIndex = 10;
     this.cboKieuKham.Text = "CHỌN DỊCH VỤ KCB";
     this.cboKieuKham.ValueMember = "ID";
     this.cboKieuKham.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // pnlKieuPhongkham
     //
     this.pnlKieuPhongkham.Controls.Add(this.label35);
     this.pnlKieuPhongkham.Controls.Add(this.txtKieuKham);
     this.pnlKieuPhongkham.Controls.Add(this.label23);
     this.pnlKieuPhongkham.Controls.Add(this.txtPhongkham);
     this.pnlKieuPhongkham.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlKieuPhongkham.Location = new System.Drawing.Point(0, 0);
     this.pnlKieuPhongkham.Name = "pnlKieuPhongkham";
     this.pnlKieuPhongkham.Size = new System.Drawing.Size(434, 34);
     this.pnlKieuPhongkham.TabIndex = 547;
     this.pnlKieuPhongkham.TabStop = true;
     //
     // label35
     //
     this.label35.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label35.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label35.Location = new System.Drawing.Point(9, 6);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(88, 21);
     this.label35.TabIndex = 541;
     this.label35.Text = "Dịch vụ khám:";
     this.label35.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtKieuKham
     //
     this.txtKieuKham._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.txtKieuKham._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtKieuKham.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtKieuKham.AutoCompleteList")));
     this.txtKieuKham.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtKieuKham.CaseSensitive = false;
     this.txtKieuKham.CompareNoID = true;
     this.txtKieuKham.DefaultCode = "-1";
     this.txtKieuKham.DefaultID = "-1";
     this.txtKieuKham.Drug_ID = null;
     this.txtKieuKham.ExtraWidth = 0;
     this.txtKieuKham.FillValueAfterSelect = false;
     this.txtKieuKham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtKieuKham.Location = new System.Drawing.Point(100, 7);
     this.txtKieuKham.MaxHeight = 289;
     this.txtKieuKham.MinTypedCharacters = 2;
     this.txtKieuKham.MyCode = "-1";
     this.txtKieuKham.MyID = "-1";
     this.txtKieuKham.Name = "txtKieuKham";
     this.txtKieuKham.RaiseEvent = true;
     this.txtKieuKham.RaiseEventEnter = false;
     this.txtKieuKham.RaiseEventEnterWhenEmpty = false;
     this.txtKieuKham.SelectedIndex = -1;
     this.txtKieuKham.Size = new System.Drawing.Size(188, 21);
     this.txtKieuKham.splitChar = '@';
     this.txtKieuKham.splitCharIDAndCode = '#';
     this.txtKieuKham.TabIndex = 7;
     this.txtKieuKham.TakeCode = false;
     this.txtKieuKham.txtMyCode = null;
     this.txtKieuKham.txtMyCode_Edit = null;
     this.txtKieuKham.txtMyID = null;
     this.txtKieuKham.txtMyID_Edit = this.txtIDKieuKham;
     this.txtKieuKham.txtMyName = null;
     this.txtKieuKham.txtMyName_Edit = null;
     this.txtKieuKham.txtNext = null;
     //
     // label23
     //
     this.label23.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label23.Location = new System.Drawing.Point(277, 6);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(98, 21);
     this.label23.TabIndex = 542;
     this.label23.Text = "Phòng khám:";
     this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtPhongkham
     //
     this.txtPhongkham._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.txtPhongkham._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPhongkham.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPhongkham.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtPhongkham.AutoCompleteList")));
     this.txtPhongkham.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtPhongkham.CaseSensitive = false;
     this.txtPhongkham.CompareNoID = true;
     this.txtPhongkham.DefaultCode = "-1";
     this.txtPhongkham.DefaultID = "-1";
     this.txtPhongkham.Drug_ID = null;
     this.txtPhongkham.ExtraWidth = 0;
     this.txtPhongkham.FillValueAfterSelect = false;
     this.txtPhongkham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPhongkham.Location = new System.Drawing.Point(381, 6);
     this.txtPhongkham.MaxHeight = 289;
     this.txtPhongkham.MinTypedCharacters = 2;
     this.txtPhongkham.MyCode = "-1";
     this.txtPhongkham.MyID = "-1";
     this.txtPhongkham.Name = "txtPhongkham";
     this.txtPhongkham.RaiseEvent = true;
     this.txtPhongkham.RaiseEventEnter = false;
     this.txtPhongkham.RaiseEventEnterWhenEmpty = false;
     this.txtPhongkham.SelectedIndex = -1;
     this.txtPhongkham.Size = new System.Drawing.Size(50, 21);
     this.txtPhongkham.splitChar = '@';
     this.txtPhongkham.splitCharIDAndCode = '#';
     this.txtPhongkham.TabIndex = 8;
     this.txtPhongkham.TakeCode = false;
     this.txtPhongkham.txtMyCode = null;
     this.txtPhongkham.txtMyCode_Edit = null;
     this.txtPhongkham.txtMyID = null;
     this.txtPhongkham.txtMyID_Edit = this.txtIDPkham;
     this.txtPhongkham.txtMyName = null;
     this.txtPhongkham.txtMyName_Edit = null;
     this.txtPhongkham.txtNext = null;
     //
     // txtIDPkham
     //
     this.txtIDPkham.BackColor = System.Drawing.Color.White;
     this.txtIDPkham.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtIDPkham.Location = new System.Drawing.Point(43, 43);
     this.txtIDPkham.Name = "txtIDPkham";
     this.txtIDPkham.Size = new System.Drawing.Size(10, 23);
     this.txtIDPkham.TabIndex = 544;
     this.txtIDPkham.TabStop = false;
     this.txtIDPkham.Visible = false;
     //
     // lblDonGia
     //
     this.lblDonGia.AutoSize = true;
     this.lblDonGia.Location = new System.Drawing.Point(264, 49);
     this.lblDonGia.Name = "lblDonGia";
     this.lblDonGia.Size = new System.Drawing.Size(13, 13);
     this.lblDonGia.TabIndex = 546;
     this.lblDonGia.Text = "0";
     //
     // lblPhuThu
     //
     this.lblPhuThu.AutoSize = true;
     this.lblPhuThu.Location = new System.Drawing.Point(111, 49);
     this.lblPhuThu.Name = "lblPhuThu";
     this.lblPhuThu.Size = new System.Drawing.Size(13, 13);
     this.lblPhuThu.TabIndex = 545;
     this.lblPhuThu.Text = "0";
     //
     // cmdAddDvuKCB
     //
     this.cmdAddDvuKCB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdAddDvuKCB.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdAddDvuKCB.Image = ((System.Drawing.Image)(resources.GetObject("cmdAddDvuKCB.Image")));
     this.cmdAddDvuKCB.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdAddDvuKCB.Location = new System.Drawing.Point(450, 7);
     this.cmdAddDvuKCB.Name = "cmdAddDvuKCB";
     this.cmdAddDvuKCB.Size = new System.Drawing.Size(29, 27);
     this.cmdAddDvuKCB.TabIndex = 11;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuMaDVu});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(280, 26);
     //
     // mnuMaDVu
     //
     this.mnuMaDVu.CheckOnClick = true;
     this.mnuMaDVu.Name = "mnuMaDVu";
     this.mnuMaDVu.Size = new System.Drawing.Size(279, 22);
     this.mnuMaDVu.Text = "Đăng ký dịch vụ KCB bằng cách gõ mã";
     //
     // uiStatusBar1
     //
     this.uiStatusBar1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiStatusBar1.Location = new System.Drawing.Point(0, 713);
     this.uiStatusBar1.Name = "uiStatusBar1";
     uiStatusBarPanel1.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel1.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel1.Key = "";
     uiStatusBarPanel1.ProgressBarValue = 0;
     uiStatusBarPanel1.Text = "Ctrl+N: Thêm mới";
     uiStatusBarPanel1.Width = 113;
     uiStatusBarPanel2.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel2.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel2.Key = "";
     uiStatusBarPanel2.ProgressBarValue = 0;
     uiStatusBarPanel2.Text = "Ctrl+U: Cập nhật";
     uiStatusBarPanel2.Width = 106;
     uiStatusBarPanel3.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel3.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel3.Key = "";
     uiStatusBarPanel3.ProgressBarValue = 0;
     uiStatusBarPanel3.Text = "Ctrl+D: Xóa";
     uiStatusBarPanel3.Width = 77;
     uiStatusBarPanel4.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel4.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel4.Key = "";
     uiStatusBarPanel4.ProgressBarValue = 0;
     uiStatusBarPanel4.Text = "Ctrl+K: Thêm khám";
     uiStatusBarPanel4.Width = 121;
     uiStatusBarPanel5.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel5.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel5.Key = "";
     uiStatusBarPanel5.ProgressBarValue = 0;
     uiStatusBarPanel5.Text = "Esc: Thoát Form";
     uiStatusBarPanel5.Width = 105;
     this.uiStatusBar1.Panels.AddRange(new Janus.Windows.UI.StatusBar.UIStatusBarPanel[] {
     uiStatusBarPanel1,
     uiStatusBarPanel2,
     uiStatusBarPanel3,
     uiStatusBarPanel4,
     uiStatusBarPanel5});
     this.uiStatusBar1.Size = new System.Drawing.Size(1018, 27);
     this.uiStatusBar1.TabIndex = 7;
     this.uiStatusBar1.TabStop = false;
     this.uiStatusBar1.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
     //
     // uiGroupBox1
     //
     this.uiGroupBox1.Controls.Add(this.lblTongSo);
     this.uiGroupBox1.Controls.Add(this.cboObjectType);
     this.uiGroupBox1.Controls.Add(this.radTatCa);
     this.uiGroupBox1.Controls.Add(this.radNoiTru);
     this.uiGroupBox1.Controls.Add(this.radNgoaiTru);
     this.uiGroupBox1.Controls.Add(this.label4);
     this.uiGroupBox1.Controls.Add(this.txtPatientCode);
     this.uiGroupBox1.Controls.Add(this.label2);
     this.uiGroupBox1.Controls.Add(this.txtPatient_ID);
     this.uiGroupBox1.Controls.Add(this.Label7);
     this.uiGroupBox1.Controls.Add(this.txtPatientName);
     this.uiGroupBox1.Controls.Add(this.label3);
     this.uiGroupBox1.Controls.Add(this.dtmTo);
     this.uiGroupBox1.Controls.Add(this.dtmFrom);
     this.uiGroupBox1.Controls.Add(this.chkByDate);
     this.uiGroupBox1.Controls.Add(this.Label1);
     this.uiGroupBox1.Controls.Add(this.cmdTimKiem);
     this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
     this.uiGroupBox1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox1.Location = new System.Drawing.Point(0, 31);
     this.uiGroupBox1.Name = "uiGroupBox1";
     this.uiGroupBox1.Size = new System.Drawing.Size(1018, 72);
     this.uiGroupBox1.TabIndex = 1;
     //
     // lblTongSo
     //
     this.lblTongSo.AutoSize = true;
     this.lblTongSo.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTongSo.Location = new System.Drawing.Point(12, 95);
     this.lblTongSo.Name = "lblTongSo";
     this.lblTongSo.Size = new System.Drawing.Size(127, 17);
     this.lblTongSo.TabIndex = 1;
     this.lblTongSo.Text = "&Tổng số bản ghi :0";
     //
     // cboObjectType
     //
     this.cboObjectType.Location = new System.Drawing.Point(482, 42);
     this.cboObjectType.Name = "cboObjectType";
     this.cboObjectType.Size = new System.Drawing.Size(327, 21);
     this.cboObjectType.TabIndex = 5;
     this.cboObjectType.TabStop = false;
     this.cboObjectType.Text = "Đối tượng";
     //
     // radTatCa
     //
     this.radTatCa.Checked = true;
     this.radTatCa.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radTatCa.ForeColor = System.Drawing.Color.Navy;
     this.radTatCa.Location = new System.Drawing.Point(94, 73);
     this.radTatCa.Name = "radTatCa";
     this.radTatCa.Size = new System.Drawing.Size(59, 27);
     this.radTatCa.TabIndex = 521;
     this.radTatCa.TabStop = true;
     this.radTatCa.Text = "&Tất cả";
     //
     // radNoiTru
     //
     this.radNoiTru.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radNoiTru.ForeColor = System.Drawing.Color.Navy;
     this.radNoiTru.Location = new System.Drawing.Point(248, 73);
     this.radNoiTru.Name = "radNoiTru";
     this.radNoiTru.Size = new System.Drawing.Size(80, 27);
     this.radNoiTru.TabIndex = 520;
     this.radNoiTru.Text = "&Nội trú";
     //
     // radNgoaiTru
     //
     this.radNgoaiTru.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radNgoaiTru.ForeColor = System.Drawing.Color.Navy;
     this.radNgoaiTru.Location = new System.Drawing.Point(159, 73);
     this.radNgoaiTru.Name = "radNgoaiTru";
     this.radNgoaiTru.Size = new System.Drawing.Size(78, 27);
     this.radNgoaiTru.TabIndex = 519;
     this.radNgoaiTru.Text = "&Ngoại trú";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(588, 17);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(77, 15);
     this.label4.TabIndex = 518;
     this.label4.Text = "Mã lần khám";
     //
     // txtPatientCode
     //
     this.txtPatientCode.BackColor = System.Drawing.Color.White;
     this.txtPatientCode.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPatientCode.Location = new System.Drawing.Point(671, 13);
     this.txtPatientCode.Name = "txtPatientCode";
     this.txtPatientCode.Size = new System.Drawing.Size(138, 21);
     this.txtPatientCode.TabIndex = 3;
     this.txtPatientCode.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(414, 17);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(43, 15);
     this.label2.TabIndex = 516;
     this.label2.Text = "Mã BN";
     //
     // txtPatient_ID
     //
     this.txtPatient_ID.BackColor = System.Drawing.Color.White;
     this.txtPatient_ID.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPatient_ID.Location = new System.Drawing.Point(482, 13);
     this.txtPatient_ID.Name = "txtPatient_ID";
     this.txtPatient_ID.Numeric = true;
     this.txtPatient_ID.Size = new System.Drawing.Size(102, 21);
     this.txtPatient_ID.TabIndex = 2;
     this.txtPatient_ID.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // Label7
     //
     this.Label7.AutoSize = true;
     this.Label7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label7.Location = new System.Drawing.Point(414, 47);
     this.Label7.Name = "Label7";
     this.Label7.Size = new System.Drawing.Size(62, 15);
     this.Label7.TabIndex = 514;
     this.Label7.Text = "Đối tượng";
     //
     // txtPatientName
     //
     this.txtPatientName.BackColor = System.Drawing.Color.White;
     this.txtPatientName.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPatientName.Location = new System.Drawing.Point(94, 41);
     this.txtPatientName.Name = "txtPatientName";
     this.txtPatientName.Size = new System.Drawing.Size(313, 23);
     this.txtPatientName.TabIndex = 4;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location = new System.Drawing.Point(23, 45);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(54, 15);
     this.label3.TabIndex = 511;
     this.label3.Text = "Tên BN :";
     this.label3.Click += new System.EventHandler(this.label3_Click);
     //
     // dtmTo
     //
     this.dtmTo.CustomFormat = "dd/MM/yyyy";
     this.dtmTo.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtmTo.DropDownCalendar.Name = "";
     this.dtmTo.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Standard;
     this.dtmTo.Location = new System.Drawing.Point(277, 14);
     this.dtmTo.MinDate = new System.DateTime(1900, 2, 1, 0, 0, 0, 0);
     this.dtmTo.Name = "dtmTo";
     this.dtmTo.ShowUpDown = true;
     this.dtmTo.Size = new System.Drawing.Size(130, 21);
     this.dtmTo.TabIndex = 1;
     this.dtmTo.Value = new System.DateTime(2011, 10, 20, 0, 0, 0, 0);
     //
     // dtmFrom
     //
     this.dtmFrom.CustomFormat = "dd/MM/yyyy";
     this.dtmFrom.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtmFrom.DropDownCalendar.Name = "";
     this.dtmFrom.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Standard;
     this.dtmFrom.Location = new System.Drawing.Point(94, 14);
     this.dtmFrom.MinDate = new System.DateTime(1900, 2, 1, 0, 0, 0, 0);
     this.dtmFrom.Name = "dtmFrom";
     this.dtmFrom.ShowUpDown = true;
     this.dtmFrom.Size = new System.Drawing.Size(117, 21);
     this.dtmFrom.TabIndex = 0;
     this.dtmFrom.Value = new System.DateTime(2011, 10, 20, 0, 0, 0, 0);
     //
     // chkByDate
     //
     this.chkByDate.AutoSize = true;
     this.chkByDate.Checked = true;
     this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkByDate.Location = new System.Drawing.Point(15, 15);
     this.chkByDate.Name = "chkByDate";
     this.chkByDate.Size = new System.Drawing.Size(76, 19);
     this.chkByDate.TabIndex = 241;
     this.chkByDate.Text = "Từ ngày :";
     this.chkByDate.UseVisualStyleBackColor = true;
     //
     // Label1
     //
     this.Label1.AutoSize = true;
     this.Label1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.ForeColor = System.Drawing.Color.Black;
     this.Label1.Location = new System.Drawing.Point(217, 19);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(59, 15);
     this.Label1.TabIndex = 240;
     this.Label1.Text = "Đến ngày";
     //
     // cmdTimKiem
     //
     this.cmdTimKiem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdTimKiem.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdTimKiem.Image = ((System.Drawing.Image)(resources.GetObject("cmdTimKiem.Image")));
     this.cmdTimKiem.ImageSize = new System.Drawing.Size(32, 32);
     this.cmdTimKiem.Location = new System.Drawing.Point(844, 20);
     this.cmdTimKiem.Name = "cmdTimKiem";
     this.cmdTimKiem.Size = new System.Drawing.Size(162, 40);
     this.cmdTimKiem.TabIndex = 6;
     this.cmdTimKiem.Text = "&Tìm kiếm (F3)";
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // uiGroupBox2
     //
     this.uiGroupBox2.Controls.Add(this.grdList);
     this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.uiGroupBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox2.Location = new System.Drawing.Point(0, 0);
     this.uiGroupBox2.Name = "uiGroupBox2";
     this.uiGroupBox2.Size = new System.Drawing.Size(531, 610);
     this.uiGroupBox2.TabIndex = 2;
     this.uiGroupBox2.Text = "Danh sách Bệnh nhân đăng ký KCB";
     //
     // grdList
     //
     this.grdList.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     this.grdList.BackColor = System.Drawing.Color.Silver;
     this.grdList.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><FilterRowInfoText>Lọc" +
     " thông tin bệnh nhân</FilterRowInfoText></LocalizableData>";
     grdList_DesignTimeLayout.LayoutString = resources.GetString("grdList_DesignTimeLayout.LayoutString");
     this.grdList.DesignTimeLayout = grdList_DesignTimeLayout;
     this.grdList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdList.DynamicFiltering = true;
     this.grdList.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
     this.grdList.FocusCellDisplayMode = Janus.Windows.GridEX.FocusCellDisplayMode.UseSelectedFormatStyle;
     this.grdList.FocusCellFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.grdList.FocusCellFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
     this.grdList.FocusCellFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
     this.grdList.Font = new System.Drawing.Font("Arial", 9F);
     this.grdList.FrozenColumns = 3;
     this.grdList.GroupByBoxVisible = false;
     this.grdList.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdList.Location = new System.Drawing.Point(3, 17);
     this.grdList.Name = "grdList";
     this.grdList.RecordNavigator = true;
     this.grdList.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
     this.grdList.Size = new System.Drawing.Size(525, 590);
     this.grdList.TabIndex = 0;
     this.grdList.TabStop = false;
     this.grdList.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.uiGroupBox2);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 103);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(531, 610);
     this.panel1.TabIndex = 547;
     //
     // toolTip1
     //
     this.toolTip1.IsBalloon = true;
     this.toolTip1.ToolTipTitle = "Trợ giúp nhanh:";
     //
     // frm_TimKiemBN
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(1018, 740);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.tabChiDinh);
     this.Controls.Add(this.uiStatusBar1);
     this.Controls.Add(this.uiGroupBox1);
     this.Controls.Add(this.toolStrip1);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frm_TimKiemBN";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Thông tin tiếp đón bệnh nhân";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frm_TimKiemBN_Load);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabChiDinh)).EndInit();
     this.tabChiDinh.ResumeLayout(false);
     this.tabPageChiDinh.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox4)).EndInit();
     this.uiGroupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdAssignDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox5)).EndInit();
     this.uiGroupBox5.ResumeLayout(false);
     this.uiGroupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).EndInit();
     this.uiGroupBox3.ResumeLayout(false);
     this.uiGroupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdRegExam)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.pnlnutchucnang.ResumeLayout(false);
     this.pnlPrint.ResumeLayout(false);
     this.plnAddDvuKCB.ResumeLayout(false);
     this.plnAddDvuKCB.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.pnlGoMaDvu.ResumeLayout(false);
     this.pnlGoMaDvu.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboKieuKham)).EndInit();
     this.pnlKieuPhongkham.ResumeLayout(false);
     this.pnlKieuPhongkham.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
     this.uiGroupBox1.ResumeLayout(false);
     this.uiGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
     this.uiGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_Quanly_Maukiemnghiem));
     Janus.Windows.GridEX.GridEXLayout grdAssignDetail_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel1 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel2 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel3 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel4 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel5 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.cmdThemMoiBN = new System.Windows.Forms.ToolStripButton();
     this.cmdSuaThongTinBN = new System.Windows.Forms.ToolStripButton();
     this.cmdThemLanKham = new System.Windows.Forms.ToolStripButton();
     this.cmdXoaBenhNhan = new System.Windows.Forms.ToolStripButton();
     this.cmdExit = new System.Windows.Forms.ToolStripButton();
     this.grdAssignDetail = new Janus.Windows.GridEX.GridEX();
     this.uiGroupBox3 = new Janus.Windows.EditControls.UIGroupBox();
     this.cmdPrintAssign = new Janus.Windows.EditControls.UIButton();
     this.chkIntach = new System.Windows.Forms.CheckBox();
     this.cboServicePrint = new System.Windows.Forms.ComboBox();
     this.cmdXoaChiDinh = new Janus.Windows.EditControls.UIButton();
     this.cmdSuaChiDinh = new Janus.Windows.EditControls.UIButton();
     this.cmdThemChiDinh = new Janus.Windows.EditControls.UIButton();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mnuMaDVu = new System.Windows.Forms.ToolStripMenuItem();
     this.uiStatusBar1 = new Janus.Windows.UI.StatusBar.UIStatusBar();
     this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
     this.cboObjectType = new Janus.Windows.EditControls.UIComboBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtPatientCode = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtPatient_ID = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.Label7 = new System.Windows.Forms.Label();
     this.txtPatientName = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label3 = new System.Windows.Forms.Label();
     this.dtmTo = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtmFrom = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.chkByDate = new System.Windows.Forms.CheckBox();
     this.Label1 = new System.Windows.Forms.Label();
     this.cmdTimKiem = new Janus.Windows.EditControls.UIButton();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.panel2 = new System.Windows.Forms.Panel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.grdList = new Janus.Windows.GridEX.GridEX();
     this.cmdBangiao = new System.Windows.Forms.ToolStripButton();
     this.cmdInKQ = new System.Windows.Forms.ToolStripButton();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdAssignDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).BeginInit();
     this.uiGroupBox3.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
     this.uiGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.panel2.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.BackColor = System.Drawing.SystemColors.Control;
     this.toolStrip1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.cmdThemMoiBN,
     this.cmdSuaThongTinBN,
     this.cmdThemLanKham,
     this.cmdXoaBenhNhan,
     this.cmdBangiao,
     this.cmdInKQ,
     this.cmdExit});
     this.toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(1018, 31);
     this.toolStrip1.TabIndex = 0;
     this.toolStrip1.Text = "toolStrip1";
     //
     // cmdThemMoiBN
     //
     this.cmdThemMoiBN.BackColor = System.Drawing.SystemColors.Control;
     this.cmdThemMoiBN.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdThemMoiBN.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemMoiBN.Image")));
     this.cmdThemMoiBN.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdThemMoiBN.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdThemMoiBN.Name = "cmdThemMoiBN";
     this.cmdThemMoiBN.Size = new System.Drawing.Size(136, 28);
     this.cmdThemMoiBN.Text = "Thêm Khách hàng";
     this.cmdThemMoiBN.ToolTipText = "Nhấn vào đây để tiếp đón Bệnh nhân mới";
     //
     // cmdSuaThongTinBN
     //
     this.cmdSuaThongTinBN.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdSuaThongTinBN.Image = ((System.Drawing.Image)(resources.GetObject("cmdSuaThongTinBN.Image")));
     this.cmdSuaThongTinBN.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdSuaThongTinBN.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdSuaThongTinBN.Name = "cmdSuaThongTinBN";
     this.cmdSuaThongTinBN.Size = new System.Drawing.Size(127, 28);
     this.cmdSuaThongTinBN.Text = "Sửa Khách hàng";
     this.cmdSuaThongTinBN.ToolTipText = "Nhấn vào nút này để sửa thông tin Bệnh nhân đang chọn trên lưới";
     //
     // cmdThemLanKham
     //
     this.cmdThemLanKham.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdThemLanKham.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemLanKham.Image")));
     this.cmdThemLanKham.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdThemLanKham.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdThemLanKham.Name = "cmdThemLanKham";
     this.cmdThemLanKham.Size = new System.Drawing.Size(112, 28);
     this.cmdThemLanKham.Text = "Thêm đăng ký";
     this.cmdThemLanKham.ToolTipText = "Nhấn nút này để thêm lần khám cho Bệnh nhân đang chọn trên lưới";
     //
     // cmdXoaBenhNhan
     //
     this.cmdXoaBenhNhan.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdXoaBenhNhan.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoaBenhNhan.Image")));
     this.cmdXoaBenhNhan.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdXoaBenhNhan.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdXoaBenhNhan.Name = "cmdXoaBenhNhan";
     this.cmdXoaBenhNhan.Size = new System.Drawing.Size(101, 28);
     this.cmdXoaBenhNhan.Text = "Xóa đăng ký";
     this.cmdXoaBenhNhan.ToolTipText = "Nhấn nút này để xóa lần khám của Bệnh nhân đang chọn trên lưới";
     //
     // cmdExit
     //
     this.cmdExit.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdExit.Image = ((System.Drawing.Image)(resources.GetObject("cmdExit.Image")));
     this.cmdExit.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdExit.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdExit.Name = "cmdExit";
     this.cmdExit.Size = new System.Drawing.Size(118, 28);
     this.cmdExit.Text = "Đóng chức năng";
     this.cmdExit.ToolTipText = "Nhấn nút này để thoát khỏi chức năng ";
     //
     // grdAssignDetail
     //
     this.grdAssignDetail.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     this.grdAssignDetail.BackColor = System.Drawing.Color.Silver;
     grdAssignDetail_DesignTimeLayout.LayoutString = resources.GetString("grdAssignDetail_DesignTimeLayout.LayoutString");
     this.grdAssignDetail.DesignTimeLayout = grdAssignDetail_DesignTimeLayout;
     this.grdAssignDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdAssignDetail.Font = new System.Drawing.Font("Arial", 9F);
     this.grdAssignDetail.GroupByBoxVisible = false;
     this.grdAssignDetail.GroupTotals = Janus.Windows.GridEX.GroupTotals.Always;
     this.grdAssignDetail.Location = new System.Drawing.Point(0, 0);
     this.grdAssignDetail.Name = "grdAssignDetail";
     this.grdAssignDetail.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdAssignDetail.Size = new System.Drawing.Size(406, 520);
     this.grdAssignDetail.TabIndex = 0;
     this.grdAssignDetail.TabStop = false;
     this.grdAssignDetail.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdAssignDetail.TotalRowFormatStyle.BackColor = System.Drawing.Color.White;
     this.grdAssignDetail.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdAssignDetail.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // uiGroupBox3
     //
     this.uiGroupBox3.Controls.Add(this.cmdPrintAssign);
     this.uiGroupBox3.Controls.Add(this.chkIntach);
     this.uiGroupBox3.Controls.Add(this.cboServicePrint);
     this.uiGroupBox3.Controls.Add(this.cmdXoaChiDinh);
     this.uiGroupBox3.Controls.Add(this.cmdSuaChiDinh);
     this.uiGroupBox3.Controls.Add(this.cmdThemChiDinh);
     this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.uiGroupBox3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox3.Location = new System.Drawing.Point(0, 520);
     this.uiGroupBox3.Name = "uiGroupBox3";
     this.uiGroupBox3.Size = new System.Drawing.Size(406, 91);
     this.uiGroupBox3.TabIndex = 0;
     //
     // cmdPrintAssign
     //
     this.cmdPrintAssign.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdPrintAssign.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdPrintAssign.Image = ((System.Drawing.Image)(resources.GetObject("cmdPrintAssign.Image")));
     this.cmdPrintAssign.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdPrintAssign.Location = new System.Drawing.Point(322, 57);
     this.cmdPrintAssign.Name = "cmdPrintAssign";
     this.cmdPrintAssign.Size = new System.Drawing.Size(85, 28);
     this.cmdPrintAssign.TabIndex = 706;
     this.cmdPrintAssign.Text = "In";
     this.toolTip1.SetToolTip(this.cmdPrintAssign, "Nhấn vào đây để in phiếu CLS(Phím tắt Ctrl+P)");
     //
     // chkIntach
     //
     this.chkIntach.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.chkIntach.AutoSize = true;
     this.chkIntach.Location = new System.Drawing.Point(6, 15);
     this.chkIntach.Name = "chkIntach";
     this.chkIntach.Size = new System.Drawing.Size(69, 19);
     this.chkIntach.TabIndex = 705;
     this.chkIntach.Text = "In tách?";
     this.chkIntach.UseVisualStyleBackColor = true;
     //
     // cboServicePrint
     //
     this.cboServicePrint.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.cboServicePrint.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboServicePrint.FormattingEnabled = true;
     this.cboServicePrint.Location = new System.Drawing.Point(82, 11);
     this.cboServicePrint.Name = "cboServicePrint";
     this.cboServicePrint.Size = new System.Drawing.Size(318, 23);
     this.cboServicePrint.TabIndex = 704;
     //
     // cmdXoaChiDinh
     //
     this.cmdXoaChiDinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdXoaChiDinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdXoaChiDinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoaChiDinh.Image")));
     this.cmdXoaChiDinh.ImageSize = new System.Drawing.Size(18, 18);
     this.cmdXoaChiDinh.Location = new System.Drawing.Point(232, 57);
     this.cmdXoaChiDinh.Name = "cmdXoaChiDinh";
     this.cmdXoaChiDinh.Size = new System.Drawing.Size(85, 29);
     this.cmdXoaChiDinh.TabIndex = 702;
     this.cmdXoaChiDinh.TabStop = false;
     this.cmdXoaChiDinh.Text = "Xóa";
     //
     // cmdSuaChiDinh
     //
     this.cmdSuaChiDinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdSuaChiDinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdSuaChiDinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdSuaChiDinh.Image")));
     this.cmdSuaChiDinh.ImageSize = new System.Drawing.Size(18, 18);
     this.cmdSuaChiDinh.Location = new System.Drawing.Point(141, 57);
     this.cmdSuaChiDinh.Name = "cmdSuaChiDinh";
     this.cmdSuaChiDinh.Size = new System.Drawing.Size(85, 29);
     this.cmdSuaChiDinh.TabIndex = 701;
     this.cmdSuaChiDinh.TabStop = false;
     this.cmdSuaChiDinh.Text = "Sửa";
     //
     // cmdThemChiDinh
     //
     this.cmdThemChiDinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdThemChiDinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdThemChiDinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemChiDinh.Image")));
     this.cmdThemChiDinh.ImageSize = new System.Drawing.Size(18, 18);
     this.cmdThemChiDinh.Location = new System.Drawing.Point(50, 56);
     this.cmdThemChiDinh.Name = "cmdThemChiDinh";
     this.cmdThemChiDinh.Size = new System.Drawing.Size(85, 29);
     this.cmdThemChiDinh.TabIndex = 700;
     this.cmdThemChiDinh.TabStop = false;
     this.cmdThemChiDinh.Text = "Thêm";
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuMaDVu});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(280, 26);
     //
     // mnuMaDVu
     //
     this.mnuMaDVu.CheckOnClick = true;
     this.mnuMaDVu.Name = "mnuMaDVu";
     this.mnuMaDVu.Size = new System.Drawing.Size(279, 22);
     this.mnuMaDVu.Text = "Đăng ký dịch vụ KCB bằng cách gõ mã";
     //
     // uiStatusBar1
     //
     this.uiStatusBar1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiStatusBar1.Location = new System.Drawing.Point(0, 713);
     this.uiStatusBar1.Name = "uiStatusBar1";
     uiStatusBarPanel1.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel1.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel1.Key = "";
     uiStatusBarPanel1.ProgressBarValue = 0;
     uiStatusBarPanel1.Text = "Ctrl+N: Thêm mới";
     uiStatusBarPanel1.Width = 113;
     uiStatusBarPanel2.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel2.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel2.Key = "";
     uiStatusBarPanel2.ProgressBarValue = 0;
     uiStatusBarPanel2.Text = "Ctrl+U: Cập nhật";
     uiStatusBarPanel2.Width = 106;
     uiStatusBarPanel3.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel3.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel3.Key = "";
     uiStatusBarPanel3.ProgressBarValue = 0;
     uiStatusBarPanel3.Text = "Ctrl+D: Xóa";
     uiStatusBarPanel3.Width = 77;
     uiStatusBarPanel4.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel4.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel4.Key = "";
     uiStatusBarPanel4.ProgressBarValue = 0;
     uiStatusBarPanel4.Text = "Ctrl+K: Thêm khám";
     uiStatusBarPanel4.Width = 121;
     uiStatusBarPanel5.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel5.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel5.Key = "";
     uiStatusBarPanel5.ProgressBarValue = 0;
     uiStatusBarPanel5.Text = "Esc: Thoát Form";
     uiStatusBarPanel5.Width = 105;
     this.uiStatusBar1.Panels.AddRange(new Janus.Windows.UI.StatusBar.UIStatusBarPanel[] {
     uiStatusBarPanel1,
     uiStatusBarPanel2,
     uiStatusBarPanel3,
     uiStatusBarPanel4,
     uiStatusBarPanel5});
     this.uiStatusBar1.Size = new System.Drawing.Size(1018, 27);
     this.uiStatusBar1.TabIndex = 7;
     this.uiStatusBar1.TabStop = false;
     this.uiStatusBar1.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
     //
     // uiGroupBox1
     //
     this.uiGroupBox1.Controls.Add(this.cboObjectType);
     this.uiGroupBox1.Controls.Add(this.label4);
     this.uiGroupBox1.Controls.Add(this.txtPatientCode);
     this.uiGroupBox1.Controls.Add(this.label2);
     this.uiGroupBox1.Controls.Add(this.txtPatient_ID);
     this.uiGroupBox1.Controls.Add(this.Label7);
     this.uiGroupBox1.Controls.Add(this.txtPatientName);
     this.uiGroupBox1.Controls.Add(this.label3);
     this.uiGroupBox1.Controls.Add(this.dtmTo);
     this.uiGroupBox1.Controls.Add(this.dtmFrom);
     this.uiGroupBox1.Controls.Add(this.chkByDate);
     this.uiGroupBox1.Controls.Add(this.Label1);
     this.uiGroupBox1.Controls.Add(this.cmdTimKiem);
     this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
     this.uiGroupBox1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox1.Location = new System.Drawing.Point(0, 31);
     this.uiGroupBox1.Name = "uiGroupBox1";
     this.uiGroupBox1.Size = new System.Drawing.Size(1018, 71);
     this.uiGroupBox1.TabIndex = 1;
     //
     // cboObjectType
     //
     this.cboObjectType.Location = new System.Drawing.Point(551, 43);
     this.cboObjectType.Name = "cboObjectType";
     this.cboObjectType.Size = new System.Drawing.Size(301, 21);
     this.cboObjectType.TabIndex = 5;
     this.cboObjectType.TabStop = false;
     this.cboObjectType.Text = "Đối tượng";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(631, 18);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(68, 15);
     this.label4.TabIndex = 518;
     this.label4.Text = "Mã đăng ký";
     //
     // txtPatientCode
     //
     this.txtPatientCode.BackColor = System.Drawing.Color.White;
     this.txtPatientCode.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPatientCode.Location = new System.Drawing.Point(714, 14);
     this.txtPatientCode.Name = "txtPatientCode";
     this.txtPatientCode.Size = new System.Drawing.Size(138, 21);
     this.txtPatientCode.TabIndex = 3;
     this.txtPatientCode.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(457, 18);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(88, 15);
     this.label2.TabIndex = 516;
     this.label2.Text = "ID Khách hàng";
     //
     // txtPatient_ID
     //
     this.txtPatient_ID.BackColor = System.Drawing.Color.White;
     this.txtPatient_ID.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPatient_ID.Location = new System.Drawing.Point(551, 14);
     this.txtPatient_ID.Name = "txtPatient_ID";
     this.txtPatient_ID.Numeric = true;
     this.txtPatient_ID.Size = new System.Drawing.Size(76, 21);
     this.txtPatient_ID.TabIndex = 2;
     this.txtPatient_ID.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // Label7
     //
     this.Label7.AutoSize = true;
     this.Label7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label7.Location = new System.Drawing.Point(457, 48);
     this.Label7.Name = "Label7";
     this.Label7.Size = new System.Drawing.Size(62, 15);
     this.Label7.TabIndex = 514;
     this.Label7.Text = "Đối tượng";
     //
     // txtPatientName
     //
     this.txtPatientName.BackColor = System.Drawing.Color.White;
     this.txtPatientName.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPatientName.Location = new System.Drawing.Point(137, 42);
     this.txtPatientName.Name = "txtPatientName";
     this.txtPatientName.Size = new System.Drawing.Size(313, 23);
     this.txtPatientName.TabIndex = 4;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location = new System.Drawing.Point(23, 45);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(103, 15);
     this.label3.TabIndex = 511;
     this.label3.Text = "Tên Khách hàng :";
     //
     // dtmTo
     //
     this.dtmTo.CustomFormat = "dd/MM/yyyy";
     this.dtmTo.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtmTo.DropDownCalendar.Name = "";
     this.dtmTo.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Standard;
     this.dtmTo.Location = new System.Drawing.Point(320, 15);
     this.dtmTo.MinDate = new System.DateTime(1900, 2, 1, 0, 0, 0, 0);
     this.dtmTo.Name = "dtmTo";
     this.dtmTo.ShowUpDown = true;
     this.dtmTo.Size = new System.Drawing.Size(130, 21);
     this.dtmTo.TabIndex = 1;
     this.dtmTo.Value = new System.DateTime(2011, 10, 20, 0, 0, 0, 0);
     //
     // dtmFrom
     //
     this.dtmFrom.CustomFormat = "dd/MM/yyyy";
     this.dtmFrom.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtmFrom.DropDownCalendar.Name = "";
     this.dtmFrom.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Standard;
     this.dtmFrom.Location = new System.Drawing.Point(137, 15);
     this.dtmFrom.MinDate = new System.DateTime(1900, 2, 1, 0, 0, 0, 0);
     this.dtmFrom.Name = "dtmFrom";
     this.dtmFrom.ShowUpDown = true;
     this.dtmFrom.Size = new System.Drawing.Size(117, 21);
     this.dtmFrom.TabIndex = 0;
     this.dtmFrom.Value = new System.DateTime(2011, 10, 20, 0, 0, 0, 0);
     //
     // chkByDate
     //
     this.chkByDate.AutoSize = true;
     this.chkByDate.Checked = true;
     this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkByDate.Location = new System.Drawing.Point(15, 15);
     this.chkByDate.Name = "chkByDate";
     this.chkByDate.Size = new System.Drawing.Size(116, 19);
     this.chkByDate.TabIndex = 241;
     this.chkByDate.Text = "Ngày nhận mẫu:";
     this.chkByDate.UseVisualStyleBackColor = true;
     //
     // Label1
     //
     this.Label1.AutoSize = true;
     this.Label1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.ForeColor = System.Drawing.Color.Black;
     this.Label1.Location = new System.Drawing.Point(260, 20);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(59, 15);
     this.Label1.TabIndex = 240;
     this.Label1.Text = "Đến ngày";
     //
     // cmdTimKiem
     //
     this.cmdTimKiem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdTimKiem.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdTimKiem.Image = ((System.Drawing.Image)(resources.GetObject("cmdTimKiem.Image")));
     this.cmdTimKiem.ImageSize = new System.Drawing.Size(32, 32);
     this.cmdTimKiem.Location = new System.Drawing.Point(875, 14);
     this.cmdTimKiem.Name = "cmdTimKiem";
     this.cmdTimKiem.Size = new System.Drawing.Size(131, 51);
     this.cmdTimKiem.TabIndex = 6;
     this.cmdTimKiem.Text = "Tìm kiếm (F3)";
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // toolTip1
     //
     this.toolTip1.IsBalloon = true;
     this.toolTip1.ToolTipTitle = "Trợ giúp nhanh:";
     //
     // panel2
     //
     this.panel2.Controls.Add(this.grdAssignDetail);
     this.panel2.Controls.Add(this.uiGroupBox3);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel2.Location = new System.Drawing.Point(612, 102);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(406, 611);
     this.panel2.TabIndex = 548;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.grdList);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 102);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(612, 611);
     this.panel1.TabIndex = 549;
     //
     // grdList
     //
     this.grdList.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     this.grdList.BackColor = System.Drawing.Color.Silver;
     this.grdList.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><FilterRowInfoText>Lọc" +
     " thông tin bệnh nhân</FilterRowInfoText></LocalizableData>";
     grdList_DesignTimeLayout.LayoutString = resources.GetString("grdList_DesignTimeLayout.LayoutString");
     this.grdList.DesignTimeLayout = grdList_DesignTimeLayout;
     this.grdList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdList.DynamicFiltering = true;
     this.grdList.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
     this.grdList.FocusCellDisplayMode = Janus.Windows.GridEX.FocusCellDisplayMode.UseSelectedFormatStyle;
     this.grdList.FocusCellFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.grdList.FocusCellFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
     this.grdList.FocusCellFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
     this.grdList.Font = new System.Drawing.Font("Arial", 9F);
     this.grdList.FrozenColumns = 4;
     this.grdList.GroupByBoxVisible = false;
     this.grdList.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdList.Location = new System.Drawing.Point(0, 0);
     this.grdList.Name = "grdList";
     this.grdList.RecordNavigator = true;
     this.grdList.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
     this.grdList.Size = new System.Drawing.Size(612, 611);
     this.grdList.TabIndex = 0;
     this.grdList.TabStop = false;
     this.grdList.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // cmdBangiao
     //
     this.cmdBangiao.Image = ((System.Drawing.Image)(resources.GetObject("cmdBangiao.Image")));
     this.cmdBangiao.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdBangiao.Name = "cmdBangiao";
     this.cmdBangiao.Size = new System.Drawing.Size(104, 28);
     this.cmdBangiao.Text = "Bàn giao mẫu";
     //
     // cmdInKQ
     //
     this.cmdInKQ.Image = ((System.Drawing.Image)(resources.GetObject("cmdInKQ.Image")));
     this.cmdInKQ.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdInKQ.Name = "cmdInKQ";
     this.cmdInKQ.Size = new System.Drawing.Size(80, 28);
     this.cmdInKQ.Text = "In kết quả";
     //
     // frm_Quanly_Maukiemnghiem
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(1018, 740);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.uiStatusBar1);
     this.Controls.Add(this.uiGroupBox1);
     this.Controls.Add(this.toolStrip1);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frm_Quanly_Maukiemnghiem";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Quản lý thông tin mẫu kiểm nghiệm";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdAssignDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).EndInit();
     this.uiGroupBox3.ResumeLayout(false);
     this.uiGroupBox3.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
     this.uiGroupBox1.ResumeLayout(false);
     this.uiGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		/// <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 gridEX1_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(KeyboardEditor));
			gridEX1 = new Janus.Windows.GridEX.GridEX();
			checkWin = new System.Windows.Forms.CheckBox();
			comboKey = new System.Windows.Forms.ComboBox();
			checkControl = new System.Windows.Forms.CheckBox();
			checkShift = new System.Windows.Forms.CheckBox();
			checkAlt = new System.Windows.Forms.CheckBox();
			btnApply = new System.Windows.Forms.Button();
			btnReset = new System.Windows.Forms.Button();
			btnDefault = new System.Windows.Forms.Button();
			uiGroupBox1 = new System.Windows.Forms.GroupBox();
			lblDescription = new System.Windows.Forms.Label();
			lblDefaultKeyString = new System.Windows.Forms.Label();
			panel1 = new System.Windows.Forms.Panel();
			panel2 = new System.Windows.Forms.Panel();
			((System.ComponentModel.ISupportInitialize)gridEX1).BeginInit();
			uiGroupBox1.SuspendLayout();
			panel1.SuspendLayout();
			panel2.SuspendLayout();
			base.SuspendLayout();
			gridEX1.AllowColumnDrag = false;
			gridEX1.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
			gridEX1.AutomaticSort = false;
			gridEX1.ColumnAutoResize = true;
			gridEX1.ColumnHeaders = Janus.Windows.GridEX.InheritableBoolean.False;
			resources.ApplyResources(gridEX1_DesignTimeLayout, "gridEX1_DesignTimeLayout");
			gridEX1.DesignTimeLayout = gridEX1_DesignTimeLayout;
			resources.ApplyResources(gridEX1, "gridEX1");
			gridEX1.EnterKeyBehavior = Janus.Windows.GridEX.EnterKeyBehavior.None;
			gridEX1.FocusStyle = Janus.Windows.GridEX.FocusStyle.Solid;
			gridEX1.GridLineColor = System.Drawing.Color.Silver;
			gridEX1.GridLines = Janus.Windows.GridEX.GridLines.Horizontal;
			gridEX1.GroupByBoxVisible = false;
			gridEX1.HideSelection = Janus.Windows.GridEX.HideSelection.HighlightInactive;
			gridEX1.Name = "gridEX1";
			gridEX1.TabKeyBehavior = Janus.Windows.GridEX.TabKeyBehavior.ControlNavigation;
			gridEX1.FormattingRow += gridEX1_FormattingRow;
			gridEX1.SelectionChanged += gridEX1_SelectionChanged;
			resources.ApplyResources(checkWin, "checkWin");
			checkWin.Name = "checkWin";
			checkWin.CheckedChanged += Check_Changed;
			resources.ApplyResources(comboKey, "comboKey");
			comboKey.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			comboKey.Name = "comboKey";
			comboKey.SelectedIndexChanged += comboKey_SelectedIndexChanged;
			resources.ApplyResources(checkControl, "checkControl");
			checkControl.Name = "checkControl";
			checkControl.CheckedChanged += Check_Changed;
			resources.ApplyResources(checkShift, "checkShift");
			checkShift.Name = "checkShift";
			checkShift.CheckedChanged += Check_Changed;
			resources.ApplyResources(checkAlt, "checkAlt");
			checkAlt.Name = "checkAlt";
			checkAlt.CheckedChanged += Check_Changed;
			resources.ApplyResources(btnApply, "btnApply");
			btnApply.Name = "btnApply";
			btnApply.Click += btnApply_Click;
			resources.ApplyResources(btnReset, "btnReset");
			btnReset.Name = "btnReset";
			btnReset.Click += btnReset_Click;
			resources.ApplyResources(btnDefault, "btnDefault");
			btnDefault.Name = "btnDefault";
			btnDefault.Click += btnDefault_Click;
			uiGroupBox1.Controls.Add(lblDescription);
			uiGroupBox1.Controls.Add(comboKey);
			uiGroupBox1.Controls.Add(checkAlt);
			uiGroupBox1.Controls.Add(checkShift);
			uiGroupBox1.Controls.Add(checkControl);
			uiGroupBox1.Controls.Add(checkWin);
			uiGroupBox1.Controls.Add(lblDefaultKeyString);
			resources.ApplyResources(uiGroupBox1, "uiGroupBox1");
			uiGroupBox1.Name = "uiGroupBox1";
			uiGroupBox1.TabStop = false;
			resources.ApplyResources(lblDescription, "lblDescription");
			lblDescription.Name = "lblDescription";
			resources.ApplyResources(lblDefaultKeyString, "lblDefaultKeyString");
			lblDefaultKeyString.BackColor = System.Drawing.Color.Transparent;
			lblDefaultKeyString.ForeColor = System.Drawing.Color.MidnightBlue;
			lblDefaultKeyString.Name = "lblDefaultKeyString";
			panel1.Controls.Add(btnDefault);
			panel1.Controls.Add(btnApply);
			panel1.Controls.Add(btnReset);
			resources.ApplyResources(panel1, "panel1");
			panel1.Name = "panel1";
			panel2.Controls.Add(uiGroupBox1);
			resources.ApplyResources(panel2, "panel2");
			panel2.Name = "panel2";
			resources.ApplyResources(this, "$this");
			base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			base.Controls.Add(gridEX1);
			base.Controls.Add(panel2);
			base.Controls.Add(panel1);
			base.Name = "KeyboardEditor";
			((System.ComponentModel.ISupportInitialize)gridEX1).EndInit();
			uiGroupBox1.ResumeLayout(false);
			uiGroupBox1.PerformLayout();
			panel1.ResumeLayout(false);
			panel2.ResumeLayout(false);
			base.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_quanlynhomchidinh_cls));
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel1 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel2 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel3 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel4 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel5 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     Janus.Windows.GridEX.GridEXLayout grdAssignDetail_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.cmdThemnhom = new System.Windows.Forms.ToolStripButton();
     this.cmdSuaNhom = new System.Windows.Forms.ToolStripButton();
     this.cmdXoaNhom = new System.Windows.Forms.ToolStripButton();
     this.cmdExit = new System.Windows.Forms.ToolStripButton();
     this.uiGroupBox5 = new Janus.Windows.EditControls.UIGroupBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.barcode = new Mabry.Windows.Forms.Barcode.Barcode();
     this.txtTongChiPhi = new Janus.Windows.GridEX.EditControls.EditBox();
     this.uiStatusBar1 = new Janus.Windows.UI.StatusBar.UIStatusBar();
     this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
     this.txtLoainhom = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
     this.txtDmucDichvuCLS = new VNS.HIS.UCs.AutoCompleteTextbox();
     this.label7 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.txtID = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtTennhom = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtManhom = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.label3 = new System.Windows.Forms.Label();
     this.cmdTimKiem = new Janus.Windows.EditControls.UIButton();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.panel1 = new System.Windows.Forms.Panel();
     this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
     this.grdList = new Janus.Windows.GridEX.GridEX();
     this.uiGroupBox3 = new Janus.Windows.EditControls.UIGroupBox();
     this.grdAssignDetail = new Janus.Windows.GridEX.GridEX();
     this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mnuDelete = new System.Windows.Forms.ToolStripMenuItem();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox5)).BeginInit();
     this.uiGroupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
     this.uiGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
     this.uiGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).BeginInit();
     this.uiGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdAssignDetail)).BeginInit();
     this.contextMenuStrip2.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.BackColor = System.Drawing.SystemColors.Control;
     this.toolStrip1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.cmdThemnhom,
     this.cmdSuaNhom,
     this.cmdXoaNhom,
     this.cmdExit});
     this.toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(1008, 31);
     this.toolStrip1.TabIndex = 7;
     this.toolStrip1.Text = "toolStrip1";
     //
     // cmdThemnhom
     //
     this.cmdThemnhom.BackColor = System.Drawing.SystemColors.Control;
     this.cmdThemnhom.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdThemnhom.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemnhom.Image")));
     this.cmdThemnhom.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdThemnhom.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdThemnhom.Name = "cmdThemnhom";
     this.cmdThemnhom.Size = new System.Drawing.Size(92, 28);
     this.cmdThemnhom.Text = "Thêm mới";
     this.cmdThemnhom.ToolTipText = "Nhấn vào đây để tiếp đón Bệnh nhân mới";
     //
     // cmdSuaNhom
     //
     this.cmdSuaNhom.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdSuaNhom.Image = ((System.Drawing.Image)(resources.GetObject("cmdSuaNhom.Image")));
     this.cmdSuaNhom.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdSuaNhom.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdSuaNhom.Name = "cmdSuaNhom";
     this.cmdSuaNhom.Size = new System.Drawing.Size(111, 28);
     this.cmdSuaNhom.Text = "Sửa thông tin ";
     this.cmdSuaNhom.ToolTipText = "Nhấn vào nút này để sửa thông tin Bệnh nhân đang chọn trên lưới";
     //
     // cmdXoaNhom
     //
     this.cmdXoaNhom.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdXoaNhom.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoaNhom.Image")));
     this.cmdXoaNhom.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdXoaNhom.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdXoaNhom.Name = "cmdXoaNhom";
     this.cmdXoaNhom.Size = new System.Drawing.Size(91, 28);
     this.cmdXoaNhom.Text = "Xóa nhóm";
     this.cmdXoaNhom.ToolTipText = "Nhấn nút này để xóa lần khám của Bệnh nhân đang chọn trên lưới";
     //
     // cmdExit
     //
     this.cmdExit.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdExit.Image = ((System.Drawing.Image)(resources.GetObject("cmdExit.Image")));
     this.cmdExit.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdExit.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdExit.Name = "cmdExit";
     this.cmdExit.Size = new System.Drawing.Size(126, 28);
     this.cmdExit.Text = "Đóng chức năng";
     this.cmdExit.ToolTipText = "Nhấn nút này để thoát khỏi chức năng ";
     //
     // uiGroupBox5
     //
     this.uiGroupBox5.Controls.Add(this.label6);
     this.uiGroupBox5.Controls.Add(this.label5);
     this.uiGroupBox5.Controls.Add(this.barcode);
     this.uiGroupBox5.Controls.Add(this.txtTongChiPhi);
     this.uiGroupBox5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.uiGroupBox5.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox5.Location = new System.Drawing.Point(0, 587);
     this.uiGroupBox5.Name = "uiGroupBox5";
     this.uiGroupBox5.Size = new System.Drawing.Size(485, 0);
     this.uiGroupBox5.TabIndex = 3;
     this.uiGroupBox5.Text = "&Thông tin chi phí";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.Black;
     this.label6.Location = new System.Drawing.Point(258, 40);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(28, 15);
     this.label6.TabIndex = 242;
     this.label6.Text = "Vnđ";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(7, 40);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(45, 15);
     this.label5.TabIndex = 241;
     this.label5.Text = "Chi phí";
     //
     // barcode
     //
     this.barcode.BackColor = System.Drawing.Color.White;
     this.barcode.BarColor = System.Drawing.Color.Black;
     this.barcode.BarRatio = 2F;
     this.barcode.Data = "00000";
     this.barcode.DataExtension = null;
     this.barcode.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.barcode.Location = new System.Drawing.Point(345, 15);
     this.barcode.Name = "barcode";
     this.barcode.Size = new System.Drawing.Size(218, 53);
     this.barcode.Symbology = Mabry.Windows.Forms.Barcode.Barcode.BarcodeSymbologies.Code128;
     this.barcode.TabIndex = 443;
     this.barcode.Text = "000000";
     this.barcode.Visible = false;
     //
     // txtTongChiPhi
     //
     this.txtTongChiPhi.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTongChiPhi.Location = new System.Drawing.Point(68, 37);
     this.txtTongChiPhi.Name = "txtTongChiPhi";
     this.txtTongChiPhi.ReadOnly = true;
     this.txtTongChiPhi.Size = new System.Drawing.Size(183, 23);
     this.txtTongChiPhi.TabIndex = 0;
     this.txtTongChiPhi.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
     //
     // 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, 503);
     this.uiStatusBar1.Name = "uiStatusBar1";
     uiStatusBarPanel1.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel1.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel1.Key = "";
     uiStatusBarPanel1.ProgressBarValue = 0;
     uiStatusBarPanel1.Text = "Ctrl+N: Thêm mới";
     uiStatusBarPanel1.Width = 113;
     uiStatusBarPanel2.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel2.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel2.Key = "";
     uiStatusBarPanel2.ProgressBarValue = 0;
     uiStatusBarPanel2.Text = "Ctrl+U: Cập nhật";
     uiStatusBarPanel2.Width = 106;
     uiStatusBarPanel3.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel3.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel3.Key = "";
     uiStatusBarPanel3.ProgressBarValue = 0;
     uiStatusBarPanel3.Text = "Ctrl+D: Xóa";
     uiStatusBarPanel3.Width = 77;
     uiStatusBarPanel4.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel4.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel4.Key = "";
     uiStatusBarPanel4.ProgressBarValue = 0;
     uiStatusBarPanel4.Text = "Ctrl+K: Thêm khám";
     uiStatusBarPanel4.Width = 121;
     uiStatusBarPanel5.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel5.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel5.Key = "";
     uiStatusBarPanel5.ProgressBarValue = 0;
     uiStatusBarPanel5.Text = "Esc: Thoát Form";
     uiStatusBarPanel5.Width = 105;
     this.uiStatusBar1.Panels.AddRange(new Janus.Windows.UI.StatusBar.UIStatusBarPanel[] {
     uiStatusBarPanel1,
     uiStatusBarPanel2,
     uiStatusBarPanel3,
     uiStatusBarPanel4,
     uiStatusBarPanel5});
     this.uiStatusBar1.Size = new System.Drawing.Size(1008, 27);
     this.uiStatusBar1.TabIndex = 8;
     this.uiStatusBar1.TabStop = false;
     this.uiStatusBar1.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
     //
     // uiGroupBox1
     //
     this.uiGroupBox1.Controls.Add(this.txtLoainhom);
     this.uiGroupBox1.Controls.Add(this.txtDmucDichvuCLS);
     this.uiGroupBox1.Controls.Add(this.label7);
     this.uiGroupBox1.Controls.Add(this.label1);
     this.uiGroupBox1.Controls.Add(this.txtID);
     this.uiGroupBox1.Controls.Add(this.label4);
     this.uiGroupBox1.Controls.Add(this.txtTennhom);
     this.uiGroupBox1.Controls.Add(this.label2);
     this.uiGroupBox1.Controls.Add(this.txtManhom);
     this.uiGroupBox1.Controls.Add(this.label3);
     this.uiGroupBox1.Controls.Add(this.cmdTimKiem);
     this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
     this.uiGroupBox1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox1.Location = new System.Drawing.Point(0, 31);
     this.uiGroupBox1.Name = "uiGroupBox1";
     this.uiGroupBox1.Size = new System.Drawing.Size(1008, 71);
     this.uiGroupBox1.TabIndex = 1;
     //
     // txtLoainhom
     //
     this.txtLoainhom._backcolor = System.Drawing.Color.WhiteSmoke;
     this.txtLoainhom._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtLoainhom.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtLoainhom.AutoCompleteList")));
     this.txtLoainhom.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtLoainhom.CaseSensitive = false;
     this.txtLoainhom.CompareNoID = true;
     this.txtLoainhom.DefaultCode = "-1";
     this.txtLoainhom.DefaultID = "-1";
     this.txtLoainhom.Drug_ID = null;
     this.txtLoainhom.ExtraWidth = 0;
     this.txtLoainhom.FillValueAfterSelect = false;
     this.txtLoainhom.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtLoainhom.LOAI_DANHMUC = "LOAINHOMCHIDINHCLS";
     this.txtLoainhom.Location = new System.Drawing.Point(94, 42);
     this.txtLoainhom.MaxHeight = -1;
     this.txtLoainhom.MinTypedCharacters = 2;
     this.txtLoainhom.MyCode = "-1";
     this.txtLoainhom.MyID = "-1";
     this.txtLoainhom.Name = "txtLoainhom";
     this.txtLoainhom.RaiseEvent = false;
     this.txtLoainhom.RaiseEventEnter = false;
     this.txtLoainhom.RaiseEventEnterWhenEmpty = false;
     this.txtLoainhom.SelectedIndex = -1;
     this.txtLoainhom.Size = new System.Drawing.Size(313, 21);
     this.txtLoainhom.splitChar = '@';
     this.txtLoainhom.splitCharIDAndCode = '#';
     this.txtLoainhom.TabIndex = 3;
     this.txtLoainhom.TakeCode = false;
     this.txtLoainhom.txtMyCode = null;
     this.txtLoainhom.txtMyCode_Edit = null;
     this.txtLoainhom.txtMyID = null;
     this.txtLoainhom.txtMyID_Edit = null;
     this.txtLoainhom.txtMyName = null;
     this.txtLoainhom.txtMyName_Edit = null;
     this.txtLoainhom.txtNext = null;
     //
     // txtDmucDichvuCLS
     //
     this.txtDmucDichvuCLS._backcolor = System.Drawing.Color.WhiteSmoke;
     this.txtDmucDichvuCLS._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDmucDichvuCLS._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtDmucDichvuCLS.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtDmucDichvuCLS.AutoCompleteList")));
     this.txtDmucDichvuCLS.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtDmucDichvuCLS.CaseSensitive = false;
     this.txtDmucDichvuCLS.CompareNoID = true;
     this.txtDmucDichvuCLS.DefaultCode = "-1";
     this.txtDmucDichvuCLS.DefaultID = "-1";
     this.txtDmucDichvuCLS.Drug_ID = null;
     this.txtDmucDichvuCLS.ExtraWidth = 0;
     this.txtDmucDichvuCLS.FillValueAfterSelect = false;
     this.txtDmucDichvuCLS.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDmucDichvuCLS.Location = new System.Drawing.Point(514, 43);
     this.txtDmucDichvuCLS.MaxHeight = 289;
     this.txtDmucDichvuCLS.MinTypedCharacters = 2;
     this.txtDmucDichvuCLS.MyCode = "-1";
     this.txtDmucDichvuCLS.MyID = "-1";
     this.txtDmucDichvuCLS.MyText = "";
     this.txtDmucDichvuCLS.Name = "txtDmucDichvuCLS";
     this.txtDmucDichvuCLS.RaiseEvent = true;
     this.txtDmucDichvuCLS.RaiseEventEnter = false;
     this.txtDmucDichvuCLS.RaiseEventEnterWhenEmpty = false;
     this.txtDmucDichvuCLS.SelectedIndex = -1;
     this.txtDmucDichvuCLS.Size = new System.Drawing.Size(311, 21);
     this.txtDmucDichvuCLS.splitChar = '@';
     this.txtDmucDichvuCLS.splitCharIDAndCode = '#';
     this.txtDmucDichvuCLS.TabIndex = 4;
     this.txtDmucDichvuCLS.TakeCode = true;
     this.txtDmucDichvuCLS.txtMyCode = null;
     this.txtDmucDichvuCLS.txtMyCode_Edit = null;
     this.txtDmucDichvuCLS.txtMyID = null;
     this.txtDmucDichvuCLS.txtMyID_Edit = null;
     this.txtDmucDichvuCLS.txtMyName = null;
     this.txtDmucDichvuCLS.txtMyName_Edit = null;
     this.txtDmucDichvuCLS.txtNext = null;
     //
     // 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.ForeColor = System.Drawing.Color.Black;
     this.label7.Location = new System.Drawing.Point(413, 47);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(95, 15);
     this.label7.TabIndex = 521;
     this.label7.Text = "Có chứa dịch vụ";
     //
     // 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(26, 15);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(52, 15);
     this.label1.TabIndex = 520;
     this.label1.Text = "Id nhóm";
     //
     // txtID
     //
     this.txtID.BackColor = System.Drawing.Color.White;
     this.txtID.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtID.Location = new System.Drawing.Point(94, 11);
     this.txtID.Name = "txtID";
     this.txtID.Numeric = true;
     this.txtID.Size = new System.Drawing.Size(102, 21);
     this.txtID.TabIndex = 0;
     this.txtID.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // 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(411, 18);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(63, 15);
     this.label4.TabIndex = 518;
     this.label4.Text = "Tên nhóm";
     //
     // txtTennhom
     //
     this.txtTennhom.BackColor = System.Drawing.Color.White;
     this.txtTennhom.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTennhom.Location = new System.Drawing.Point(514, 14);
     this.txtTennhom.Name = "txtTennhom";
     this.txtTennhom.Size = new System.Drawing.Size(311, 21);
     this.txtTennhom.TabIndex = 2;
     this.txtTennhom.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(237, 18);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(58, 15);
     this.label2.TabIndex = 516;
     this.label2.Text = "Mã nhóm";
     //
     // txtManhom
     //
     this.txtManhom.BackColor = System.Drawing.Color.White;
     this.txtManhom.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtManhom.Location = new System.Drawing.Point(305, 14);
     this.txtManhom.Name = "txtManhom";
     this.txtManhom.Numeric = true;
     this.txtManhom.Size = new System.Drawing.Size(102, 21);
     this.txtManhom.TabIndex = 1;
     this.txtManhom.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location = new System.Drawing.Point(23, 45);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(66, 15);
     this.label3.TabIndex = 511;
     this.label3.Text = "Loại nhóm";
     //
     // 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(834, 15);
     this.cmdTimKiem.Name = "cmdTimKiem";
     this.cmdTimKiem.Size = new System.Drawing.Size(162, 50);
     this.cmdTimKiem.TabIndex = 5;
     this.cmdTimKiem.Text = "Tìm kiếm (F3)";
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.uiGroupBox2);
     this.panel1.Controls.Add(this.uiGroupBox3);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 102);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1008, 401);
     this.panel1.TabIndex = 547;
     //
     // uiGroupBox2
     //
     this.uiGroupBox2.Controls.Add(this.grdList);
     this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.uiGroupBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox2.Location = new System.Drawing.Point(0, 0);
     this.uiGroupBox2.Name = "uiGroupBox2";
     this.uiGroupBox2.Size = new System.Drawing.Size(611, 401);
     this.uiGroupBox2.TabIndex = 6;
     this.uiGroupBox2.Text = "Danh sách nhóm chỉ định cận lâm sàng";
     //
     // grdList
     //
     this.grdList.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     this.grdList.BackColor = System.Drawing.Color.Silver;
     this.grdList.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><FilterRowInfoText>Lọc" +
     " thông tin bệnh nhân</FilterRowInfoText></LocalizableData>";
     grdList_DesignTimeLayout.LayoutString = resources.GetString("grdList_DesignTimeLayout.LayoutString");
     this.grdList.DesignTimeLayout = grdList_DesignTimeLayout;
     this.grdList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdList.DynamicFiltering = true;
     this.grdList.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
     this.grdList.FocusCellDisplayMode = Janus.Windows.GridEX.FocusCellDisplayMode.UseSelectedFormatStyle;
     this.grdList.FocusCellFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.grdList.FocusCellFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
     this.grdList.FocusCellFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
     this.grdList.Font = new System.Drawing.Font("Arial", 9F);
     this.grdList.FrozenColumns = 3;
     this.grdList.GroupByBoxVisible = false;
     this.grdList.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdList.Location = new System.Drawing.Point(3, 17);
     this.grdList.Name = "grdList";
     this.grdList.RecordNavigator = true;
     this.grdList.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
     this.grdList.Size = new System.Drawing.Size(605, 381);
     this.grdList.TabIndex = 6;
     this.grdList.TabStop = false;
     this.grdList.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // uiGroupBox3
     //
     this.uiGroupBox3.Controls.Add(this.grdAssignDetail);
     this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Right;
     this.uiGroupBox3.Location = new System.Drawing.Point(611, 0);
     this.uiGroupBox3.Name = "uiGroupBox3";
     this.uiGroupBox3.Size = new System.Drawing.Size(397, 401);
     this.uiGroupBox3.TabIndex = 5;
     this.uiGroupBox3.Text = "Chi tiết chỉ định Cận lâm sàng trong nhóm";
     //
     // grdAssignDetail
     //
     this.grdAssignDetail.BackColor = System.Drawing.Color.Silver;
     this.grdAssignDetail.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><RecordNavigator>Tổng:" +
     "|Của</RecordNavigator></LocalizableData>";
     this.grdAssignDetail.ContextMenuStrip = this.contextMenuStrip2;
     grdAssignDetail_DesignTimeLayout.LayoutString = resources.GetString("grdAssignDetail_DesignTimeLayout.LayoutString");
     this.grdAssignDetail.DesignTimeLayout = grdAssignDetail_DesignTimeLayout;
     this.grdAssignDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdAssignDetail.Font = new System.Drawing.Font("Arial", 9F);
     this.grdAssignDetail.GroupByBoxVisible = false;
     this.grdAssignDetail.GroupRowFormatStyle.BackColor = System.Drawing.Color.White;
     this.grdAssignDetail.GroupRowFormatStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.grdAssignDetail.GroupRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
     this.grdAssignDetail.GroupRowFormatStyle.ForeColor = System.Drawing.Color.Black;
     this.grdAssignDetail.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdAssignDetail.Location = new System.Drawing.Point(3, 17);
     this.grdAssignDetail.Name = "grdAssignDetail";
     this.grdAssignDetail.RecordNavigator = true;
     this.grdAssignDetail.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdAssignDetail.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
     this.grdAssignDetail.Size = new System.Drawing.Size(391, 381);
     this.grdAssignDetail.TabIndex = 9;
     this.grdAssignDetail.TotalRowFormatStyle.BackColor = System.Drawing.Color.Silver;
     this.grdAssignDetail.TotalRowFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
     this.grdAssignDetail.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdAssignDetail.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // contextMenuStrip2
     //
     this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuDelete});
     this.contextMenuStrip2.Name = "contextMenuStrip1";
     this.contextMenuStrip2.Size = new System.Drawing.Size(224, 26);
     //
     // mnuDelete
     //
     this.mnuDelete.Name = "mnuDelete";
     this.mnuDelete.Size = new System.Drawing.Size(223, 22);
     this.mnuDelete.Text = "Xóa chỉ định CLS đang chọn";
     //
     // toolTip1
     //
     this.toolTip1.IsBalloon = true;
     this.toolTip1.ToolTipTitle = "Trợ giúp nhanh:";
     //
     // frm_quanlynhomchidinh_cls
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(1008, 530);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.uiStatusBar1);
     this.Controls.Add(this.uiGroupBox1);
     this.Controls.Add(this.toolStrip1);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frm_quanlynhomchidinh_cls";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Quản lý nhóm chỉ định cận lâm sàng";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox5)).EndInit();
     this.uiGroupBox5.ResumeLayout(false);
     this.uiGroupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
     this.uiGroupBox1.ResumeLayout(false);
     this.uiGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
     this.uiGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).EndInit();
     this.uiGroupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdAssignDetail)).EndInit();
     this.contextMenuStrip2.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        /// Método necesario para admitir el Diseñador. No se puede modificar
        /// el contenido del método con el editor de código.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            Janus.Windows.GridEX.GridEXLayout gridEXLayout1 = new Janus.Windows.GridEX.GridEXLayout();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OrdenCompraBrowserForm));
            PureComponents.NicePanel.ContainerImage containerImage1 = new PureComponents.NicePanel.ContainerImage();
            PureComponents.NicePanel.HeaderImage headerImage1 = new PureComponents.NicePanel.HeaderImage();
            PureComponents.NicePanel.HeaderImage headerImage2 = new PureComponents.NicePanel.HeaderImage();
            PureComponents.NicePanel.PanelStyle panelStyle1 = new PureComponents.NicePanel.PanelStyle();
            PureComponents.NicePanel.ContainerStyle containerStyle1 = new PureComponents.NicePanel.ContainerStyle();
            PureComponents.NicePanel.PanelHeaderStyle panelHeaderStyle1 = new PureComponents.NicePanel.PanelHeaderStyle();
            PureComponents.NicePanel.PanelHeaderStyle panelHeaderStyle2 = new PureComponents.NicePanel.PanelHeaderStyle();
            PureComponents.NicePanel.ContainerImage containerImage2 = new PureComponents.NicePanel.ContainerImage();
            PureComponents.NicePanel.HeaderImage headerImage3 = new PureComponents.NicePanel.HeaderImage();
            PureComponents.NicePanel.HeaderImage headerImage4 = new PureComponents.NicePanel.HeaderImage();
            PureComponents.NicePanel.PanelStyle panelStyle2 = new PureComponents.NicePanel.PanelStyle();
            PureComponents.NicePanel.ContainerStyle containerStyle2 = new PureComponents.NicePanel.ContainerStyle();
            PureComponents.NicePanel.PanelHeaderStyle panelHeaderStyle3 = new PureComponents.NicePanel.PanelHeaderStyle();
            PureComponents.NicePanel.PanelHeaderStyle panelHeaderStyle4 = new PureComponents.NicePanel.PanelHeaderStyle();
            this.BotonesUiPanelManager = new Janus.Windows.UI.Dock.UIPanelManager(this.components);
            this.BrowserPanel = new System.Windows.Forms.Panel();
            this.BrowserGridsPanel = new System.Windows.Forms.Panel();
            this.BrowserGridPanel = new System.Windows.Forms.Panel();
            this.BrowserGridEX = new Janus.Windows.GridEX.GridEX();
            this.HerramientasUiPanel = new Janus.Windows.UI.Dock.UIPanel();
            this.HerramientasUiPanelContainer = new Janus.Windows.UI.Dock.UIPanelInnerContainer();
            this.CambioEstadoUiButton = new Janus.Windows.EditControls.UIButton();
            this.ModificacionUiButton = new Janus.Windows.EditControls.UIButton();
            this.ConsultaUiButton = new Janus.Windows.EditControls.UIButton();
            this.panel1 = new System.Windows.Forms.Panel();
            this.MinimizarUiButton = new Janus.Windows.EditControls.UIButton();
            this.MaximizarUiButton = new Janus.Windows.EditControls.UIButton();
            this.SalirUiButton = new Janus.Windows.EditControls.UIButton();
            this.AnulacionUiButton = new Janus.Windows.EditControls.UIButton();
            this.IngrADepUiButton = new Janus.Windows.EditControls.UIButton();
            this.InspRenarUiButton = new Janus.Windows.EditControls.UIButton();
            this.RegDespUiButton = new Janus.Windows.EditControls.UIButton();
            this.RecepDocsUiButton = new Janus.Windows.EditControls.UIButton();
            this.IngInfoEmbUiButton = new Janus.Windows.EditControls.UIButton();
            this.EnviarAUiButton = new Janus.Windows.EditControls.UIButton();
            this.AltaUiButton = new Janus.Windows.EditControls.UIButton();
            this.BrowserUiTab = new Janus.Windows.UI.Tab.UITab();
            this.TabBrowserUiTabPage = new Janus.Windows.UI.Tab.UITabPage();
            this.TabFiltroUiTabPage = new Janus.Windows.UI.Tab.UITabPage();
            this.FiltroPanel = new System.Windows.Forms.Panel();
            this.EjecutarSeleccionUiButton = new Janus.Windows.EditControls.UIButton();
            this.CancelarUiButton = new Janus.Windows.EditControls.UIButton();
            this.nicePanel3 = new PureComponents.NicePanel.NicePanel();
            this.label2 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.FechaHstCalendarCombo = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.FechaDsdCalendarCombo = new Janus.Windows.CalendarCombo.CalendarCombo();
            this.FechaLabel = new System.Windows.Forms.Label();
            this.nicePanel2 = new PureComponents.NicePanel.NicePanel();
            this.EstadoUiCheckBox = new Janus.Windows.EditControls.UICheckBox();
            this.EstadoTreeView = new System.Windows.Forms.TreeView();
            this.panel4 = new System.Windows.Forms.Panel();
            ((System.ComponentModel.ISupportInitialize)(this.EnviarAUiCommandManager)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.EnviarAUiContextMenu)).BeginInit();
            this.FondoNicePanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.BotonesUiPanelManager)).BeginInit();
            this.BrowserPanel.SuspendLayout();
            this.BrowserGridsPanel.SuspendLayout();
            this.BrowserGridPanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.BrowserGridEX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.HerramientasUiPanel)).BeginInit();
            this.HerramientasUiPanel.SuspendLayout();
            this.HerramientasUiPanelContainer.SuspendLayout();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.BrowserUiTab)).BeginInit();
            this.BrowserUiTab.SuspendLayout();
            this.TabBrowserUiTabPage.SuspendLayout();
            this.TabFiltroUiTabPage.SuspendLayout();
            this.FiltroPanel.SuspendLayout();
            this.nicePanel3.SuspendLayout();
            this.nicePanel2.SuspendLayout();
            this.panel4.SuspendLayout();
            this.SuspendLayout();
            // 
            // EnviarAUiCommandManager
            // 
            this.EnviarAUiCommandManager.CommandsStateStyles.FormatStyle.BackColor = System.Drawing.Color.PeachPuff;
            this.EnviarAUiCommandManager.CommandsStateStyles.FormatStyle.ForeColor = System.Drawing.Color.Navy;
            this.EnviarAUiCommandManager.UseThemes = false;
            this.EnviarAUiCommandManager.CommandClick += new Janus.Windows.UI.CommandBars.CommandEventHandler(this.EnviarAUiCommandManager_CommandClick);
            // 
            // EnviarAUiContextMenu
            // 
            this.EnviarAUiContextMenu.UseThemes = Janus.Windows.UI.InheritableBoolean.False;
            this.EnviarAUiContextMenu.VisualStyle = Janus.Windows.UI.VisualStyle.Standard;
            // 
            // FondoNicePanel
            // 
            this.FondoNicePanel.Controls.Add(this.panel4);
            this.FondoNicePanel.Size = new System.Drawing.Size(958, 503);
            // 
            // BotonesUiPanelManager
            // 
            this.BotonesUiPanelManager.AllowPanelDrag = false;
            this.BotonesUiPanelManager.AllowPanelDrop = false;
            this.BotonesUiPanelManager.AllowPanelResize = false;
            this.BotonesUiPanelManager.BackColorAutoHideStrip = System.Drawing.Color.PeachPuff;
            this.BotonesUiPanelManager.BackColorSplitter = System.Drawing.Color.PeachPuff;
            this.BotonesUiPanelManager.ContainerControl = this.BrowserPanel;
            this.BotonesUiPanelManager.DefaultPanelSettings.ActiveCaptionFormatStyle.BackColor = System.Drawing.Color.Peru;
            this.BotonesUiPanelManager.DefaultPanelSettings.ActiveCaptionFormatStyle.BackColorGradient = System.Drawing.Color.Brown;
            this.BotonesUiPanelManager.DefaultPanelSettings.ActiveCaptionFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.BotonesUiPanelManager.DefaultPanelSettings.ActiveCaptionFormatStyle.ForeColor = System.Drawing.Color.Cornsilk;
            this.BotonesUiPanelManager.DefaultPanelSettings.BorderCaptionColor = System.Drawing.Color.Brown;
            this.BotonesUiPanelManager.DefaultPanelSettings.BorderPanelColor = System.Drawing.Color.Brown;
            this.BotonesUiPanelManager.DefaultPanelSettings.CaptionFormatStyle.BackColor = System.Drawing.Color.Peru;
            this.BotonesUiPanelManager.DefaultPanelSettings.CaptionFormatStyle.BackColorGradient = System.Drawing.Color.Brown;
            this.BotonesUiPanelManager.DefaultPanelSettings.CaptionFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.BotonesUiPanelManager.DefaultPanelSettings.CaptionFormatStyle.ForeColor = System.Drawing.Color.Cornsilk;
            this.BotonesUiPanelManager.DefaultPanelSettings.CaptionHeight = 25;
            this.BotonesUiPanelManager.DefaultPanelSettings.InnerContainerFormatStyle.BackColor = System.Drawing.Color.PeachPuff;
            this.BotonesUiPanelManager.DefaultPanelSettings.TextAlignment = Janus.Windows.UI.Dock.PanelTextAlignment.Center;
            this.BotonesUiPanelManager.PanelPadding.Bottom = 0;
            this.BotonesUiPanelManager.PanelPadding.Left = 0;
            this.BotonesUiPanelManager.PanelPadding.Right = 0;
            this.BotonesUiPanelManager.PanelPadding.Top = 0;
            this.BotonesUiPanelManager.SplitterSize = 1;
            this.BotonesUiPanelManager.UseThemes = false;
            this.HerramientasUiPanel.Id = new System.Guid("6ee79d23-0754-4daa-993e-d43b72175136");
            this.BotonesUiPanelManager.Panels.Add(this.HerramientasUiPanel);
            // 
            // Design Time Panel Info:
            // 
            this.BotonesUiPanelManager.BeginPanelInfo();
            this.BotonesUiPanelManager.AddDockPanelInfo(new System.Guid("6ee79d23-0754-4daa-993e-d43b72175136"), Janus.Windows.UI.Dock.PanelDockStyle.Right, new System.Drawing.Size(178, 436), true);
            this.BotonesUiPanelManager.AddFloatingPanelInfo(new System.Guid("6ee79d23-0754-4daa-993e-d43b72175136"), new System.Drawing.Point(-1, -1), new System.Drawing.Size(-1, -1), false);
            this.BotonesUiPanelManager.EndPanelInfo();
            // 
            // BrowserPanel
            // 
            this.BrowserPanel.BackColor = System.Drawing.Color.PeachPuff;
            this.BrowserPanel.Controls.Add(this.BrowserGridsPanel);
            this.BrowserPanel.Controls.Add(this.HerramientasUiPanel);
            this.BrowserPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.BrowserPanel.Location = new System.Drawing.Point(0, 0);
            this.BrowserPanel.Name = "BrowserPanel";
            this.BrowserPanel.Padding = new System.Windows.Forms.Padding(5);
            this.BrowserPanel.Size = new System.Drawing.Size(946, 446);
            this.BrowserPanel.TabIndex = 5;
            // 
            // BrowserGridsPanel
            // 
            this.BrowserGridsPanel.BackColor = System.Drawing.Color.PeachPuff;
            this.BrowserGridsPanel.Controls.Add(this.BrowserGridPanel);
            this.BrowserGridsPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.BrowserGridsPanel.Location = new System.Drawing.Point(5, 5);
            this.BrowserGridsPanel.Name = "BrowserGridsPanel";
            this.BrowserGridsPanel.Padding = new System.Windows.Forms.Padding(0, 0, 4, 0);
            this.BrowserGridsPanel.Size = new System.Drawing.Size(758, 436);
            this.BrowserGridsPanel.TabIndex = 6;
            // 
            // BrowserGridPanel
            // 
            this.BrowserGridPanel.BackColor = System.Drawing.Color.PeachPuff;
            this.BrowserGridPanel.Controls.Add(this.BrowserGridEX);
            this.BrowserGridPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.BrowserGridPanel.Location = new System.Drawing.Point(0, 0);
            this.BrowserGridPanel.Name = "BrowserGridPanel";
            this.BrowserGridPanel.Size = new System.Drawing.Size(754, 436);
            this.BrowserGridPanel.TabIndex = 9;
            // 
            // BrowserGridEX
            // 
            this.BrowserGridEX.AllowColumnDrag = false;
            this.BrowserGridEX.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.BrowserGridEX.AlternatingColors = true;
            this.BrowserGridEX.AlternatingRowFormatStyle.BackColor = System.Drawing.Color.Cornsilk;
            this.BrowserGridEX.BackColor = System.Drawing.Color.PeachPuff;
            this.BrowserGridEX.BackgroundImageDrawMode = Janus.Windows.GridEX.BackgroundImageDrawMode.None;
            this.BrowserGridEX.BlendColor = System.Drawing.Color.White;
            this.BrowserGridEX.ControlStyle.ControlColor = System.Drawing.Color.PeachPuff;
            this.BrowserGridEX.ControlStyle.ScrollBarColor = System.Drawing.Color.PeachPuff;
            gridEXLayout1.LayoutString = resources.GetString("gridEXLayout1.LayoutString");
            this.BrowserGridEX.DesignTimeLayout = gridEXLayout1;
            this.BrowserGridEX.Dock = System.Windows.Forms.DockStyle.Fill;
            this.BrowserGridEX.EditorsControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
            this.BrowserGridEX.FlatBorderColor = System.Drawing.Color.Brown;
            this.BrowserGridEX.FocusCellFormatStyle.BackColor = System.Drawing.Color.Gold;
            this.BrowserGridEX.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
            this.BrowserGridEX.FrozenColumns = 3;
            this.BrowserGridEX.GridLines = Janus.Windows.GridEX.GridLines.Vertical;
            this.BrowserGridEX.GridLineStyle = Janus.Windows.GridEX.GridLineStyle.Solid;
            this.BrowserGridEX.GroupByBoxVisible = false;
            this.BrowserGridEX.HeaderFormatStyle.BackColor = System.Drawing.Color.PeachPuff;
            this.BrowserGridEX.HeaderFormatStyle.BackColorGradient = System.Drawing.Color.PeachPuff;
            this.BrowserGridEX.HeaderFormatStyle.ForeColor = System.Drawing.Color.Navy;
            this.BrowserGridEX.HeaderFormatStyle.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
            this.BrowserGridEX.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
            this.BrowserGridEX.Location = new System.Drawing.Point(0, 0);
            this.BrowserGridEX.Name = "BrowserGridEX";
            this.BrowserGridEX.RowFormatStyle.BackColor = System.Drawing.Color.White;
            this.BrowserGridEX.SelectedFormatStyle.BackColor = System.Drawing.Color.Gold;
            this.BrowserGridEX.SelectedFormatStyle.ForeColor = System.Drawing.Color.Empty;
            this.BrowserGridEX.SelectedInactiveFormatStyle.BackColor = System.Drawing.Color.LightSteelBlue;
            this.BrowserGridEX.SelectedInactiveFormatStyle.ForeColor = System.Drawing.Color.Empty;
            this.BrowserGridEX.SelectionMode = Janus.Windows.GridEX.SelectionMode.MultipleSelection;
            this.BrowserGridEX.Size = new System.Drawing.Size(754, 436);
            this.BrowserGridEX.TabIndex = 6;
            this.BrowserGridEX.ThemedAreas = Janus.Windows.GridEX.ThemedArea.None;
            this.BrowserGridEX.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
            this.BrowserGridEX.SelectionChanged += new System.EventHandler(this.BrowserGridEX_SelectionChanged);
            // 
            // HerramientasUiPanel
            // 
            this.HerramientasUiPanel.AutoHideButtonVisible = Janus.Windows.UI.InheritableBoolean.False;
            this.HerramientasUiPanel.CaptionFormatStyle.FontBold = Janus.Windows.UI.TriState.False;
            this.HerramientasUiPanel.CaptionFormatStyle.ForeColor = System.Drawing.Color.White;
            this.HerramientasUiPanel.CaptionHeight = 20;
            this.HerramientasUiPanel.CloseButtonVisible = Janus.Windows.UI.InheritableBoolean.False;
            this.HerramientasUiPanel.InnerContainer = this.HerramientasUiPanelContainer;
            this.HerramientasUiPanel.Location = new System.Drawing.Point(763, 5);
            this.HerramientasUiPanel.Name = "HerramientasUiPanel";
            this.HerramientasUiPanel.Size = new System.Drawing.Size(178, 436);
            this.HerramientasUiPanel.TabIndex = 4;
            this.HerramientasUiPanel.Text = "Herramientas";
            // 
            // HerramientasUiPanelContainer
            // 
            this.HerramientasUiPanelContainer.Controls.Add(this.CambioEstadoUiButton);
            this.HerramientasUiPanelContainer.Controls.Add(this.ModificacionUiButton);
            this.HerramientasUiPanelContainer.Controls.Add(this.ConsultaUiButton);
            this.HerramientasUiPanelContainer.Controls.Add(this.panel1);
            this.HerramientasUiPanelContainer.Controls.Add(this.AnulacionUiButton);
            this.HerramientasUiPanelContainer.Controls.Add(this.IngrADepUiButton);
            this.HerramientasUiPanelContainer.Controls.Add(this.InspRenarUiButton);
            this.HerramientasUiPanelContainer.Controls.Add(this.RegDespUiButton);
            this.HerramientasUiPanelContainer.Controls.Add(this.RecepDocsUiButton);
            this.HerramientasUiPanelContainer.Controls.Add(this.IngInfoEmbUiButton);
            this.HerramientasUiPanelContainer.Controls.Add(this.EnviarAUiButton);
            this.HerramientasUiPanelContainer.Controls.Add(this.AltaUiButton);
            this.HerramientasUiPanelContainer.ForeColor = System.Drawing.Color.Navy;
            this.HerramientasUiPanelContainer.Location = new System.Drawing.Point(2, 20);
            this.HerramientasUiPanelContainer.Name = "HerramientasUiPanelContainer";
            this.HerramientasUiPanelContainer.Size = new System.Drawing.Size(175, 415);
            this.HerramientasUiPanelContainer.TabIndex = 0;
            // 
            // CambioEstadoUiButton
            // 
            this.CambioEstadoUiButton.Appearance = Janus.Windows.UI.Appearance.FlatBorderless;
            this.CambioEstadoUiButton.Cursor = System.Windows.Forms.Cursors.Hand;
            this.CambioEstadoUiButton.Enabled = false;
            this.CambioEstadoUiButton.FlatBorderColor = System.Drawing.Color.Transparent;
            this.CambioEstadoUiButton.Icon = ((System.Drawing.Icon)(resources.GetObject("CambioEstadoUiButton.Icon")));
            this.CambioEstadoUiButton.Location = new System.Drawing.Point(8, 210);
            this.CambioEstadoUiButton.Name = "CambioEstadoUiButton";
            this.CambioEstadoUiButton.ShowFocusRectangle = false;
            this.CambioEstadoUiButton.Size = new System.Drawing.Size(158, 25);
            this.CambioEstadoUiButton.StateStyles.FormatStyle.BackColor = System.Drawing.Color.Transparent;
            this.CambioEstadoUiButton.TabIndex = 43;
            this.CambioEstadoUiButton.Tag = "";
            this.CambioEstadoUiButton.Text = "Cambio manual de Estado";
            this.CambioEstadoUiButton.TextHorizontalAlignment = Janus.Windows.EditControls.TextAlignment.Near;
            this.CambioEstadoUiButton.UseThemes = false;
            this.CambioEstadoUiButton.Click += new System.EventHandler(this.CambioEstadoUiButton_Click);
            // 
            // ModificacionUiButton
            // 
            this.ModificacionUiButton.Appearance = Janus.Windows.UI.Appearance.FlatBorderless;
            this.ModificacionUiButton.Cursor = System.Windows.Forms.Cursors.Hand;
            this.ModificacionUiButton.Enabled = false;
            this.ModificacionUiButton.FlatBorderColor = System.Drawing.Color.Transparent;
            this.ModificacionUiButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.ModificacionUiButton.Icon = ((System.Drawing.Icon)(resources.GetObject("ModificacionUiButton.Icon")));
            this.ModificacionUiButton.Location = new System.Drawing.Point(8, 185);
            this.ModificacionUiButton.Name = "ModificacionUiButton";
            this.ModificacionUiButton.ShowFocusRectangle = false;
            this.ModificacionUiButton.Size = new System.Drawing.Size(158, 25);
            this.ModificacionUiButton.StateStyles.FormatStyle.BackColor = System.Drawing.Color.Transparent;
            this.ModificacionUiButton.TabIndex = 42;
            this.ModificacionUiButton.Tag = "Modificacion";
            this.ModificacionUiButton.Text = "Modificacion manual";
            this.ModificacionUiButton.TextHorizontalAlignment = Janus.Windows.EditControls.TextAlignment.Near;
            this.ModificacionUiButton.UseThemes = false;
            this.ModificacionUiButton.Click += new System.EventHandler(this.ModificacionUiButton_Click);
            // 
            // ConsultaUiButton
            // 
            this.ConsultaUiButton.Appearance = Janus.Windows.UI.Appearance.FlatBorderless;
            this.ConsultaUiButton.Cursor = System.Windows.Forms.Cursors.Hand;
            this.ConsultaUiButton.Enabled = false;
            this.ConsultaUiButton.FlatBorderColor = System.Drawing.Color.Transparent;
            this.ConsultaUiButton.Icon = ((System.Drawing.Icon)(resources.GetObject("ConsultaUiButton.Icon")));
            this.ConsultaUiButton.Location = new System.Drawing.Point(8, 235);
            this.ConsultaUiButton.Name = "ConsultaUiButton";
            this.ConsultaUiButton.ShowFocusRectangle = false;
            this.ConsultaUiButton.Size = new System.Drawing.Size(158, 25);
            this.ConsultaUiButton.StateStyles.FormatStyle.BackColor = System.Drawing.Color.Transparent;
            this.ConsultaUiButton.TabIndex = 41;
            this.ConsultaUiButton.Tag = "Consulta";
            this.ConsultaUiButton.Text = "Consulta";
            this.ConsultaUiButton.TextHorizontalAlignment = Janus.Windows.EditControls.TextAlignment.Near;
            this.ConsultaUiButton.UseThemes = false;
            this.ConsultaUiButton.Click += new System.EventHandler(this.ConsultaUiButton_Click);
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.MinimizarUiButton);
            this.panel1.Controls.Add(this.MaximizarUiButton);
            this.panel1.Controls.Add(this.SalirUiButton);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel1.Location = new System.Drawing.Point(0, 385);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(175, 30);
            this.panel1.TabIndex = 40;
            // 
            // MinimizarUiButton
            // 
            this.MinimizarUiButton.Appearance = Janus.Windows.UI.Appearance.FlatBorderless;
            this.MinimizarUiButton.Cursor = System.Windows.Forms.Cursors.Hand;
            this.MinimizarUiButton.FlatBorderColor = System.Drawing.Color.Transparent;
            this.MinimizarUiButton.Image = ((System.Drawing.Image)(resources.GetObject("MinimizarUiButton.Image")));
            this.MinimizarUiButton.ImageHorizontalAlignment = Janus.Windows.EditControls.ImageHorizontalAlignment.Near;
            this.MinimizarUiButton.Location = new System.Drawing.Point(7, 6);
            this.MinimizarUiButton.Name = "MinimizarUiButton";
            this.MinimizarUiButton.ShowFocusRectangle = false;
            this.MinimizarUiButton.Size = new System.Drawing.Size(20, 20);
            this.MinimizarUiButton.StateStyles.FormatStyle.BackColor = System.Drawing.Color.Transparent;
            this.MinimizarUiButton.TabIndex = 42;
            this.MinimizarUiButton.Tag = "Min";
            this.MinimizarUiButton.UseThemes = false;
            this.MinimizarUiButton.Visible = false;
            this.MinimizarUiButton.Click += new System.EventHandler(this.MinimizarUiButton_Click);
            // 
            // MaximizarUiButton
            // 
            this.MaximizarUiButton.Appearance = Janus.Windows.UI.Appearance.FlatBorderless;
            this.MaximizarUiButton.Cursor = System.Windows.Forms.Cursors.Hand;
            this.MaximizarUiButton.FlatBorderColor = System.Drawing.Color.Transparent;
            this.MaximizarUiButton.Image = ((System.Drawing.Image)(resources.GetObject("MaximizarUiButton.Image")));
            this.MaximizarUiButton.ImageHorizontalAlignment = Janus.Windows.EditControls.ImageHorizontalAlignment.Center;
            this.MaximizarUiButton.Location = new System.Drawing.Point(7, 6);
            this.MaximizarUiButton.Name = "MaximizarUiButton";
            this.MaximizarUiButton.ShowFocusRectangle = false;
            this.MaximizarUiButton.Size = new System.Drawing.Size(20, 20);
            this.MaximizarUiButton.StateStyles.FormatStyle.BackColor = System.Drawing.Color.Transparent;
            this.MaximizarUiButton.TabIndex = 41;
            this.MaximizarUiButton.Tag = "Max";
            this.MaximizarUiButton.UseThemes = false;
            this.MaximizarUiButton.Click += new System.EventHandler(this.MaxMinUiButton_Click);
            // 
            // SalirUiButton
            // 
            this.SalirUiButton.Appearance = Janus.Windows.UI.Appearance.FlatBorderless;
            this.SalirUiButton.Cursor = System.Windows.Forms.Cursors.Hand;
            this.SalirUiButton.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.SalirUiButton.FlatBorderColor = System.Drawing.Color.Transparent;
            this.SalirUiButton.Icon = ((System.Drawing.Icon)(resources.GetObject("SalirUiButton.Icon")));
            this.SalirUiButton.Location = new System.Drawing.Point(112, 4);
            this.SalirUiButton.Name = "SalirUiButton";
            this.SalirUiButton.ShowFocusRectangle = false;
            this.SalirUiButton.Size = new System.Drawing.Size(54, 24);
            this.SalirUiButton.StateStyles.FormatStyle.BackColor = System.Drawing.Color.Transparent;
            this.SalirUiButton.TabIndex = 40;
            this.SalirUiButton.Text = "Salir";
            this.SalirUiButton.TextHorizontalAlignment = Janus.Windows.EditControls.TextAlignment.Far;
            this.SalirUiButton.UseThemes = false;
            // 
            // AnulacionUiButton
            // 
            this.AnulacionUiButton.Appearance = Janus.Windows.UI.Appearance.FlatBorderless;
            this.AnulacionUiButton.Cursor = System.Windows.Forms.Cursors.Hand;
            this.AnulacionUiButton.Enabled = false;
            this.AnulacionUiButton.FlatBorderColor = System.Drawing.Color.Transparent;
            this.AnulacionUiButton.Icon = ((System.Drawing.Icon)(resources.GetObject("AnulacionUiButton.Icon")));
            this.AnulacionUiButton.Location = new System.Drawing.Point(8, 160);
            this.AnulacionUiButton.Name = "AnulacionUiButton";
            this.AnulacionUiButton.ShowFocusRectangle = false;
            this.AnulacionUiButton.Size = new System.Drawing.Size(158, 25);
            this.AnulacionUiButton.StateStyles.FormatStyle.BackColor = System.Drawing.Color.Transparent;
            this.AnulacionUiButton.TabIndex = 32;
            this.AnulacionUiButton.Tag = "Baja";
            this.AnulacionUiButton.Text = "Anulación";
            this.AnulacionUiButton.TextHorizontalAlignment = Janus.Windows.EditControls.TextAlignment.Near;
            this.AnulacionUiButton.UseThemes = false;
            this.AnulacionUiButton.Click += new System.EventHandler(this.AnulacionUiButton_Click);
            // 
            // IngrADepUiButton
            // 
            this.IngrADepUiButton.Appearance = Janus.Windows.UI.Appearance.FlatBorderless;
            this.IngrADepUiButton.Cursor = System.Windows.Forms.Cursors.Hand;
            this.IngrADepUiButton.Enabled = false;
            this.IngrADepUiButton.FlatBorderColor = System.Drawing.Color.Transparent;
            this.IngrADepUiButton.Icon = ((System.Drawing.Icon)(resources.GetObject("IngrADepUiButton.Icon")));
            this.IngrADepUiButton.Location = new System.Drawing.Point(8, 135);
            this.IngrADepUiButton.Name = "IngrADepUiButton";
            this.IngrADepUiButton.ShowFocusRectangle = false;
            this.IngrADepUiButton.Size = new System.Drawing.Size(158, 25);
            this.IngrADepUiButton.StateStyles.FormatStyle.BackColor = System.Drawing.Color.Transparent;
            this.IngrADepUiButton.TabIndex = 31;
            this.IngrADepUiButton.Tag = "";
            this.IngrADepUiButton.Text = "Ingreso a Depósito";
            this.IngrADepUiButton.TextHorizontalAlignment = Janus.Windows.EditControls.TextAlignment.Near;
            this.IngrADepUiButton.UseThemes = false;
            this.IngrADepUiButton.Click += new System.EventHandler(this.IngrADepUiButton_Click);
            // 
            // InspRenarUiButton
            // 
            this.InspRenarUiButton.Appearance = Janus.Windows.UI.Appearance.FlatBorderless;
            this.InspRenarUiButton.Cursor = System.Windows.Forms.Cursors.Hand;
            this.InspRenarUiButton.Enabled = false;
            this.InspRenarUiButton.FlatBorderColor = System.Drawing.Color.Transparent;
            this.InspRenarUiButton.Icon = ((System.Drawing.Icon)(resources.GetObject("InspRenarUiButton.Icon")));
            this.InspRenarUiButton.Location = new System.Drawing.Point(8, 110);
            this.InspRenarUiButton.Name = "InspRenarUiButton";
            this.InspRenarUiButton.ShowFocusRectangle = false;
            this.InspRenarUiButton.Size = new System.Drawing.Size(158, 25);
            this.InspRenarUiButton.StateStyles.FormatStyle.BackColor = System.Drawing.Color.Transparent;
            this.InspRenarUiButton.TabIndex = 30;
            this.InspRenarUiButton.Tag = "";
            this.InspRenarUiButton.Text = "Inspección RENAR";
            this.InspRenarUiButton.TextHorizontalAlignment = Janus.Windows.EditControls.TextAlignment.Near;
            this.InspRenarUiButton.UseThemes = false;
            this.InspRenarUiButton.Click += new System.EventHandler(this.InspRenarUiButton_Click);
            // 
            // RegDespUiButton
            // 
            this.RegDespUiButton.Appearance = Janus.Windows.UI.Appearance.FlatBorderless;
            this.RegDespUiButton.Cursor = System.Windows.Forms.Cursors.Hand;
            this.RegDespUiButton.Enabled = false;
            this.RegDespUiButton.FlatBorderColor = System.Drawing.Color.Transparent;
            this.RegDespUiButton.Icon = ((System.Drawing.Icon)(resources.GetObject("RegDespUiButton.Icon")));
            this.RegDespUiButton.Location = new System.Drawing.Point(8, 85);
            this.RegDespUiButton.Name = "RegDespUiButton";
            this.RegDespUiButton.ShowFocusRectangle = false;
            this.RegDespUiButton.Size = new System.Drawing.Size(158, 25);
            this.RegDespUiButton.StateStyles.FormatStyle.BackColor = System.Drawing.Color.Transparent;
            this.RegDespUiButton.TabIndex = 29;
            this.RegDespUiButton.Tag = "";
            this.RegDespUiButton.Text = "Registro de Despacho";
            this.RegDespUiButton.TextHorizontalAlignment = Janus.Windows.EditControls.TextAlignment.Near;
            this.RegDespUiButton.UseThemes = false;
            this.RegDespUiButton.Click += new System.EventHandler(this.RegDespUiButton_Click);
            // 
            // RecepDocsUiButton
            // 
            this.RecepDocsUiButton.Appearance = Janus.Windows.UI.Appearance.FlatBorderless;
            this.RecepDocsUiButton.Cursor = System.Windows.Forms.Cursors.Hand;
            this.RecepDocsUiButton.Enabled = false;
            this.RecepDocsUiButton.FlatBorderColor = System.Drawing.Color.Transparent;
            this.RecepDocsUiButton.Icon = ((System.Drawing.Icon)(resources.GetObject("RecepDocsUiButton.Icon")));
            this.RecepDocsUiButton.Location = new System.Drawing.Point(8, 60);
            this.RecepDocsUiButton.Name = "RecepDocsUiButton";
            this.RecepDocsUiButton.ShowFocusRectangle = false;
            this.RecepDocsUiButton.Size = new System.Drawing.Size(158, 25);
            this.RecepDocsUiButton.StateStyles.FormatStyle.BackColor = System.Drawing.Color.Transparent;
            this.RecepDocsUiButton.TabIndex = 28;
            this.RecepDocsUiButton.Tag = "";
            this.RecepDocsUiButton.Text = "Recepción de Documentos";
            this.RecepDocsUiButton.TextHorizontalAlignment = Janus.Windows.EditControls.TextAlignment.Near;
            this.RecepDocsUiButton.UseThemes = false;
            this.RecepDocsUiButton.Click += new System.EventHandler(this.RecepDocsUiButton_Click);
            // 
            // IngInfoEmbUiButton
            // 
            this.IngInfoEmbUiButton.Appearance = Janus.Windows.UI.Appearance.FlatBorderless;
            this.IngInfoEmbUiButton.Cursor = System.Windows.Forms.Cursors.Hand;
            this.IngInfoEmbUiButton.Enabled = false;
            this.IngInfoEmbUiButton.FlatBorderColor = System.Drawing.Color.Transparent;
            this.IngInfoEmbUiButton.Icon = ((System.Drawing.Icon)(resources.GetObject("IngInfoEmbUiButton.Icon")));
            this.IngInfoEmbUiButton.Location = new System.Drawing.Point(8, 35);
            this.IngInfoEmbUiButton.Name = "IngInfoEmbUiButton";
            this.IngInfoEmbUiButton.ShowFocusRectangle = false;
            this.IngInfoEmbUiButton.Size = new System.Drawing.Size(158, 25);
            this.IngInfoEmbUiButton.StateStyles.FormatStyle.BackColor = System.Drawing.Color.Transparent;
            this.IngInfoEmbUiButton.TabIndex = 27;
            this.IngInfoEmbUiButton.Tag = "";
            this.IngInfoEmbUiButton.Text = "Ingreso Info Embarque";
            this.IngInfoEmbUiButton.TextHorizontalAlignment = Janus.Windows.EditControls.TextAlignment.Near;
            this.IngInfoEmbUiButton.UseThemes = false;
            this.IngInfoEmbUiButton.Click += new System.EventHandler(this.IngInfoEmbUiButton_Click);
            // 
            // EnviarAUiButton
            // 
            this.EnviarAUiButton.Appearance = Janus.Windows.UI.Appearance.FlatBorderless;
            this.EnviarAUiButton.ButtonStyle = Janus.Windows.EditControls.ButtonStyle.DropDownButton;
            this.EnviarAUiButton.Cursor = System.Windows.Forms.Cursors.Hand;
            this.EnviarAUiButton.DropDownContextMenu = this.EnviarAUiContextMenu;
            this.EnviarAUiButton.FlatBorderColor = System.Drawing.Color.Transparent;
            this.EnviarAUiButton.Icon = ((System.Drawing.Icon)(resources.GetObject("EnviarAUiButton.Icon")));
            this.EnviarAUiButton.Location = new System.Drawing.Point(8, 260);
            this.EnviarAUiButton.Name = "EnviarAUiButton";
            this.EnviarAUiButton.ShowFocusRectangle = false;
            this.EnviarAUiButton.Size = new System.Drawing.Size(158, 25);
            this.EnviarAUiButton.StateStyles.FormatStyle.BackColor = System.Drawing.Color.Transparent;
            this.EnviarAUiButton.StateStyles.FormatStyle.ForeColor = System.Drawing.Color.Navy;
            this.EnviarAUiButton.TabIndex = 26;
            this.EnviarAUiButton.Text = "Enviar a";
            this.EnviarAUiButton.TextHorizontalAlignment = Janus.Windows.EditControls.TextAlignment.Near;
            this.EnviarAUiButton.UseThemes = false;
            // 
            // AltaUiButton
            // 
            this.AltaUiButton.Appearance = Janus.Windows.UI.Appearance.FlatBorderless;
            this.AltaUiButton.Cursor = System.Windows.Forms.Cursors.Hand;
            this.AltaUiButton.FlatBorderColor = System.Drawing.Color.Transparent;
            this.AltaUiButton.Icon = ((System.Drawing.Icon)(resources.GetObject("AltaUiButton.Icon")));
            this.AltaUiButton.Location = new System.Drawing.Point(8, 10);
            this.AltaUiButton.Name = "AltaUiButton";
            this.AltaUiButton.ShowFocusRectangle = false;
            this.AltaUiButton.Size = new System.Drawing.Size(158, 25);
            this.AltaUiButton.StateStyles.FormatStyle.BackColor = System.Drawing.Color.Transparent;
            this.AltaUiButton.TabIndex = 24;
            this.AltaUiButton.Tag = "";
            this.AltaUiButton.Text = "Alta";
            this.AltaUiButton.TextHorizontalAlignment = Janus.Windows.EditControls.TextAlignment.Near;
            this.AltaUiButton.UseThemes = false;
            this.AltaUiButton.Click += new System.EventHandler(this.AltaUiButton_Click);
            // 
            // BrowserUiTab
            // 
            this.BrowserUiTab.BackColor = System.Drawing.Color.Transparent;
            this.BrowserUiTab.Controls.Add(this.TabBrowserUiTabPage);
            this.BrowserUiTab.Controls.Add(this.TabFiltroUiTabPage);
            this.BrowserUiTab.Dock = System.Windows.Forms.DockStyle.Fill;
            this.BrowserUiTab.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BrowserUiTab.Location = new System.Drawing.Point(5, 30);
            this.BrowserUiTab.MultiLine = true;
            this.BrowserUiTab.Name = "BrowserUiTab";
            this.BrowserUiTab.ShowFocusRectangle = false;
            this.BrowserUiTab.Size = new System.Drawing.Size(948, 468);
            this.BrowserUiTab.SizeMode = System.Windows.Forms.TabSizeMode.FillToRight;
            this.BrowserUiTab.TabIndex = 9;
            this.BrowserUiTab.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
            this.TabBrowserUiTabPage,
            this.TabFiltroUiTabPage});
            this.BrowserUiTab.TabsStateStyles.FormatStyle.ForeColor = System.Drawing.Color.DimGray;
            this.BrowserUiTab.TabsStateStyles.SelectedFormatStyle.ForeColor = System.Drawing.Color.Navy;
            this.BrowserUiTab.TabStripFormatStyle.FontBold = Janus.Windows.UI.TriState.True;
            this.BrowserUiTab.Tag = "";
            this.BrowserUiTab.UseThemes = false;
            this.BrowserUiTab.VisualStyle = Janus.Windows.UI.Tab.TabVisualStyle.Office2003;
            this.BrowserUiTab.SelectedTabChanged += new Janus.Windows.UI.Tab.TabEventHandler(this.BrowserUiTab_SelectedTabChanged);
            // 
            // TabBrowserUiTabPage
            // 
            this.TabBrowserUiTabPage.Controls.Add(this.BrowserPanel);
            this.TabBrowserUiTabPage.Key = "OrdenCompra";
            this.TabBrowserUiTabPage.Location = new System.Drawing.Point(1, 21);
            this.TabBrowserUiTabPage.Name = "TabBrowserUiTabPage";
            this.TabBrowserUiTabPage.Size = new System.Drawing.Size(946, 446);
            this.TabBrowserUiTabPage.StateStyles.HotFormatStyle.BackColor = System.Drawing.Color.PeachPuff;
            this.TabBrowserUiTabPage.TabIndex = 1;
            this.TabBrowserUiTabPage.Tag = "Detalle";
            this.TabBrowserUiTabPage.Text = "Órdenes de Compra";
            // 
            // TabFiltroUiTabPage
            // 
            this.TabFiltroUiTabPage.Controls.Add(this.FiltroPanel);
            this.TabFiltroUiTabPage.Key = "Filtro";
            this.TabFiltroUiTabPage.Location = new System.Drawing.Point(1, 21);
            this.TabFiltroUiTabPage.Name = "TabFiltroUiTabPage";
            this.TabFiltroUiTabPage.Size = new System.Drawing.Size(946, 446);
            this.TabFiltroUiTabPage.StateStyles.HotFormatStyle.BackColor = System.Drawing.Color.Cornsilk;
            this.TabFiltroUiTabPage.TabIndex = 0;
            this.TabFiltroUiTabPage.Tag = "Detalle";
            this.TabFiltroUiTabPage.Text = "Filtro avanzado";
            this.TabFiltroUiTabPage.Visible = false;
            // 
            // FiltroPanel
            // 
            this.FiltroPanel.BackColor = System.Drawing.Color.Cornsilk;
            this.FiltroPanel.Controls.Add(this.EjecutarSeleccionUiButton);
            this.FiltroPanel.Controls.Add(this.CancelarUiButton);
            this.FiltroPanel.Controls.Add(this.nicePanel3);
            this.FiltroPanel.Controls.Add(this.nicePanel2);
            this.FiltroPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.FiltroPanel.Location = new System.Drawing.Point(0, 0);
            this.FiltroPanel.Name = "FiltroPanel";
            this.FiltroPanel.Padding = new System.Windows.Forms.Padding(10);
            this.FiltroPanel.Size = new System.Drawing.Size(946, 446);
            this.FiltroPanel.TabIndex = 5;
            // 
            // EjecutarSeleccionUiButton
            // 
            this.EjecutarSeleccionUiButton.Appearance = Janus.Windows.UI.Appearance.FlatBorderless;
            this.EjecutarSeleccionUiButton.ButtonStyle = Janus.Windows.EditControls.ButtonStyle.Button;
            this.EjecutarSeleccionUiButton.Cursor = System.Windows.Forms.Cursors.Hand;
            this.EjecutarSeleccionUiButton.FlatBorderColor = System.Drawing.Color.Navy;
            this.EjecutarSeleccionUiButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.EjecutarSeleccionUiButton.Icon = ((System.Drawing.Icon)(resources.GetObject("EjecutarSeleccionUiButton.Icon")));
            this.EjecutarSeleccionUiButton.Location = new System.Drawing.Point(192, 327);
            this.EjecutarSeleccionUiButton.Name = "EjecutarSeleccionUiButton";
            this.EjecutarSeleccionUiButton.ShowFocusRectangle = false;
            this.EjecutarSeleccionUiButton.Size = new System.Drawing.Size(96, 24);
            this.EjecutarSeleccionUiButton.StateStyles.FormatStyle.BackColor = System.Drawing.Color.Transparent;
            this.EjecutarSeleccionUiButton.StateStyles.FormatStyle.ForeColor = System.Drawing.Color.Navy;
            this.EjecutarSeleccionUiButton.TabIndex = 9018;
            this.EjecutarSeleccionUiButton.Text = "Aplicar filtro";
            this.EjecutarSeleccionUiButton.TextHorizontalAlignment = Janus.Windows.EditControls.TextAlignment.Near;
            this.EjecutarSeleccionUiButton.UseThemes = false;
            this.EjecutarSeleccionUiButton.Click += new System.EventHandler(this.ActualizarBrowserGrid);
            // 
            // CancelarUiButton
            // 
            this.CancelarUiButton.Appearance = Janus.Windows.UI.Appearance.FlatBorderless;
            this.CancelarUiButton.ButtonStyle = Janus.Windows.EditControls.ButtonStyle.Button;
            this.CancelarUiButton.Cursor = System.Windows.Forms.Cursors.Hand;
            this.CancelarUiButton.FlatBorderColor = System.Drawing.Color.Navy;
            this.CancelarUiButton.Icon = ((System.Drawing.Icon)(resources.GetObject("CancelarUiButton.Icon")));
            this.CancelarUiButton.Location = new System.Drawing.Point(494, 327);
            this.CancelarUiButton.Name = "CancelarUiButton";
            this.CancelarUiButton.ShowFocusRectangle = false;
            this.CancelarUiButton.Size = new System.Drawing.Size(72, 24);
            this.CancelarUiButton.StateStyles.FormatStyle.BackColor = System.Drawing.Color.Transparent;
            this.CancelarUiButton.StateStyles.FormatStyle.ForeColor = System.Drawing.Color.Navy;
            this.CancelarUiButton.TabIndex = 9017;
            this.CancelarUiButton.Text = "Cancelar";
            this.CancelarUiButton.TextHorizontalAlignment = Janus.Windows.EditControls.TextAlignment.Far;
            this.CancelarUiButton.UseThemes = false;
            this.CancelarUiButton.Click += new System.EventHandler(this.CancelarUiButton_Click);
            // 
            // nicePanel3
            // 
            this.nicePanel3.BackColor = System.Drawing.Color.Transparent;
            this.nicePanel3.CollapseButton = false;
            containerImage1.Alignment = System.Drawing.ContentAlignment.BottomRight;
            containerImage1.ClipArt = PureComponents.NicePanel.ImageClipArt.None;
            containerImage1.Image = null;
            containerImage1.Size = PureComponents.NicePanel.ContainerImageSize.Small;
            containerImage1.Transparency = 50;
            this.nicePanel3.ContainerImage = containerImage1;
            this.nicePanel3.ContextMenuButton = false;
            this.nicePanel3.Controls.Add(this.label2);
            this.nicePanel3.Controls.Add(this.label4);
            this.nicePanel3.Controls.Add(this.FechaHstCalendarCombo);
            this.nicePanel3.Controls.Add(this.FechaDsdCalendarCombo);
            this.nicePanel3.Controls.Add(this.FechaLabel);
            headerImage1.ClipArt = PureComponents.NicePanel.ImageClipArt.None;
            headerImage1.Image = null;
            this.nicePanel3.FooterImage = headerImage1;
            this.nicePanel3.FooterText = "";
            this.nicePanel3.FooterVisible = false;
            this.nicePanel3.ForeColor = System.Drawing.Color.Black;
            headerImage2.ClipArt = PureComponents.NicePanel.ImageClipArt.None;
            headerImage2.Image = null;
            this.nicePanel3.HeaderImage = headerImage2;
            this.nicePanel3.HeaderText = "Periodo";
            this.nicePanel3.IsExpanded = true;
            this.nicePanel3.Location = new System.Drawing.Point(8, 8);
            this.nicePanel3.Name = "nicePanel3";
            this.nicePanel3.OriginalFooterVisible = false;
            this.nicePanel3.OriginalHeight = 0;
            this.nicePanel3.ShowChildFocus = false;
            this.nicePanel3.Size = new System.Drawing.Size(176, 104);
            containerStyle1.BackColor = System.Drawing.Color.Transparent;
            containerStyle1.BaseColor = System.Drawing.Color.Transparent;
            containerStyle1.BorderColor = System.Drawing.Color.Brown;
            containerStyle1.BorderStyle = PureComponents.NicePanel.BorderStyle.Solid;
            containerStyle1.CaptionAlign = PureComponents.NicePanel.CaptionAlign.Left;
            containerStyle1.FadeColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(207)))), ((int)(((byte)(152)))));
            containerStyle1.FillStyle = PureComponents.NicePanel.FillStyle.Flat;
            containerStyle1.FlashItemBackColor = System.Drawing.Color.Red;
            containerStyle1.FocusItemBackColor = System.Drawing.Color.White;
            containerStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            containerStyle1.ForeColor = System.Drawing.Color.Black;
            containerStyle1.Shape = PureComponents.NicePanel.Shape.Rounded;
            panelStyle1.ContainerStyle = containerStyle1;
            panelHeaderStyle1.BackColor = System.Drawing.Color.ForestGreen;
            panelHeaderStyle1.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(172)))), ((int)(((byte)(191)))), ((int)(((byte)(227)))));
            panelHeaderStyle1.FadeColor = System.Drawing.Color.LightGreen;
            panelHeaderStyle1.FillStyle = PureComponents.NicePanel.FillStyle.HorizontalFading;
            panelHeaderStyle1.FlashBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(122)))), ((int)(((byte)(1)))));
            panelHeaderStyle1.FlashFadeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(215)))), ((int)(((byte)(159)))));
            panelHeaderStyle1.FlashForeColor = System.Drawing.Color.White;
            panelHeaderStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
            panelHeaderStyle1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(184)))), ((int)(((byte)(233)))), ((int)(((byte)(184)))));
            panelHeaderStyle1.Size = PureComponents.NicePanel.PanelHeaderSize.Small;
            panelStyle1.FooterStyle = panelHeaderStyle1;
            panelHeaderStyle2.BackColor = System.Drawing.Color.Brown;
            panelHeaderStyle2.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(184)))), ((int)(((byte)(233)))), ((int)(((byte)(184)))));
            panelHeaderStyle2.FadeColor = System.Drawing.Color.Peru;
            panelHeaderStyle2.FillStyle = PureComponents.NicePanel.FillStyle.DiagonalBackward;
            panelHeaderStyle2.FlashBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(122)))), ((int)(((byte)(1)))));
            panelHeaderStyle2.FlashFadeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(215)))), ((int)(((byte)(159)))));
            panelHeaderStyle2.FlashForeColor = System.Drawing.Color.White;
            panelHeaderStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
            panelHeaderStyle2.ForeColor = System.Drawing.Color.White;
            panelHeaderStyle2.Size = PureComponents.NicePanel.PanelHeaderSize.Small;
            panelHeaderStyle2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            panelStyle1.HeaderStyle = panelHeaderStyle2;
            this.nicePanel3.Style = panelStyle1;
            this.nicePanel3.TabIndex = 9013;
            // 
            // label2
            // 
            this.label2.ForeColor = System.Drawing.Color.Navy;
            this.label2.Location = new System.Drawing.Point(48, 16);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(80, 20);
            this.label2.TabIndex = 9014;
            this.label2.Text = "Fecha";
            this.label2.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            // 
            // label4
            // 
            this.label4.ForeColor = System.Drawing.Color.Navy;
            this.label4.Location = new System.Drawing.Point(16, 64);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(24, 20);
            this.label4.TabIndex = 9012;
            this.label4.Text = "al";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // FechaHstCalendarCombo
            // 
            this.FechaHstCalendarCombo.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.FechaHstCalendarCombo.DropDownCalendar.FirstMonth = new System.DateTime(2011, 4, 1, 0, 0, 0, 0);
            this.FechaHstCalendarCombo.DropDownCalendar.Location = new System.Drawing.Point(0, 0);
            this.FechaHstCalendarCombo.DropDownCalendar.Name = "";
            this.FechaHstCalendarCombo.DropDownCalendar.Size = new System.Drawing.Size(170, 173);
            this.FechaHstCalendarCombo.DropDownCalendar.TabIndex = 0;
            this.FechaHstCalendarCombo.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
            this.FechaHstCalendarCombo.FlatBorderColor = System.Drawing.SystemColors.ActiveBorder;
            this.FechaHstCalendarCombo.ForeColor = System.Drawing.Color.Black;
            this.FechaHstCalendarCombo.Location = new System.Drawing.Point(48, 64);
            this.FechaHstCalendarCombo.Name = "FechaHstCalendarCombo";
            this.FechaHstCalendarCombo.Size = new System.Drawing.Size(96, 20);
            this.FechaHstCalendarCombo.TabIndex = 9007;
            this.FechaHstCalendarCombo.ThemedAreas = Janus.Windows.CalendarCombo.ThemedArea.None;
            this.FechaHstCalendarCombo.TodayButtonText = "Hoy";
            this.FechaHstCalendarCombo.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
            // 
            // FechaDsdCalendarCombo
            // 
            this.FechaDsdCalendarCombo.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.FechaDsdCalendarCombo.DropDownCalendar.FirstMonth = new System.DateTime(2011, 4, 1, 0, 0, 0, 0);
            this.FechaDsdCalendarCombo.DropDownCalendar.Location = new System.Drawing.Point(0, 0);
            this.FechaDsdCalendarCombo.DropDownCalendar.Name = "";
            this.FechaDsdCalendarCombo.DropDownCalendar.Size = new System.Drawing.Size(170, 173);
            this.FechaDsdCalendarCombo.DropDownCalendar.TabIndex = 0;
            this.FechaDsdCalendarCombo.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
            this.FechaDsdCalendarCombo.FlatBorderColor = System.Drawing.SystemColors.ActiveBorder;
            this.FechaDsdCalendarCombo.ForeColor = System.Drawing.Color.Black;
            this.FechaDsdCalendarCombo.Location = new System.Drawing.Point(48, 40);
            this.FechaDsdCalendarCombo.Name = "FechaDsdCalendarCombo";
            this.FechaDsdCalendarCombo.Size = new System.Drawing.Size(96, 20);
            this.FechaDsdCalendarCombo.TabIndex = 9004;
            this.FechaDsdCalendarCombo.ThemedAreas = Janus.Windows.CalendarCombo.ThemedArea.None;
            this.FechaDsdCalendarCombo.TodayButtonText = "Hoy";
            this.FechaDsdCalendarCombo.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Office2003;
            // 
            // FechaLabel
            // 
            this.FechaLabel.ForeColor = System.Drawing.Color.Navy;
            this.FechaLabel.Location = new System.Drawing.Point(16, 40);
            this.FechaLabel.Name = "FechaLabel";
            this.FechaLabel.Size = new System.Drawing.Size(24, 20);
            this.FechaLabel.TabIndex = 9003;
            this.FechaLabel.Text = "del";
            this.FechaLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // nicePanel2
            // 
            this.nicePanel2.BackColor = System.Drawing.Color.Transparent;
            this.nicePanel2.CollapseButton = false;
            containerImage2.Alignment = System.Drawing.ContentAlignment.BottomRight;
            containerImage2.ClipArt = PureComponents.NicePanel.ImageClipArt.None;
            containerImage2.Image = null;
            containerImage2.Size = PureComponents.NicePanel.ContainerImageSize.Small;
            containerImage2.Transparency = 50;
            this.nicePanel2.ContainerImage = containerImage2;
            this.nicePanel2.ContextMenuButton = false;
            this.nicePanel2.Controls.Add(this.EstadoUiCheckBox);
            this.nicePanel2.Controls.Add(this.EstadoTreeView);
            headerImage3.ClipArt = PureComponents.NicePanel.ImageClipArt.None;
            headerImage3.Image = null;
            this.nicePanel2.FooterImage = headerImage3;
            this.nicePanel2.FooterText = "";
            this.nicePanel2.FooterVisible = false;
            this.nicePanel2.ForeColor = System.Drawing.Color.Black;
            headerImage4.ClipArt = PureComponents.NicePanel.ImageClipArt.None;
            headerImage4.Image = null;
            this.nicePanel2.HeaderImage = headerImage4;
            this.nicePanel2.HeaderText = "Estado(s)";
            this.nicePanel2.IsExpanded = true;
            this.nicePanel2.Location = new System.Drawing.Point(192, 8);
            this.nicePanel2.Name = "nicePanel2";
            this.nicePanel2.OriginalFooterVisible = false;
            this.nicePanel2.OriginalHeight = 0;
            this.nicePanel2.ShowChildFocus = false;
            this.nicePanel2.Size = new System.Drawing.Size(374, 313);
            containerStyle2.BackColor = System.Drawing.Color.Transparent;
            containerStyle2.BaseColor = System.Drawing.Color.Transparent;
            containerStyle2.BorderColor = System.Drawing.Color.Brown;
            containerStyle2.BorderStyle = PureComponents.NicePanel.BorderStyle.Solid;
            containerStyle2.CaptionAlign = PureComponents.NicePanel.CaptionAlign.Left;
            containerStyle2.FadeColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(207)))), ((int)(((byte)(152)))));
            containerStyle2.FillStyle = PureComponents.NicePanel.FillStyle.Flat;
            containerStyle2.FlashItemBackColor = System.Drawing.Color.Red;
            containerStyle2.FocusItemBackColor = System.Drawing.Color.White;
            containerStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            containerStyle2.ForeColor = System.Drawing.Color.Black;
            containerStyle2.Shape = PureComponents.NicePanel.Shape.Rounded;
            panelStyle2.ContainerStyle = containerStyle2;
            panelHeaderStyle3.BackColor = System.Drawing.Color.ForestGreen;
            panelHeaderStyle3.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(172)))), ((int)(((byte)(191)))), ((int)(((byte)(227)))));
            panelHeaderStyle3.FadeColor = System.Drawing.Color.LightGreen;
            panelHeaderStyle3.FillStyle = PureComponents.NicePanel.FillStyle.HorizontalFading;
            panelHeaderStyle3.FlashBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(122)))), ((int)(((byte)(1)))));
            panelHeaderStyle3.FlashFadeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(215)))), ((int)(((byte)(159)))));
            panelHeaderStyle3.FlashForeColor = System.Drawing.Color.White;
            panelHeaderStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
            panelHeaderStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(184)))), ((int)(((byte)(233)))), ((int)(((byte)(184)))));
            panelHeaderStyle3.Size = PureComponents.NicePanel.PanelHeaderSize.Small;
            panelStyle2.FooterStyle = panelHeaderStyle3;
            panelHeaderStyle4.BackColor = System.Drawing.Color.Brown;
            panelHeaderStyle4.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(184)))), ((int)(((byte)(233)))), ((int)(((byte)(184)))));
            panelHeaderStyle4.FadeColor = System.Drawing.Color.Peru;
            panelHeaderStyle4.FillStyle = PureComponents.NicePanel.FillStyle.DiagonalBackward;
            panelHeaderStyle4.FlashBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(122)))), ((int)(((byte)(1)))));
            panelHeaderStyle4.FlashFadeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(215)))), ((int)(((byte)(159)))));
            panelHeaderStyle4.FlashForeColor = System.Drawing.Color.White;
            panelHeaderStyle4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
            panelHeaderStyle4.ForeColor = System.Drawing.Color.White;
            panelHeaderStyle4.Size = PureComponents.NicePanel.PanelHeaderSize.Small;
            panelHeaderStyle4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            panelStyle2.HeaderStyle = panelHeaderStyle4;
            this.nicePanel2.Style = panelStyle2;
            this.nicePanel2.TabIndex = 9012;
            // 
            // EstadoUiCheckBox
            // 
            this.EstadoUiCheckBox.ForeColor = System.Drawing.Color.Navy;
            this.EstadoUiCheckBox.Location = new System.Drawing.Point(10, 2);
            this.EstadoUiCheckBox.Name = "EstadoUiCheckBox";
            this.EstadoUiCheckBox.ShowFocusRectangle = false;
            this.EstadoUiCheckBox.Size = new System.Drawing.Size(20, 16);
            this.EstadoUiCheckBox.TabIndex = 9013;
            this.EstadoUiCheckBox.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
            this.EstadoUiCheckBox.UseThemes = false;
            this.EstadoUiCheckBox.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
            this.EstadoUiCheckBox.CheckedChanged += new System.EventHandler(this.EstadoUiCheckBox_CheckedChanged);
            // 
            // EstadoTreeView
            // 
            this.EstadoTreeView.BackColor = System.Drawing.Color.Cornsilk;
            this.EstadoTreeView.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.EstadoTreeView.CheckBoxes = true;
            this.EstadoTreeView.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.EstadoTreeView.ForeColor = System.Drawing.Color.Navy;
            this.EstadoTreeView.FullRowSelect = true;
            this.EstadoTreeView.Location = new System.Drawing.Point(8, 24);
            this.EstadoTreeView.Name = "EstadoTreeView";
            this.EstadoTreeView.ShowRootLines = false;
            this.EstadoTreeView.Size = new System.Drawing.Size(363, 286);
            this.EstadoTreeView.TabIndex = 2;
            // 
            // panel4
            // 
            this.panel4.BackColor = System.Drawing.Color.Transparent;
            this.panel4.Controls.Add(this.BrowserUiTab);
            this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel4.Location = new System.Drawing.Point(0, 0);
            this.panel4.Name = "panel4";
            this.panel4.Padding = new System.Windows.Forms.Padding(5, 30, 5, 5);
            this.panel4.Size = new System.Drawing.Size(958, 503);
            this.panel4.TabIndex = 31;
            // 
            // OrdenCompraBrowserForm
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(958, 503);
            this.Name = "OrdenCompraBrowserForm";
            this.Text = "PrecioBrowserForm";
            ((System.ComponentModel.ISupportInitialize)(this.EnviarAUiCommandManager)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.EnviarAUiContextMenu)).EndInit();
            this.FondoNicePanel.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.BotonesUiPanelManager)).EndInit();
            this.BrowserPanel.ResumeLayout(false);
            this.BrowserGridsPanel.ResumeLayout(false);
            this.BrowserGridPanel.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.BrowserGridEX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.HerramientasUiPanel)).EndInit();
            this.HerramientasUiPanel.ResumeLayout(false);
            this.HerramientasUiPanelContainer.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.BrowserUiTab)).EndInit();
            this.BrowserUiTab.ResumeLayout(false);
            this.TabBrowserUiTabPage.ResumeLayout(false);
            this.TabFiltroUiTabPage.ResumeLayout(false);
            this.FiltroPanel.ResumeLayout(false);
            this.nicePanel3.ResumeLayout(false);
            this.nicePanel2.ResumeLayout(false);
            this.panel4.ResumeLayout(false);
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_BENHAN_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();
     Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_quanly_baocao));
     this.toolStripStatusLabel11 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel9 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel7 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel5 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.sysColor = new System.Windows.Forms.ToolStrip();
     this.cmdThemMoi = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.cmdSua = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.cmdXoa = new System.Windows.Forms.ToolStripButton();
     this.cmdXML = new System.Windows.Forms.ToolStripButton();
     this.cmdUpdateXml = new System.Windows.Forms.ToolStripButton();
     this.cmdThoat = new System.Windows.Forms.ToolStripButton();
     this.grdList = new Janus.Windows.GridEX.GridEX();
     this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.statusStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.sysColor.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     this.SuspendLayout();
     //
     // toolStripStatusLabel11
     //
     this.toolStripStatusLabel11.Name = "toolStripStatusLabel11";
     this.toolStripStatusLabel11.Size = new System.Drawing.Size(106, 17);
     this.toolStripStatusLabel11.Text = "Escape: Thoát, hủy";
     //
     // toolStripStatusLabel9
     //
     this.toolStripStatusLabel9.Name = "toolStripStatusLabel9";
     this.toolStripStatusLabel9.Size = new System.Drawing.Size(112, 17);
     this.toolStripStatusLabel9.Text = "Ctrl+P: In ấn             ";
     //
     // toolStripStatusLabel7
     //
     this.toolStripStatusLabel7.Name = "toolStripStatusLabel7";
     this.toolStripStatusLabel7.Size = new System.Drawing.Size(102, 17);
     this.toolStripStatusLabel7.Text = "Ctrl+S: Lưu            ";
     //
     // toolStripStatusLabel5
     //
     this.toolStripStatusLabel5.Name = "toolStripStatusLabel5";
     this.toolStripStatusLabel5.Size = new System.Drawing.Size(83, 17);
     this.toolStripStatusLabel5.Text = "Del: Xóa           ";
     //
     // toolStripStatusLabel3
     //
     this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
     this.toolStripStatusLabel3.Size = new System.Drawing.Size(135, 17);
     this.toolStripStatusLabel3.Text = "Ctrl+C: Cập nhập            ";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(128, 17);
     this.toolStripStatusLabel1.Text = "Ctrl+N: Thêm mới        ";
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1,
     this.toolStripStatusLabel3,
     this.toolStripStatusLabel5,
     this.toolStripStatusLabel7,
     this.toolStripStatusLabel9,
     this.toolStripStatusLabel11});
     this.statusStrip1.Location = new System.Drawing.Point(0, 599);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(944, 22);
     this.statusStrip1.TabIndex = 45;
     this.statusStrip1.Text = "statusStrip1";
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // sysColor
     //
     this.sysColor.BackColor = System.Drawing.SystemColors.Control;
     this.sysColor.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.cmdThemMoi,
     this.toolStripSeparator1,
     this.cmdSua,
     this.toolStripSeparator2,
     this.cmdXoa,
     this.cmdXML,
     this.cmdUpdateXml,
     this.cmdThoat});
     this.sysColor.Location = new System.Drawing.Point(0, 0);
     this.sysColor.Name = "sysColor";
     this.sysColor.Size = new System.Drawing.Size(944, 31);
     this.sysColor.TabIndex = 47;
     this.sysColor.Text = "toolStrip1";
     //
     // cmdThemMoi
     //
     this.cmdThemMoi.Font = new System.Drawing.Font("Tahoma", 9F);
     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(90, 28);
     this.cmdThemMoi.Text = "&Thêm mới";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 31);
     //
     // cmdSua
     //
     this.cmdSua.Font = new System.Drawing.Font("Tahoma", 9F);
     this.cmdSua.Image = ((System.Drawing.Image)(resources.GetObject("cmdSua.Image")));
     this.cmdSua.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdSua.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdSua.Name = "cmdSua";
     this.cmdSua.Size = new System.Drawing.Size(115, 28);
     this.cmdSua.Text = "&Sửa thông tin ";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 31);
     //
     // 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 ";
     //
     // cmdXML
     //
     this.cmdXML.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdXML.Image = ((System.Drawing.Image)(resources.GetObject("cmdXML.Image")));
     this.cmdXML.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdXML.Name = "cmdXML";
     this.cmdXML.Size = new System.Drawing.Size(81, 28);
     this.cmdXML.Text = "&Xuất XML";
     this.cmdXML.Click += new System.EventHandler(this.cmdXML_Click);
     //
     // cmdUpdateXml
     //
     this.cmdUpdateXml.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdUpdateXml.Image = ((System.Drawing.Image)(resources.GetObject("cmdUpdateXml.Image")));
     this.cmdUpdateXml.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdUpdateXml.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdUpdateXml.Name = "cmdUpdateXml";
     this.cmdUpdateXml.Size = new System.Drawing.Size(104, 28);
     this.cmdUpdateXml.Text = "&Update XML";
     this.cmdUpdateXml.Click += new System.EventHandler(this.cmdUpdateXml_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(91, 28);
     this.cmdThoat.Text = "&Thoát(Esc)";
     //
     // grdList
     //
     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", 9.75F, 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, 31);
     this.grdList.Name = "grdList";
     this.grdList.RecordNavigator = true;
     this.grdList.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.Size = new System.Drawing.Size(944, 568);
     this.grdList.TabIndex = 74;
     this.grdList.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // dataGridViewTextBoxColumn7
     //
     this.dataGridViewTextBoxColumn7.DataPropertyName = "Insurance_Level";
     this.dataGridViewTextBoxColumn7.HeaderText = "Mức bảo hiểm";
     this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
     //
     // dataGridViewTextBoxColumn6
     //
     this.dataGridViewTextBoxColumn6.DataPropertyName = "sDesc";
     this.dataGridViewTextBoxColumn6.HeaderText = "Mô tả thêm";
     this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
     this.dataGridViewTextBoxColumn6.ReadOnly = true;
     this.dataGridViewTextBoxColumn6.Width = 200;
     //
     // dataGridViewTextBoxColumn5
     //
     this.dataGridViewTextBoxColumn5.DataPropertyName = "sDesc";
     this.dataGridViewTextBoxColumn5.HeaderText = "Mô tả thêm";
     this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
     this.dataGridViewTextBoxColumn5.ReadOnly = true;
     this.dataGridViewTextBoxColumn5.Width = 200;
     //
     // dataGridViewTextBoxColumn4
     //
     this.dataGridViewTextBoxColumn4.DataPropertyName = "Desc";
     this.dataGridViewTextBoxColumn4.HeaderText = "Mô tả thêm";
     this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
     this.dataGridViewTextBoxColumn4.ReadOnly = true;
     this.dataGridViewTextBoxColumn4.Width = 200;
     //
     // DataGridViewTextBoxColumn3
     //
     this.DataGridViewTextBoxColumn3.DataPropertyName = "Desc";
     this.DataGridViewTextBoxColumn3.HeaderText = "Mô tả thêm";
     this.DataGridViewTextBoxColumn3.Name = "DataGridViewTextBoxColumn3";
     this.DataGridViewTextBoxColumn3.ReadOnly = true;
     this.DataGridViewTextBoxColumn3.Width = 200;
     //
     // DataGridViewTextBoxColumn2
     //
     this.DataGridViewTextBoxColumn2.DataPropertyName = "PaymentMethod_Name";
     this.DataGridViewTextBoxColumn2.HeaderText = "Tên PTTT";
     this.DataGridViewTextBoxColumn2.Name = "DataGridViewTextBoxColumn2";
     this.DataGridViewTextBoxColumn2.ReadOnly = true;
     this.DataGridViewTextBoxColumn2.Visible = false;
     this.DataGridViewTextBoxColumn2.Width = 200;
     //
     // DataGridViewTextBoxColumn1
     //
     this.DataGridViewTextBoxColumn1.DataPropertyName = "PaymentMethod_ID";
     this.DataGridViewTextBoxColumn1.HeaderText = "Mã PTTT";
     this.DataGridViewTextBoxColumn1.Name = "DataGridViewTextBoxColumn1";
     this.DataGridViewTextBoxColumn1.ReadOnly = true;
     this.DataGridViewTextBoxColumn1.Width = 80;
     //
     // frm_quanly_baocao
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(944, 621);
     this.Controls.Add(this.grdList);
     this.Controls.Add(this.sysColor);
     this.Controls.Add(this.statusStrip1);
     this.Name = "frm_quanly_baocao";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Quản lý báo cáo";
     this.Load += new System.EventHandler(this.frm_quanly_baocao_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frm_quanly_baocao_KeyDown);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.sysColor.ResumeLayout(false);
     this.sysColor.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #37
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_TiepDon_BN));
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem7 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem8 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem9 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.GridEX.GridEXLayout grdPhongKham_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     this.grpThongTinBN = new Janus.Windows.EditControls.UIGroupBox();
     this.cmdInCLS = new Janus.Windows.EditControls.UIButton();
     this.label6 = new System.Windows.Forms.Label();
     this.maskedEditBox1 = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.cmdSave = new Janus.Windows.EditControls.UIButton();
     this.label1 = new System.Windows.Forms.Label();
     this.cmdExit = new Janus.Windows.EditControls.UIButton();
     this.label19 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.lblMessage = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.editBox3 = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label14 = new System.Windows.Forms.Label();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.editBox2 = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label13 = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.editBox1 = new Janus.Windows.GridEX.EditControls.EditBox();
     this.cmdTimKiemBN = new Janus.Windows.EditControls.UIButton();
     this.txtCMT = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtDienThoai = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtNgaySinh = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtNamSinh = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtTenBN = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtTuoi = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtEmail = new Janus.Windows.GridEX.EditControls.EditBox();
     this.cboThanhPho = new System.Windows.Forms.ComboBox();
     this.cboObjectType = new Janus.Windows.EditControls.UIComboBox();
     this.txtDiaChi = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtTrieuChung = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtObjectTypeCode = new Janus.Windows.GridEX.EditControls.EditBox();
     this.cboGioiTinh = new Janus.Windows.EditControls.UIComboBox();
     this.dtDateTime = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.label10 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.txtPID = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtMaBN = new Janus.Windows.GridEX.EditControls.EditBox();
     this.uiGroupBox4 = new Janus.Windows.EditControls.UIGroupBox();
     this.uiGroupBox5 = new Janus.Windows.EditControls.UIGroupBox();
     this.uiGroupBox3 = new Janus.Windows.EditControls.UIGroupBox();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.errorProvider2 = new System.Windows.Forms.ErrorProvider(this.components);
     this.errorProvider3 = new System.Windows.Forms.ErrorProvider(this.components);
     this.errorProvider4 = new System.Windows.Forms.ErrorProvider(this.components);
     this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
     this.flpTestType = new System.Windows.Forms.FlowLayoutPanel();
     this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
     this.grdPhongKham = new Janus.Windows.GridEX.GridEX();
     this.uiTabPage2 = new Janus.Windows.UI.Tab.UITabPage();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     ((System.ComponentModel.ISupportInitialize)(this.grpThongTinBN)).BeginInit();
     this.grpThongTinBN.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox4)).BeginInit();
     this.uiGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
     this.uiGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPhongKham)).BeginInit();
     this.uiTabPage2.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // grpThongTinBN
     //
     this.grpThongTinBN.Controls.Add(this.cmdInCLS);
     this.grpThongTinBN.Controls.Add(this.label6);
     this.grpThongTinBN.Controls.Add(this.maskedEditBox1);
     this.grpThongTinBN.Controls.Add(this.cmdSave);
     this.grpThongTinBN.Controls.Add(this.label1);
     this.grpThongTinBN.Controls.Add(this.cmdExit);
     this.grpThongTinBN.Controls.Add(this.label19);
     this.grpThongTinBN.Controls.Add(this.label15);
     this.grpThongTinBN.Controls.Add(this.lblMessage);
     this.grpThongTinBN.Controls.Add(this.label8);
     this.grpThongTinBN.Controls.Add(this.label11);
     this.grpThongTinBN.Controls.Add(this.editBox3);
     this.grpThongTinBN.Controls.Add(this.label14);
     this.grpThongTinBN.Controls.Add(this.comboBox1);
     this.grpThongTinBN.Controls.Add(this.editBox2);
     this.grpThongTinBN.Controls.Add(this.label13);
     this.grpThongTinBN.Controls.Add(this.label20);
     this.grpThongTinBN.Controls.Add(this.label9);
     this.grpThongTinBN.Controls.Add(this.label5);
     this.grpThongTinBN.Controls.Add(this.label16);
     this.grpThongTinBN.Controls.Add(this.label7);
     this.grpThongTinBN.Controls.Add(this.label12);
     this.grpThongTinBN.Controls.Add(this.label18);
     this.grpThongTinBN.Controls.Add(this.editBox1);
     this.grpThongTinBN.Controls.Add(this.cmdTimKiemBN);
     this.grpThongTinBN.Controls.Add(this.txtCMT);
     this.grpThongTinBN.Controls.Add(this.txtDienThoai);
     this.grpThongTinBN.Controls.Add(this.txtNgaySinh);
     this.grpThongTinBN.Controls.Add(this.label4);
     this.grpThongTinBN.Controls.Add(this.txtNamSinh);
     this.grpThongTinBN.Controls.Add(this.txtTenBN);
     this.grpThongTinBN.Controls.Add(this.txtTuoi);
     this.grpThongTinBN.Controls.Add(this.txtEmail);
     this.grpThongTinBN.Controls.Add(this.cboThanhPho);
     this.grpThongTinBN.Controls.Add(this.cboObjectType);
     this.grpThongTinBN.Controls.Add(this.txtDiaChi);
     this.grpThongTinBN.Controls.Add(this.txtTrieuChung);
     this.grpThongTinBN.Controls.Add(this.txtObjectTypeCode);
     this.grpThongTinBN.Controls.Add(this.cboGioiTinh);
     this.grpThongTinBN.Controls.Add(this.dtDateTime);
     this.grpThongTinBN.Controls.Add(this.label10);
     this.grpThongTinBN.Controls.Add(this.label3);
     this.grpThongTinBN.Controls.Add(this.txtPID);
     this.grpThongTinBN.Controls.Add(this.label2);
     this.grpThongTinBN.Controls.Add(this.txtMaBN);
     this.grpThongTinBN.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpThongTinBN.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpThongTinBN.ForeColor = System.Drawing.Color.Black;
     this.grpThongTinBN.Location = new System.Drawing.Point(0, 0);
     this.grpThongTinBN.Name = "grpThongTinBN";
     this.grpThongTinBN.Size = new System.Drawing.Size(798, 327);
     this.grpThongTinBN.TabIndex = 0;
     this.grpThongTinBN.Text = "Thông tin bệnh nhân";
     //
     // cmdInCLS
     //
     this.cmdInCLS.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdInCLS.Location = new System.Drawing.Point(369, 285);
     this.cmdInCLS.Name = "cmdInCLS";
     this.cmdInCLS.Size = new System.Drawing.Size(169, 35);
     this.cmdInCLS.TabIndex = 0;
     this.cmdInCLS.Text = "In phiếu thanh toán";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.Black;
     this.label6.Location = new System.Drawing.Point(488, 89);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(57, 17);
     this.label6.TabIndex = 483;
     this.label6.Text = "Số nhà:";
     //
     // maskedEditBox1
     //
     this.maskedEditBox1.Location = new System.Drawing.Point(545, 85);
     this.maskedEditBox1.Name = "maskedEditBox1";
     this.maskedEditBox1.Numeric = true;
     this.maskedEditBox1.Size = new System.Drawing.Size(243, 22);
     this.maskedEditBox1.TabIndex = 482;
     this.maskedEditBox1.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // cmdSave
     //
     this.cmdSave.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.cmdSave.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdSave.Image = ((System.Drawing.Image)(resources.GetObject("cmdSave.Image")));
     this.cmdSave.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdSave.Location = new System.Drawing.Point(545, 283);
     this.cmdSave.Name = "cmdSave";
     this.cmdSave.Size = new System.Drawing.Size(141, 38);
     this.cmdSave.TabIndex = 2;
     this.cmdSave.Text = "&Lưu thông tin(Ctrl+S)";
     this.cmdSave.Click += new System.EventHandler(this.cmdSave_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(30, 207);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(84, 17);
     this.label1.TabIndex = 481;
     this.label1.Text = "Triệu chứng";
     //
     // cmdExit
     //
     this.cmdExit.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.cmdExit.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdExit.Image = ((System.Drawing.Image)(resources.GetObject("cmdExit.Image")));
     this.cmdExit.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdExit.Location = new System.Drawing.Point(688, 283);
     this.cmdExit.Name = "cmdExit";
     this.cmdExit.Size = new System.Drawing.Size(101, 38);
     this.cmdExit.TabIndex = 3;
     this.cmdExit.Text = "Thoát(Esc)";
     this.cmdExit.Click += new System.EventHandler(this.cmdExit_Click);
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.ForeColor = System.Drawing.Color.Black;
     this.label19.Location = new System.Drawing.Point(543, 174);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(46, 17);
     this.label19.TabIndex = 480;
     this.label19.Text = "Email:";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.Color.Black;
     this.label15.Location = new System.Drawing.Point(251, 173);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(72, 17);
     this.label15.TabIndex = 479;
     this.label15.Text = "Điện thoại";
     //
     // lblMessage
     //
     this.lblMessage.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.lblMessage.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMessage.ForeColor = System.Drawing.Color.Red;
     this.lblMessage.Location = new System.Drawing.Point(115, 256);
     this.lblMessage.Name = "lblMessage";
     this.lblMessage.Size = new System.Drawing.Size(420, 24);
     this.lblMessage.TabIndex = 463;
     this.lblMessage.Text = "lblMessage";
     this.lblMessage.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     this.lblMessage.Visible = false;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.Black;
     this.label8.Location = new System.Drawing.Point(77, 176);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(37, 17);
     this.label8.TabIndex = 478;
     this.label8.Text = "CMT";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.Black;
     this.label11.Location = new System.Drawing.Point(63, 234);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(51, 17);
     this.label11.TabIndex = 477;
     this.label11.Text = "Địa chỉ";
     //
     // editBox3
     //
     this.editBox3.BackColor = System.Drawing.Color.White;
     this.editBox3.Location = new System.Drawing.Point(547, 139);
     this.editBox3.MaxLength = 10;
     this.editBox3.Name = "editBox3";
     this.editBox3.Size = new System.Drawing.Size(92, 22);
     this.editBox3.TabIndex = 476;
     this.editBox3.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.ForeColor = System.Drawing.Color.Black;
     this.label14.Location = new System.Drawing.Point(502, 142);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(43, 17);
     this.label14.TabIndex = 475;
     this.label14.Text = "Quận";
     this.label14.Click += new System.EventHandler(this.label14_Click_1);
     //
     // comboBox1
     //
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location = new System.Drawing.Point(643, 139);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(145, 23);
     this.comboBox1.TabIndex = 474;
     //
     // editBox2
     //
     this.editBox2.BackColor = System.Drawing.Color.White;
     this.editBox2.Location = new System.Drawing.Point(545, 114);
     this.editBox2.MaxLength = 10;
     this.editBox2.Name = "editBox2";
     this.editBox2.Size = new System.Drawing.Size(92, 22);
     this.editBox2.TabIndex = 473;
     this.editBox2.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.Color.Black;
     this.label13.Location = new System.Drawing.Point(488, 118);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(57, 17);
     this.label13.TabIndex = 472;
     this.label13.Text = "Phường";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.ForeColor = System.Drawing.Color.Black;
     this.label20.Location = new System.Drawing.Point(45, 142);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(69, 17);
     this.label20.TabIndex = 471;
     this.label20.Text = "Đối tượng";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.Color.Black;
     this.label9.Location = new System.Drawing.Point(45, 142);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(69, 17);
     this.label9.TabIndex = 471;
     this.label9.Text = "Đối tượng";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(54, 115);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(60, 17);
     this.label5.TabIndex = 470;
     this.label5.Text = "Giới tính";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.Black;
     this.label16.Location = new System.Drawing.Point(391, 89);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(36, 17);
     this.label16.TabIndex = 469;
     this.label16.Text = "Tuổi";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.Black;
     this.label7.Location = new System.Drawing.Point(253, 88);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(37, 17);
     this.label7.TabIndex = 468;
     this.label7.Text = "Năm";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.ForeColor = System.Drawing.Color.Black;
     this.label12.Location = new System.Drawing.Point(43, 88);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(71, 17);
     this.label12.TabIndex = 467;
     this.label12.Text = "Ngày sinh";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.Color.Black;
     this.label18.Location = new System.Drawing.Point(444, 55);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(76, 17);
     this.label18.TabIndex = 466;
     this.label18.Text = "Tên bố mẹ";
     //
     // editBox1
     //
     this.editBox1.BackColor = System.Drawing.Color.White;
     this.editBox1.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.editBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.editBox1.Location = new System.Drawing.Point(525, 54);
     this.editBox1.Name = "editBox1";
     this.editBox1.Size = new System.Drawing.Size(264, 23);
     this.editBox1.TabIndex = 465;
     //
     // cmdTimKiemBN
     //
     this.cmdTimKiemBN.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdTimKiemBN.Image = ((System.Drawing.Image)(resources.GetObject("cmdTimKiemBN.Image")));
     this.cmdTimKiemBN.Location = new System.Drawing.Point(745, 19);
     this.cmdTimKiemBN.Name = "cmdTimKiemBN";
     this.cmdTimKiemBN.Size = new System.Drawing.Size(43, 27);
     this.cmdTimKiemBN.TabIndex = 464;
     this.cmdTimKiemBN.TabStop = false;
     //
     // txtCMT
     //
     this.txtCMT.Location = new System.Drawing.Point(118, 172);
     this.txtCMT.Name = "txtCMT";
     this.txtCMT.Numeric = true;
     this.txtCMT.Size = new System.Drawing.Size(129, 22);
     this.txtCMT.TabIndex = 462;
     this.txtCMT.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // txtDienThoai
     //
     this.txtDienThoai.Location = new System.Drawing.Point(329, 172);
     this.txtDienThoai.Name = "txtDienThoai";
     this.txtDienThoai.Numeric = true;
     this.txtDienThoai.Size = new System.Drawing.Size(206, 22);
     this.txtDienThoai.TabIndex = 461;
     this.txtDienThoai.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // txtNgaySinh
     //
     this.txtNgaySinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNgaySinh.Location = new System.Drawing.Point(118, 88);
     this.txtNgaySinh.MaxLength = 2;
     this.txtNgaySinh.Name = "txtNgaySinh";
     this.txtNgaySinh.Numeric = true;
     this.txtNgaySinh.Size = new System.Drawing.Size(129, 20);
     this.txtNgaySinh.TabIndex = 449;
     this.txtNgaySinh.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(9, 55);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(105, 17);
     this.label4.TabIndex = 104;
     this.label4.Text = "&Tên bệnh nhân";
     //
     // txtNamSinh
     //
     this.txtNamSinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNamSinh.Location = new System.Drawing.Point(296, 89);
     this.txtNamSinh.MaxLength = 4;
     this.txtNamSinh.Name = "txtNamSinh";
     this.txtNamSinh.Numeric = true;
     this.txtNamSinh.Size = new System.Drawing.Size(91, 20);
     this.txtNamSinh.TabIndex = 452;
     this.txtNamSinh.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // txtTenBN
     //
     this.txtTenBN.BackColor = System.Drawing.Color.White;
     this.txtTenBN.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtTenBN.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTenBN.Location = new System.Drawing.Point(118, 55);
     this.txtTenBN.Name = "txtTenBN";
     this.txtTenBN.Size = new System.Drawing.Size(318, 23);
     this.txtTenBN.TabIndex = 103;
     //
     // txtTuoi
     //
     this.txtTuoi.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTuoi.Location = new System.Drawing.Point(429, 89);
     this.txtTuoi.MaxLength = 3;
     this.txtTuoi.Name = "txtTuoi";
     this.txtTuoi.Numeric = true;
     this.txtTuoi.Size = new System.Drawing.Size(54, 20);
     this.txtTuoi.TabIndex = 453;
     this.txtTuoi.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtTuoi.TextChanged += new System.EventHandler(this.txtTuoi_TextChanged);
     //
     // txtEmail
     //
     this.txtEmail.BackColor = System.Drawing.Color.White;
     this.txtEmail.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtEmail.Location = new System.Drawing.Point(592, 174);
     this.txtEmail.MaxLength = 11;
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.Size = new System.Drawing.Size(197, 21);
     this.txtEmail.TabIndex = 101;
     //
     // cboThanhPho
     //
     this.cboThanhPho.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboThanhPho.FormattingEnabled = true;
     this.cboThanhPho.Location = new System.Drawing.Point(643, 112);
     this.cboThanhPho.Name = "cboThanhPho";
     this.cboThanhPho.Size = new System.Drawing.Size(145, 23);
     this.cboThanhPho.TabIndex = 89;
     this.cboThanhPho.SelectedIndexChanged += new System.EventHandler(this.cboThanhPho_SelectedIndexChanged);
     //
     // cboObjectType
     //
     this.cboObjectType.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.cboObjectType.HoverMode = Janus.Windows.EditControls.HoverMode.Highlight;
     this.cboObjectType.Location = new System.Drawing.Point(188, 138);
     this.cboObjectType.MaxDropDownItems = 30;
     this.cboObjectType.Name = "cboObjectType";
     this.cboObjectType.SelectedItemFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboObjectType.SelectInDataSource = true;
     this.cboObjectType.Size = new System.Drawing.Size(237, 22);
     this.cboObjectType.TabIndex = 88;
     this.cboObjectType.Text = "Đối tượng";
     //
     // txtDiaChi
     //
     this.txtDiaChi.Location = new System.Drawing.Point(118, 230);
     this.txtDiaChi.Name = "txtDiaChi";
     this.txtDiaChi.Size = new System.Drawing.Size(417, 22);
     this.txtDiaChi.TabIndex = 77;
     //
     // txtTrieuChung
     //
     this.txtTrieuChung.Location = new System.Drawing.Point(118, 203);
     this.txtTrieuChung.Name = "txtTrieuChung";
     this.txtTrieuChung.Size = new System.Drawing.Size(674, 22);
     this.txtTrieuChung.TabIndex = 76;
     //
     // txtObjectTypeCode
     //
     this.txtObjectTypeCode.BackColor = System.Drawing.Color.White;
     this.txtObjectTypeCode.Location = new System.Drawing.Point(116, 138);
     this.txtObjectTypeCode.MaxLength = 10;
     this.txtObjectTypeCode.Name = "txtObjectTypeCode";
     this.txtObjectTypeCode.Size = new System.Drawing.Size(66, 22);
     this.txtObjectTypeCode.TabIndex = 72;
     this.txtObjectTypeCode.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtObjectTypeCode.TextChanged += new System.EventHandler(this.txtObjectTypeCode_TextChanged);
     //
     // cboGioiTinh
     //
     this.cboGioiTinh.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
     uiComboBoxItem7.FormatStyle.Alpha = 0;
     uiComboBoxItem7.IsSeparator = false;
     uiComboBoxItem7.Text = "Nam";
     uiComboBoxItem7.Value = 0;
     uiComboBoxItem8.FormatStyle.Alpha = 0;
     uiComboBoxItem8.IsSeparator = false;
     uiComboBoxItem8.Text = "Nữ";
     uiComboBoxItem8.Value = 1;
     uiComboBoxItem9.FormatStyle.Alpha = 0;
     uiComboBoxItem9.IsSeparator = false;
     uiComboBoxItem9.Text = "Khác";
     uiComboBoxItem9.Value = 2;
     this.cboGioiTinh.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
     uiComboBoxItem7,
     uiComboBoxItem8,
     uiComboBoxItem9});
     this.cboGioiTinh.Location = new System.Drawing.Point(118, 113);
     this.cboGioiTinh.Name = "cboGioiTinh";
     this.cboGioiTinh.Size = new System.Drawing.Size(72, 22);
     this.cboGioiTinh.TabIndex = 69;
     //
     // dtDateTime
     //
     this.dtDateTime.CustomFormat = "dd/MM/yyyy :HH:mm";
     this.dtDateTime.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtDateTime.DropDownCalendar.Name = "";
     this.dtDateTime.Location = new System.Drawing.Point(118, 21);
     this.dtDateTime.Name = "dtDateTime";
     this.dtDateTime.ShowUpDown = true;
     this.dtDateTime.Size = new System.Drawing.Size(179, 22);
     this.dtDateTime.TabIndex = 49;
     this.dtDateTime.TabStop = false;
     this.dtDateTime.Value = new System.DateTime(2012, 2, 10, 0, 0, 0, 0);
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
     this.label10.Location = new System.Drawing.Point(20, 21);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(95, 17);
     this.label10.TabIndex = 47;
     this.label10.Text = "&Ngày đăng ký";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location = new System.Drawing.Point(521, 21);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(53, 17);
     this.label3.TabIndex = 46;
     this.label3.Text = "&Mã PID";
     //
     // txtPID
     //
     this.txtPID.BackColor = System.Drawing.Color.MediumTurquoise;
     this.txtPID.Enabled = false;
     this.txtPID.Location = new System.Drawing.Point(583, 21);
     this.txtPID.Name = "txtPID";
     this.txtPID.Size = new System.Drawing.Size(162, 22);
     this.txtPID.TabIndex = 45;
     this.txtPID.TabStop = false;
     this.txtPID.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtPID.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPID_KeyDown);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(303, 21);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(103, 17);
     this.label2.TabIndex = 44;
     this.label2.Text = "&Mã bệnh nhân:";
     //
     // txtMaBN
     //
     this.txtMaBN.BackColor = System.Drawing.Color.MediumTurquoise;
     this.txtMaBN.Enabled = false;
     this.txtMaBN.Location = new System.Drawing.Point(412, 21);
     this.txtMaBN.Name = "txtMaBN";
     this.txtMaBN.Size = new System.Drawing.Size(104, 22);
     this.txtMaBN.TabIndex = 43;
     this.txtMaBN.TabStop = false;
     this.txtMaBN.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // uiGroupBox4
     //
     this.uiGroupBox4.Controls.Add(this.uiGroupBox5);
     this.uiGroupBox4.Controls.Add(this.uiGroupBox3);
     this.uiGroupBox4.Dock = System.Windows.Forms.DockStyle.Right;
     this.uiGroupBox4.Location = new System.Drawing.Point(223, 0);
     this.uiGroupBox4.Name = "uiGroupBox4";
     this.uiGroupBox4.Size = new System.Drawing.Size(571, 302);
     this.uiGroupBox4.TabIndex = 2;
     //
     // uiGroupBox5
     //
     this.uiGroupBox5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.uiGroupBox5.Location = new System.Drawing.Point(3, 106);
     this.uiGroupBox5.Name = "uiGroupBox5";
     this.uiGroupBox5.Size = new System.Drawing.Size(565, 193);
     this.uiGroupBox5.TabIndex = 4;
     this.uiGroupBox5.Text = "&Chức năng";
     //
     // uiGroupBox3
     //
     this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Top;
     this.uiGroupBox3.Location = new System.Drawing.Point(3, 8);
     this.uiGroupBox3.Name = "uiGroupBox3";
     this.uiGroupBox3.Size = new System.Drawing.Size(565, 98);
     this.uiGroupBox3.TabIndex = 3;
     this.uiGroupBox3.Text = "Đã đăng ký loại dịch vụ";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.AlwaysBlink;
     this.errorProvider1.ContainerControl = this;
     //
     // errorProvider2
     //
     this.errorProvider2.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.AlwaysBlink;
     this.errorProvider2.ContainerControl = this;
     //
     // errorProvider3
     //
     this.errorProvider3.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.AlwaysBlink;
     this.errorProvider3.ContainerControl = this;
     //
     // errorProvider4
     //
     this.errorProvider4.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.AlwaysBlink;
     this.errorProvider4.ContainerControl = this;
     //
     // uiGroupBox1
     //
     this.uiGroupBox1.Controls.Add(this.flpTestType);
     this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Left;
     this.uiGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.uiGroupBox1.Margin = new System.Windows.Forms.Padding(4);
     this.uiGroupBox1.Name = "uiGroupBox1";
     this.uiGroupBox1.Size = new System.Drawing.Size(223, 302);
     this.uiGroupBox1.TabIndex = 6;
     this.uiGroupBox1.Text = "Đăng ký loại dịch vụ";
     //
     // flpTestType
     //
     this.flpTestType.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.flpTestType.AutoScroll = true;
     this.flpTestType.Location = new System.Drawing.Point(3, 20);
     this.flpTestType.Name = "flpTestType";
     this.flpTestType.Size = new System.Drawing.Size(217, 279);
     this.flpTestType.TabIndex = 0;
     //
     // uiGroupBox2
     //
     this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.uiGroupBox2.Location = new System.Drawing.Point(0, 0);
     this.uiGroupBox2.Name = "uiGroupBox2";
     this.uiGroupBox2.Size = new System.Drawing.Size(794, 302);
     this.uiGroupBox2.TabIndex = 0;
     //
     // grdPhongKham
     //
     grdPhongKham_DesignTimeLayout.LayoutString = resources.GetString("grdPhongKham_DesignTimeLayout.LayoutString");
     this.grdPhongKham.DesignTimeLayout = grdPhongKham_DesignTimeLayout;
     this.grdPhongKham.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdPhongKham.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
     this.grdPhongKham.GroupByBoxVisible = false;
     this.grdPhongKham.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdPhongKham.Location = new System.Drawing.Point(3, 17);
     this.grdPhongKham.Name = "grdPhongKham";
     this.grdPhongKham.RecordNavigator = true;
     this.grdPhongKham.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdPhongKham.Size = new System.Drawing.Size(788, 282);
     this.grdPhongKham.TabIndex = 0;
     this.grdPhongKham.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdPhongKham.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdPhongKham.ColumnButtonClick += new Janus.Windows.GridEX.ColumnActionEventHandler(this.grdPhongKham_ColumnButtonClick);
     //
     // uiTabPage2
     //
     this.uiTabPage2.Controls.Add(this.uiGroupBox2);
     this.uiTabPage2.Location = new System.Drawing.Point(1, 23);
     this.uiTabPage2.Name = "uiTabPage2";
     this.uiTabPage2.Size = new System.Drawing.Size(794, 302);
     this.uiTabPage2.TabStop = true;
     this.uiTabPage2.Text = "Chỉ định loại dịch vụ";
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location = new System.Drawing.Point(0, 327);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(798, 350);
     this.tabControl1.TabIndex = 1;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.panel2);
     this.tabPage2.Controls.Add(this.panel1);
     this.tabPage2.Location = new System.Drawing.Point(4, 24);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(790, 322);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "Chỉ định dịch vụ";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.flowLayoutPanel1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
     this.panel1.Location = new System.Drawing.Point(3, 3);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(196, 316);
     this.panel1.TabIndex = 0;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.groupBox2);
     this.panel2.Controls.Add(this.groupBox1);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(199, 3);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(588, 316);
     this.panel2.TabIndex = 1;
     //
     // groupBox1
     //
     this.groupBox1.Location = new System.Drawing.Point(3, 3);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(583, 127);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Thông tin dịch vụ đăng ký";
     //
     // groupBox2
     //
     this.groupBox2.Location = new System.Drawing.Point(3, 136);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(583, 175);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Thông tin chi tiết dịch vụ";
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.AutoScroll = true;
     this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(196, 316);
     this.flowLayoutPanel1.TabIndex = 1;
     //
     // frm_TiepDon_BN
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(798, 677);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.grpThongTinBN);
     this.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frm_TiepDon_BN";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "TIẾP ĐÓN BỆNH NHÂN";
     this.Load += new System.EventHandler(this.frm_TiepDon_BN_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpThongTinBN)).EndInit();
     this.grpThongTinBN.ResumeLayout(false);
     this.grpThongTinBN.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox4)).EndInit();
     this.uiGroupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
     this.uiGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPhongKham)).EndInit();
     this.uiTabPage2.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <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_themmoi_thuoc));
     Janus.Windows.GridEX.GridEXLayout grdDmucthuoc_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     this.GroupBox1 = new System.Windows.Forms.GroupBox();
     this.txtMaQD40 = new System.Windows.Forms.TextBox();
     this.txtMaQDTinh = new System.Windows.Forms.TextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.txtSlVuottran = new MaskedTextBox.MaskedTextBox();
     this.label23 = new System.Windows.Forms.Label();
     this.label22 = new System.Windows.Forms.Label();
     this.txtKieuthuocVT = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
     this.txtName = new VNS.HIS.UCs.AutoCompleteTextbox();
     this.txtNuocSX = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
     this.txtHangSX = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
     this.txtDangBaoChe = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
     this.txtDonvitinh = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
     this.txtCachsudung = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
     this.label21 = new System.Windows.Forms.Label();
     this.chkSingle = new System.Windows.Forms.CheckBox();
     this.txtThuoc = new VNS.HIS.UCs.AutoCompleteTextbox();
     this.vbLine2 = new VNS.UCs.VBLine();
     this.grdDmucthuoc = new Janus.Windows.GridEX.GridEX();
     this.label20 = new System.Windows.Forms.Label();
     this.txtDonvichia = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
     this.txtDongiachia = new MaskedTextBox.MaskedTextBox();
     this.chkChiathuoc = new System.Windows.Forms.CheckBox();
     this.lblDongiachia = new System.Windows.Forms.Label();
     this.txtSoluongchia = new MaskedTextBox.MaskedTextBox();
     this.label15 = new System.Windows.Forms.Label();
     this.txtBut = new MaskedTextBox.MaskedTextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.txtSoluong = new MaskedTextBox.MaskedTextBox();
     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.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.label27 = 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.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.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.pnlGia = new System.Windows.Forms.Panel();
     this.txtGiaDV = new MaskedTextBox.MaskedTextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.txtPTTT = new MaskedTextBox.MaskedTextBox();
     this.txtPTDT = new MaskedTextBox.MaskedTextBox();
     this.label13 = new System.Windows.Forms.Label();
     this.txtGiaBHYT = new MaskedTextBox.MaskedTextBox();
     this.txtDongia = new MaskedTextBox.MaskedTextBox();
     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.cmdNew = new Janus.Windows.EditControls.UIButton();
     this.txtDesc = new System.Windows.Forms.TextBox();
     this.GroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdDmucthuoc)).BeginInit();
     this.pnlGia.SuspendLayout();
     this.SuspendLayout();
     //
     // GroupBox1
     //
     this.GroupBox1.BackColor = System.Drawing.SystemColors.Control;
     this.GroupBox1.Controls.Add(this.txtDesc);
     this.GroupBox1.Controls.Add(this.txtMaQD40);
     this.GroupBox1.Controls.Add(this.txtMaQDTinh);
     this.GroupBox1.Controls.Add(this.label24);
     this.GroupBox1.Controls.Add(this.txtSlVuottran);
     this.GroupBox1.Controls.Add(this.label23);
     this.GroupBox1.Controls.Add(this.label22);
     this.GroupBox1.Controls.Add(this.txtKieuthuocVT);
     this.GroupBox1.Controls.Add(this.txtName);
     this.GroupBox1.Controls.Add(this.txtNuocSX);
     this.GroupBox1.Controls.Add(this.txtHangSX);
     this.GroupBox1.Controls.Add(this.txtDangBaoChe);
     this.GroupBox1.Controls.Add(this.txtDonvitinh);
     this.GroupBox1.Controls.Add(this.txtCachsudung);
     this.GroupBox1.Controls.Add(this.label21);
     this.GroupBox1.Controls.Add(this.chkSingle);
     this.GroupBox1.Controls.Add(this.txtThuoc);
     this.GroupBox1.Controls.Add(this.vbLine2);
     this.GroupBox1.Controls.Add(this.grdDmucthuoc);
     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.label15);
     this.GroupBox1.Controls.Add(this.txtBut);
     this.GroupBox1.Controls.Add(this.label14);
     this.GroupBox1.Controls.Add(this.txtSoluong);
     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.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.label27);
     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.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.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.Controls.Add(this.pnlGia);
     this.GroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
     this.GroupBox1.Location = new System.Drawing.Point(0, 0);
     this.GroupBox1.Name = "GroupBox1";
     this.GroupBox1.Size = new System.Drawing.Size(1008, 500);
     this.GroupBox1.TabIndex = 0;
     this.GroupBox1.TabStop = false;
     this.GroupBox1.Text = "Thông tin chi tiết thuốc";
     //
     // txtMaQD40
     //
     this.txtMaQD40.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtMaQD40.BackColor = System.Drawing.Color.White;
     this.txtMaQD40.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtMaQD40.Enabled = false;
     this.txtMaQD40.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaQD40.Location = new System.Drawing.Point(229, 27);
     this.txtMaQD40.MaxLength = 20;
     this.txtMaQD40.Name = "txtMaQD40";
     this.txtMaQD40.Size = new System.Drawing.Size(74, 21);
     this.txtMaQD40.TabIndex = 1;
     //
     // txtMaQDTinh
     //
     this.txtMaQDTinh.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtMaQDTinh.BackColor = System.Drawing.Color.White;
     this.txtMaQDTinh.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtMaQDTinh.Enabled = false;
     this.txtMaQDTinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaQDTinh.Location = new System.Drawing.Point(398, 26);
     this.txtMaQDTinh.MaxLength = 20;
     this.txtMaQDTinh.Name = "txtMaQDTinh";
     this.txtMaQDTinh.Size = new System.Drawing.Size(85, 21);
     this.txtMaQDTinh.TabIndex = 1;
     //
     // 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(312, 287);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(83, 20);
     this.label24.TabIndex = 1742;
     this.label24.Text = "S.L vượt trần";
     this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolTip1.SetToolTip(this.label24, "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");
     //
     // txtSlVuottran
     //
     this.txtSlVuottran.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtSlVuottran.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtSlVuottran.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSlVuottran.Location = new System.Drawing.Point(398, 286);
     this.txtSlVuottran.Masked = MaskedTextBox.Mask.Digit;
     this.txtSlVuottran.Name = "txtSlVuottran";
     this.txtSlVuottran.Size = new System.Drawing.Size(128, 21);
     this.txtSlVuottran.TabIndex = 21;
     this.txtSlVuottran.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // 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(309, 29);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(89, 15);
     this.label23.TabIndex = 1740;
     this.label23.Text = "Mã QĐ Tỉnh:";
     this.label23.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.ForeColor = System.Drawing.Color.Red;
     this.label22.Location = new System.Drawing.Point(162, 29);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(61, 15);
     this.label22.TabIndex = 1738;
     this.label22.Text = "Mã QĐ 40";
     this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtKieuthuocVT
     //
     this.txtKieuthuocVT._backcolor = System.Drawing.SystemColors.Control;
     this.txtKieuthuocVT._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtKieuthuocVT._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtKieuthuocVT.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtKieuthuocVT.AutoCompleteList")));
     this.txtKieuthuocVT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtKieuthuocVT.CaseSensitive = false;
     this.txtKieuthuocVT.CompareNoID = true;
     this.txtKieuthuocVT.DefaultCode = "-1";
     this.txtKieuthuocVT.DefaultID = "-1";
     this.txtKieuthuocVT.Drug_ID = null;
     this.txtKieuthuocVT.ExtraWidth = 0;
     this.txtKieuthuocVT.FillValueAfterSelect = false;
     this.txtKieuthuocVT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtKieuthuocVT.LOAI_DANHMUC = "KIEUTHUOCVT";
     this.txtKieuthuocVT.Location = new System.Drawing.Point(113, 51);
     this.txtKieuthuocVT.MaxHeight = -1;
     this.txtKieuthuocVT.MinTypedCharacters = 2;
     this.txtKieuthuocVT.MyCode = "-1";
     this.txtKieuthuocVT.MyID = "-1";
     this.txtKieuthuocVT.Name = "txtKieuthuocVT";
     this.txtKieuthuocVT.RaiseEvent = false;
     this.txtKieuthuocVT.RaiseEventEnter = false;
     this.txtKieuthuocVT.RaiseEventEnterWhenEmpty = false;
     this.txtKieuthuocVT.SelectedIndex = -1;
     this.txtKieuthuocVT.Size = new System.Drawing.Size(190, 21);
     this.txtKieuthuocVT.splitChar = '@';
     this.txtKieuthuocVT.splitCharIDAndCode = '#';
     this.txtKieuthuocVT.TabIndex = 2;
     this.txtKieuthuocVT.TakeCode = false;
     this.txtKieuthuocVT.txtMyCode = null;
     this.txtKieuthuocVT.txtMyCode_Edit = null;
     this.txtKieuthuocVT.txtMyID = null;
     this.txtKieuthuocVT.txtMyID_Edit = null;
     this.txtKieuthuocVT.txtMyName = null;
     this.txtKieuthuocVT.txtMyName_Edit = null;
     this.txtKieuthuocVT.txtNext = null;
     //
     // txtName
     //
     this.txtName._backcolor = System.Drawing.Color.WhiteSmoke;
     this.txtName._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtName._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtName.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtName.AutoCompleteList")));
     this.txtName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtName.CaseSensitive = false;
     this.txtName.CompareNoID = true;
     this.txtName.DefaultCode = "-1";
     this.txtName.DefaultID = "-1";
     this.txtName.Drug_ID = null;
     this.txtName.ExtraWidth = 0;
     this.txtName.FillValueAfterSelect = false;
     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(112, 75);
     this.txtName.MaxHeight = 289;
     this.txtName.MinTypedCharacters = 2;
     this.txtName.MyCode = "-1";
     this.txtName.MyID = "-1";
     this.txtName.MyText = "";
     this.txtName.Name = "txtName";
     this.txtName.RaiseEvent = true;
     this.txtName.RaiseEventEnter = false;
     this.txtName.RaiseEventEnterWhenEmpty = false;
     this.txtName.SelectedIndex = -1;
     this.txtName.Size = new System.Drawing.Size(594, 21);
     this.txtName.splitChar = '@';
     this.txtName.splitCharIDAndCode = '#';
     this.txtName.TabIndex = 4;
     this.txtName.TakeCode = true;
     this.txtName.txtMyCode = null;
     this.txtName.txtMyCode_Edit = null;
     this.txtName.txtMyID = null;
     this.txtName.txtMyID_Edit = null;
     this.txtName.txtMyName = null;
     this.txtName.txtMyName_Edit = null;
     this.txtName.txtNext = null;
     //
     // txtNuocSX
     //
     this.txtNuocSX._backcolor = System.Drawing.SystemColors.Control;
     this.txtNuocSX._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNuocSX._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtNuocSX.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtNuocSX.AutoCompleteList")));
     this.txtNuocSX.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtNuocSX.CaseSensitive = false;
     this.txtNuocSX.CompareNoID = true;
     this.txtNuocSX.DefaultCode = "-1";
     this.txtNuocSX.DefaultID = "-1";
     this.txtNuocSX.Drug_ID = null;
     this.txtNuocSX.ExtraWidth = 100;
     this.txtNuocSX.FillValueAfterSelect = false;
     this.txtNuocSX.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNuocSX.LOAI_DANHMUC = "NUOCSX";
     this.txtNuocSX.Location = new System.Drawing.Point(112, 260);
     this.txtNuocSX.MaxHeight = -1;
     this.txtNuocSX.MinTypedCharacters = 2;
     this.txtNuocSX.MyCode = "-1";
     this.txtNuocSX.MyID = "-1";
     this.txtNuocSX.Name = "txtNuocSX";
     this.txtNuocSX.RaiseEvent = false;
     this.txtNuocSX.RaiseEventEnter = false;
     this.txtNuocSX.RaiseEventEnterWhenEmpty = false;
     this.txtNuocSX.SelectedIndex = -1;
     this.txtNuocSX.Size = new System.Drawing.Size(191, 21);
     this.txtNuocSX.splitChar = '@';
     this.txtNuocSX.splitCharIDAndCode = '#';
     this.txtNuocSX.TabIndex = 18;
     this.txtNuocSX.TakeCode = false;
     this.txtNuocSX.txtMyCode = null;
     this.txtNuocSX.txtMyCode_Edit = null;
     this.txtNuocSX.txtMyID = null;
     this.txtNuocSX.txtMyID_Edit = null;
     this.txtNuocSX.txtMyName = null;
     this.txtNuocSX.txtMyName_Edit = null;
     this.txtNuocSX.txtNext = null;
     //
     // txtHangSX
     //
     this.txtHangSX._backcolor = System.Drawing.SystemColors.Control;
     this.txtHangSX._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtHangSX._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtHangSX.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtHangSX.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtHangSX.AutoCompleteList")));
     this.txtHangSX.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtHangSX.CaseSensitive = false;
     this.txtHangSX.CompareNoID = true;
     this.txtHangSX.DefaultCode = "-1";
     this.txtHangSX.DefaultID = "-1";
     this.txtHangSX.Drug_ID = null;
     this.txtHangSX.ExtraWidth = 0;
     this.txtHangSX.FillValueAfterSelect = false;
     this.txtHangSX.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtHangSX.ForeColor = System.Drawing.Color.Black;
     this.txtHangSX.LOAI_DANHMUC = "HANGSX";
     this.txtHangSX.Location = new System.Drawing.Point(399, 260);
     this.txtHangSX.MaxHeight = -1;
     this.txtHangSX.MinTypedCharacters = 2;
     this.txtHangSX.MyCode = "-1";
     this.txtHangSX.MyID = "-1";
     this.txtHangSX.Name = "txtHangSX";
     this.txtHangSX.RaiseEvent = false;
     this.txtHangSX.RaiseEventEnter = false;
     this.txtHangSX.RaiseEventEnterWhenEmpty = false;
     this.txtHangSX.SelectedIndex = -1;
     this.txtHangSX.Size = new System.Drawing.Size(307, 21);
     this.txtHangSX.splitChar = '@';
     this.txtHangSX.splitCharIDAndCode = '#';
     this.txtHangSX.TabIndex = 19;
     this.txtHangSX.TakeCode = false;
     this.txtHangSX.txtMyCode = null;
     this.txtHangSX.txtMyCode_Edit = null;
     this.txtHangSX.txtMyID = null;
     this.txtHangSX.txtMyID_Edit = null;
     this.txtHangSX.txtMyName = null;
     this.txtHangSX.txtMyName_Edit = null;
     this.txtHangSX.txtNext = null;
     //
     // txtDangBaoChe
     //
     this.txtDangBaoChe._backcolor = System.Drawing.SystemColors.Control;
     this.txtDangBaoChe._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDangBaoChe._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtDangBaoChe.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     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.LOAI_DANHMUC = "DANGBAOCHE";
     this.txtDangBaoChe.Location = new System.Drawing.Point(399, 127);
     this.txtDangBaoChe.MaxHeight = -1;
     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;
     //
     // txtDonvitinh
     //
     this.txtDonvitinh._backcolor = System.Drawing.SystemColors.Control;
     this.txtDonvitinh._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDonvitinh._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
     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(399, 182);
     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(127, 21);
     this.txtDonvitinh.splitChar = '@';
     this.txtDonvitinh.splitCharIDAndCode = '#';
     this.txtDonvitinh.TabIndex = 12;
     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;
     //
     // txtCachsudung
     //
     this.txtCachsudung._backcolor = System.Drawing.SystemColors.Control;
     this.txtCachsudung._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCachsudung._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtCachsudung.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCachsudung.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtCachsudung.AutoCompleteList")));
     this.txtCachsudung.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtCachsudung.CaseSensitive = false;
     this.txtCachsudung.CompareNoID = true;
     this.txtCachsudung.DefaultCode = "-1";
     this.txtCachsudung.DefaultID = "-1";
     this.txtCachsudung.Drug_ID = null;
     this.txtCachsudung.ExtraWidth = 100;
     this.txtCachsudung.FillValueAfterSelect = false;
     this.txtCachsudung.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCachsudung.LOAI_DANHMUC = "CACHSUDUNGTHUOC";
     this.txtCachsudung.Location = new System.Drawing.Point(608, 182);
     this.txtCachsudung.MaxHeight = -1;
     this.txtCachsudung.MinTypedCharacters = 2;
     this.txtCachsudung.MyCode = "-1";
     this.txtCachsudung.MyID = "-1";
     this.txtCachsudung.Name = "txtCachsudung";
     this.txtCachsudung.RaiseEvent = false;
     this.txtCachsudung.RaiseEventEnter = false;
     this.txtCachsudung.RaiseEventEnterWhenEmpty = false;
     this.txtCachsudung.SelectedIndex = -1;
     this.txtCachsudung.Size = new System.Drawing.Size(98, 21);
     this.txtCachsudung.splitChar = '@';
     this.txtCachsudung.splitCharIDAndCode = '#';
     this.txtCachsudung.TabIndex = 13;
     this.txtCachsudung.TakeCode = false;
     this.txtCachsudung.txtMyCode = null;
     this.txtCachsudung.txtMyCode_Edit = null;
     this.txtCachsudung.txtMyID = null;
     this.txtCachsudung.txtMyID_Edit = null;
     this.txtCachsudung.txtMyName = null;
     this.txtCachsudung.txtMyName_Edit = null;
     this.txtCachsudung.txtNext = null;
     //
     // label21
     //
     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(526, 181);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(77, 23);
     this.label21.TabIndex = 1736;
     this.label21.Text = "Đường dùng";
     this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // chkSingle
     //
     this.chkSingle.AutoSize = true;
     this.chkSingle.Font = new System.Drawing.Font("Arial", 9F);
     this.chkSingle.Location = new System.Drawing.Point(681, 409);
     this.chkSingle.Name = "chkSingle";
     this.chkSingle.Size = new System.Drawing.Size(121, 19);
     this.chkSingle.TabIndex = 1734;
     this.chkSingle.TabStop = false;
     this.chkSingle.Text = "Thuốc kê đơn lẻ?";
     this.toolTip1.SetToolTip(this.chkSingle, "Chọn mục này nếu muốn thuốc này không được phép kê cùng các thuốc khác trong cùng" +
     " đơn thuốc và ngược lại");
     this.chkSingle.UseVisualStyleBackColor = true;
     //
     // txtThuoc
     //
     this.txtThuoc._backcolor = System.Drawing.Color.WhiteSmoke;
     this.txtThuoc._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtThuoc._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
     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 = false;
     this.txtThuoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtThuoc.Location = new System.Drawing.Point(725, 52);
     this.txtThuoc.MaxHeight = 289;
     this.txtThuoc.MinTypedCharacters = 2;
     this.txtThuoc.MyCode = "-1";
     this.txtThuoc.MyID = "-1";
     this.txtThuoc.MyText = "";
     this.txtThuoc.Name = "txtThuoc";
     this.txtThuoc.RaiseEvent = true;
     this.txtThuoc.RaiseEventEnter = true;
     this.txtThuoc.RaiseEventEnterWhenEmpty = true;
     this.txtThuoc.SelectedIndex = -1;
     this.txtThuoc.Size = new System.Drawing.Size(270, 21);
     this.txtThuoc.splitChar = '@';
     this.txtThuoc.splitCharIDAndCode = '#';
     this.txtThuoc.TabIndex = 1731;
     this.txtThuoc.TabStop = false;
     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;
     //
     // 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.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(725, 27);
     this.vbLine2.Margin = new System.Windows.Forms.Padding(4);
     this.vbLine2.Name = "vbLine2";
     this.vbLine2.Size = new System.Drawing.Size(271, 22);
     this.vbLine2.TabIndex = 1733;
     this.vbLine2.TabStop = false;
     this.vbLine2.YourText = "Cấm kê chung đơn với các thuốc sau:";
     //
     // grdDmucthuoc
     //
     grdDmucthuoc_DesignTimeLayout.LayoutString = resources.GetString("grdDmucthuoc_DesignTimeLayout.LayoutString");
     this.grdDmucthuoc.DesignTimeLayout = grdDmucthuoc_DesignTimeLayout;
     this.grdDmucthuoc.DynamicFiltering = true;
     this.grdDmucthuoc.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
     this.grdDmucthuoc.FilterRowFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.grdDmucthuoc.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
     this.grdDmucthuoc.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grdDmucthuoc.GroupByBoxVisible = false;
     this.grdDmucthuoc.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdDmucthuoc.Location = new System.Drawing.Point(725, 81);
     this.grdDmucthuoc.Name = "grdDmucthuoc";
     this.grdDmucthuoc.Size = new System.Drawing.Size(270, 313);
     this.grdDmucthuoc.TabIndex = 1732;
     this.grdDmucthuoc.TabStop = false;
     this.grdDmucthuoc.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // 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(528, 309);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(63, 23);
     this.label20.TabIndex = 1730;
     this.label20.Text = "Đv chia";
     this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // 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._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtDonvichia.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     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.Enabled = false;
     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(608, 310);
     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(98, 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;
     //
     // txtDongiachia
     //
     this.txtDongiachia.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtDongiachia.Enabled = false;
     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(399, 310);
     this.txtDongiachia.Masked = MaskedTextBox.Mask.Decimal;
     this.txtDongiachia.Name = "txtDongiachia";
     this.txtDongiachia.Size = new System.Drawing.Size(127, 21);
     this.txtDongiachia.TabIndex = 23;
     this.txtDongiachia.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // chkChiathuoc
     //
     this.chkChiathuoc.AutoSize = true;
     this.chkChiathuoc.Font = new System.Drawing.Font("Arial", 9F);
     this.chkChiathuoc.Location = new System.Drawing.Point(22, 311);
     this.chkChiathuoc.Name = "chkChiathuoc";
     this.chkChiathuoc.Size = new System.Drawing.Size(85, 19);
     this.chkChiathuoc.TabIndex = 21;
     this.chkChiathuoc.Text = "Chia thuốc";
     this.chkChiathuoc.UseVisualStyleBackColor = true;
     //
     // 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(304, 310);
     this.lblDongiachia.Name = "lblDongiachia";
     this.lblDongiachia.Size = new System.Drawing.Size(90, 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.Enabled = false;
     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(112, 310);
     this.txtSoluongchia.Masked = MaskedTextBox.Mask.Digit;
     this.txtSoluongchia.Name = "txtSoluongchia";
     this.txtSoluongchia.Size = new System.Drawing.Size(191, 21);
     this.txtSoluongchia.TabIndex = 22;
     this.txtSoluongchia.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // 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(529, 289);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(62, 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.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     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(608, 285);
     this.txtBut.Masked = MaskedTextBox.Mask.Digit;
     this.txtBut.Name = "txtBut";
     this.txtBut.Size = new System.Drawing.Size(98, 21);
     this.txtBut.TabIndex = 21;
     this.txtBut.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // 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(11, 285);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(96, 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(112, 285);
     this.txtSoluong.Masked = MaskedTextBox.Mask.Digit;
     this.txtSoluong.Name = "txtSoluong";
     this.txtSoluong.Size = new System.Drawing.Size(191, 21);
     this.txtSoluong.TabIndex = 20;
     this.txtSoluong.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // chkTutuc
     //
     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(544, 409);
     this.chkTutuc.Name = "chkTutuc";
     this.chkTutuc.Size = new System.Drawing.Size(119, 20);
     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(11, 407);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(96, 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(235, 409);
     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(335, 409);
     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(112, 409);
     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(608, 155);
     this.txtQD31.MaxLength = 15;
     this.txtQD31.Name = "txtQD31";
     this.txtQD31.Size = new System.Drawing.Size(98, 21);
     this.txtQD31.TabIndex = 10;
     this.txtQD31.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // 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(526, 158);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(69, 15);
     this.label8.TabIndex = 430;
     this.label8.Text = "TT-QĐ40";
     this.label8.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.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMsg.Location = new System.Drawing.Point(3, 479);
     this.lblMsg.Name = "lblMsg";
     this.lblMsg.Size = new System.Drawing.Size(1002, 18);
     this.lblMsg.TabIndex = 112;
     this.lblMsg.Text = "Thông báo";
     this.lblMsg.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // 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(304, 181);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(90, 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.SystemColors.Control;
     this.txtLoaithuoc._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtLoaithuoc._TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
     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(398, 51);
     this.txtLoaithuoc.MaxHeight = 300;
     this.txtLoaithuoc.MinTypedCharacters = 2;
     this.txtLoaithuoc.MyCode = null;
     this.txtLoaithuoc.MyID = null;
     this.txtLoaithuoc.MyText = "";
     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(308, 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(300, 50);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(93, 23);
     this.label2.TabIndex = 109;
     this.label2.Text = "Loại 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(112, 101);
     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.ForeColor = System.Drawing.Color.Red;
     this.label29.Location = new System.Drawing.Point(11, 100);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(96, 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, 50);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(96, 23);
     this.label28.TabIndex = 48;
     this.label28.Text = "Kiểu thuốc VT";
     this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // 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(304, 127);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(90, 20);
     this.label27.TabIndex = 44;
     this.label27.Text = "Dạng bào chế";
     this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // 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(445, 409);
     this.chkHieuLuc.Name = "chkHieuLuc";
     this.chkHieuLuc.Size = new System.Drawing.Size(81, 20);
     this.chkHieuLuc.TabIndex = 27;
     this.chkHieuLuc.TabStop = false;
     this.chkHieuLuc.Text = "Hiệu lực?";
     //
     // txtNumber_Register
     //
     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(399, 155);
     this.txtNumber_Register.MaxLength = 15;
     this.txtNumber_Register.Name = "txtNumber_Register";
     this.txtNumber_Register.Size = new System.Drawing.Size(127, 21);
     this.txtNumber_Register.TabIndex = 9;
     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(304, 158);
     this.lab10.Name = "lab10";
     this.lab10.Size = new System.Drawing.Size(90, 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, 259);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(96, 23);
     this.label19.TabIndex = 30;
     this.label19.Text = "Nước sản xuất";
     this.label19.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.Location = new System.Drawing.Point(304, 263);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(90, 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(112, 127);
     this.txtContent.MaxLength = 100;
     this.txtContent.Name = "txtContent";
     this.txtContent.Size = new System.Drawing.Size(191, 21);
     this.txtContent.TabIndex = 6;
     this.txtContent.TextChanged += new System.EventHandler(this.txtContent_TextChanged);
     //
     // 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, 126);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(96, 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(112, 155);
     this.txtActice.MaxLength = 100;
     this.txtActice.Name = "txtActice";
     this.txtActice.Size = new System.Drawing.Size(191, 21);
     this.txtActice.TabIndex = 8;
     //
     // 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, 154);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(96, 23);
     this.label17.TabIndex = 24;
     this.label17.Text = "Hoạt chất";
     this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboDrugNature
     //
     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(112, 181);
     this.cboDrugNature.Name = "cboDrugNature";
     this.cboDrugNature.Size = new System.Drawing.Size(192, 23);
     this.cboDrugNature.TabIndex = 11;
     //
     // 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, 181);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(96, 23);
     this.label16.TabIndex = 22;
     this.label16.Text = "Tính chất";
     this.label16.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.ForeColor = System.Drawing.Color.Red;
     this.label6.Location = new System.Drawing.Point(11, 74);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(96, 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(608, 25);
     this.txtCode.MaxLength = 20;
     this.txtCode.Name = "txtCode";
     this.txtCode.Size = new System.Drawing.Size(98, 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(489, 29);
     this.Label5.Name = "Label5";
     this.Label5.Size = new System.Drawing.Size(102, 15);
     this.Label5.TabIndex = 7;
     this.Label5.Text = "Mã theo Đơn vị:";
     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(11, 337);
     this.Label3.Name = "Label3";
     this.Label3.Size = new System.Drawing.Size(96, 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(43, 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(96, 23);
     this.Label1.TabIndex = 0;
     this.Label1.Text = "ID";
     this.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // pnlGia
     //
     this.pnlGia.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.pnlGia.Controls.Add(this.txtGiaDV);
     this.pnlGia.Controls.Add(this.label7);
     this.pnlGia.Controls.Add(this.label25);
     this.pnlGia.Controls.Add(this.label10);
     this.pnlGia.Controls.Add(this.label11);
     this.pnlGia.Controls.Add(this.txtPTTT);
     this.pnlGia.Controls.Add(this.txtPTDT);
     this.pnlGia.Controls.Add(this.label13);
     this.pnlGia.Controls.Add(this.txtGiaBHYT);
     this.pnlGia.Controls.Add(this.txtDongia);
     this.pnlGia.Location = new System.Drawing.Point(11, 205);
     this.pnlGia.Name = "pnlGia";
     this.pnlGia.Size = new System.Drawing.Size(708, 54);
     this.pnlGia.TabIndex = 13;
     this.pnlGia.TabStop = true;
     //
     // txtGiaDV
     //
     this.txtGiaDV.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtGiaDV.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtGiaDV.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtGiaDV.Location = new System.Drawing.Point(388, 4);
     this.txtGiaDV.Masked = MaskedTextBox.Mask.Decimal;
     this.txtGiaDV.Name = "txtGiaDV";
     this.txtGiaDV.Size = new System.Drawing.Size(125, 21);
     this.txtGiaDV.TabIndex = 14;
     this.txtGiaDV.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // 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(-11, 7);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(107, 15);
     this.label7.TabIndex = 12;
     this.label7.Text = "Giá nhập:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label25
     //
     this.label25.Anchor = System.Windows.Forms.AnchorStyles.None;
     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(297, 7);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(86, 15);
     this.label25.TabIndex = 1744;
     this.label25.Text = "Giá Dịch vụ:";
     this.label25.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(0, 32);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(96, 15);
     this.label10.TabIndex = 435;
     this.label10.Text = "Phụ thu ĐT";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label11
     //
     this.label11.Anchor = System.Windows.Forms.AnchorStyles.None;
     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(293, 32);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(90, 15);
     this.label11.TabIndex = 437;
     this.label11.Text = "Phụ thu TT";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtPTTT
     //
     this.txtPTTT.Anchor = System.Windows.Forms.AnchorStyles.None;
     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(388, 29);
     this.txtPTTT.Masked = MaskedTextBox.Mask.Decimal;
     this.txtPTTT.Name = "txtPTTT";
     this.txtPTTT.Size = new System.Drawing.Size(305, 21);
     this.txtPTTT.TabIndex = 17;
     this.txtPTTT.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(101, 29);
     this.txtPTDT.Masked = MaskedTextBox.Mask.Decimal;
     this.txtPTDT.Name = "txtPTDT";
     this.txtPTDT.Size = new System.Drawing.Size(192, 21);
     this.txtPTDT.TabIndex = 16;
     this.txtPTDT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label13
     //
     this.label13.Anchor = System.Windows.Forms.AnchorStyles.None;
     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(521, 7);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(71, 15);
     this.label13.TabIndex = 1620;
     this.label13.Text = "Giá BHYT";
     this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtGiaBHYT
     //
     this.txtGiaBHYT.Anchor = System.Windows.Forms.AnchorStyles.None;
     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(597, 4);
     this.txtGiaBHYT.Masked = MaskedTextBox.Mask.Decimal;
     this.txtGiaBHYT.Name = "txtGiaBHYT";
     this.txtGiaBHYT.Size = new System.Drawing.Size(96, 21);
     this.txtGiaBHYT.TabIndex = 15;
     this.txtGiaBHYT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // 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(101, 4);
     this.txtDongia.Masked = MaskedTextBox.Mask.Decimal;
     this.txtDongia.Name = "txtDongia";
     this.txtDongia.Size = new System.Drawing.Size(191, 21);
     this.txtDongia.TabIndex = 14;
     this.txtDongia.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // 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(450, 512);
     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(594, 512);
     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(6, 527);
     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";
     //
     // cmdNew
     //
     this.cmdNew.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdNew.Image = ((System.Drawing.Image)(resources.GetObject("cmdNew.Image")));
     this.cmdNew.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdNew.Location = new System.Drawing.Point(303, 512);
     this.cmdNew.Name = "cmdNew";
     this.cmdNew.Size = new System.Drawing.Size(138, 38);
     this.cmdNew.TabIndex = 31;
     this.cmdNew.Text = "&Thêm mới";
     this.cmdNew.ToolTipText = "Nhấn vào đây để thêm mới Bệnh nhân";
     //
     // 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(112, 335);
     this.txtDesc.MaxLength = 100;
     this.txtDesc.Name = "txtDesc";
     this.txtDesc.Size = new System.Drawing.Size(594, 21);
     this.txtDesc.TabIndex = 25;
     //
     // 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(1008, 562);
     this.Controls.Add(this.cmdNew);
     this.Controls.Add(this.GroupBox1);
     this.Controls.Add(this.chkThemlientuc);
     this.Controls.Add(this.cmdClose);
     this.Controls.Add(this.cmdSave);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "frm_themmoi_thuoc";
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Cập nhật thông tin Thuốc-VT";
     this.Load += new System.EventHandler(this.frmDrug_Load);
     this.GroupBox1.ResumeLayout(false);
     this.GroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdDmucthuoc)).EndInit();
     this.pnlGia.ResumeLayout(false);
     this.pnlGia.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()
 {
     Janus.Windows.GridEX.GridEXLayout GridExVillage_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PolygonControl));
     Janus.Windows.GridEX.GridEXLayout GridExPolygon_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     this.ButtonGenerate = new Janus.Windows.EditControls.UIButton();
     this.LoadPolygonData = new Janus.Windows.EditControls.UIButton();
     this.GridExVillageShowFieldChooser = new Janus.Windows.EditControls.UIButton();
     this.GridExVillage = new Janus.Windows.GridEX.GridEX();
     this.polygonDataSet1 = new TribalWars.Maps.Polygons.PolygonDataSet();
     this.ModusPolygon = new Janus.Windows.EditControls.UIButton();
     this.GeneratorActions = new Janus.Windows.EditControls.UIGroupBox();
     this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
     this.ModusVillage = new Janus.Windows.EditControls.UIButton();
     this.GridExPolygon = new Janus.Windows.GridEX.GridEX();
     this.CurrentModusGroupbox = new Janus.Windows.EditControls.UIGroupBox();
     ((System.ComponentModel.ISupportInitialize)(this.GridExVillage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.polygonDataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GeneratorActions)).BeginInit();
     this.GeneratorActions.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
     this.uiGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridExPolygon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CurrentModusGroupbox)).BeginInit();
     this.CurrentModusGroupbox.SuspendLayout();
     this.SuspendLayout();
     //
     // ButtonGenerate
     //
     this.ButtonGenerate.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ButtonGenerate.Location = new System.Drawing.Point(6, 72);
     this.ButtonGenerate.Name = "ButtonGenerate";
     this.ButtonGenerate.Size = new System.Drawing.Size(88, 45);
     this.ButtonGenerate.TabIndex = 1;
     this.ButtonGenerate.Text = "&Generate BBCodes";
     this.ButtonGenerate.ToolTipText = "Put BBCodes for all checked visible village rows to the clipboard.";
     this.ButtonGenerate.Click += new System.EventHandler(this.ButtonGenerate_Click);
     //
     // LoadPolygonData
     //
     this.LoadPolygonData.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LoadPolygonData.Location = new System.Drawing.Point(6, 19);
     this.LoadPolygonData.Name = "LoadPolygonData";
     this.LoadPolygonData.Size = new System.Drawing.Size(88, 45);
     this.LoadPolygonData.TabIndex = 1;
     this.LoadPolygonData.Text = "Load Cluster Data";
     this.LoadPolygonData.ToolTipText = "Load (or reload) all your drawn clusters.";
     this.LoadPolygonData.Click += new System.EventHandler(this.LoadPolygonData_Click);
     //
     // GridExVillageShowFieldChooser
     //
     this.GridExVillageShowFieldChooser.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.GridExVillageShowFieldChooser.Location = new System.Drawing.Point(576, 27);
     this.GridExVillageShowFieldChooser.Name = "GridExVillageShowFieldChooser";
     this.GridExVillageShowFieldChooser.Size = new System.Drawing.Size(110, 23);
     this.GridExVillageShowFieldChooser.TabIndex = 2;
     this.GridExVillageShowFieldChooser.TabStop = false;
     this.GridExVillageShowFieldChooser.Text = "Show/Hide Columns";
     this.GridExVillageShowFieldChooser.Click += new System.EventHandler(this.GridExVillageShowFieldChooser_Click);
     //
     // GridExVillage
     //
     this.GridExVillage.AllowDelete = Janus.Windows.GridEX.InheritableBoolean.True;
     this.GridExVillage.AllowRemoveColumns = Janus.Windows.GridEX.InheritableBoolean.True;
     this.GridExVillage.AlternatingColors = true;
     this.GridExVillage.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.GridExVillage.AutoEdit = true;
     this.GridExVillage.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><EmptyGridInfo>Click \'" +
     "Load Cluster Data\' to load all villages inside your clusters.</EmptyGridInfo></L" +
     "ocalizableData>";
     this.GridExVillage.ColumnAutoResize = true;
     this.GridExVillage.DataMember = "VILLAGE";
     this.GridExVillage.DataSource = this.polygonDataSet1;
     GridExVillage_DesignTimeLayout.LayoutString = resources.GetString("GridExVillage_DesignTimeLayout.LayoutString");
     this.GridExVillage.DesignTimeLayout = GridExVillage_DesignTimeLayout;
     this.GridExVillage.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
     this.GridExVillage.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
     this.GridExVillage.FocusCellDisplayMode = Janus.Windows.GridEX.FocusCellDisplayMode.UseSelectedFormatStyle;
     this.GridExVillage.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.GridExVillage.HideColumnsWhenGrouped = Janus.Windows.GridEX.InheritableBoolean.True;
     this.GridExVillage.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
     this.GridExVillage.Location = new System.Drawing.Point(6, 19);
     this.GridExVillage.Name = "GridExVillage";
     this.GridExVillage.SelectionMode = Janus.Windows.GridEX.SelectionMode.MultipleSelectionSameTable;
     this.GridExVillage.SettingsKey = "PolygonVillage3";
     this.GridExVillage.Size = new System.Drawing.Size(706, 244);
     this.GridExVillage.TabIndex = 0;
     this.GridExVillage.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.GridExVillage.UseGroupRowSelector = true;
     this.GridExVillage.RowCheckStateChanged += new Janus.Windows.GridEX.RowCheckStateChangeEventHandler(this.GridExVillage_RowCheckStateChanged);
     this.GridExVillage.RowDoubleClick += new Janus.Windows.GridEX.RowActionEventHandler(this.GridExVillage_RowDoubleClick);
     this.GridExVillage.FormattingRow += new Janus.Windows.GridEX.RowLoadEventHandler(this.GridExVillage_FormattingRow);
     this.GridExVillage.GroupsChanging += new Janus.Windows.GridEX.GroupsChangingEventHandler(this.GridExVillage_GroupsChanging);
     this.GridExVillage.CurrentCellChanging += new Janus.Windows.GridEX.CurrentCellChangingEventHandler(this.GridExVillage_CurrentCellChanging);
     this.GridExVillage.KeyDown += new System.Windows.Forms.KeyEventHandler(this.GridExVillage_KeyDown);
     this.GridExVillage.MouseClick += new System.Windows.Forms.MouseEventHandler(this.GridExVillage_MouseClick);
     //
     // polygonDataSet1
     //
     this.polygonDataSet1.DataSetName = "PolygonDataSet";
     this.polygonDataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // ModusPolygon
     //
     this.ModusPolygon.Location = new System.Drawing.Point(6, 70);
     this.ModusPolygon.Name = "ModusPolygon";
     this.ModusPolygon.Size = new System.Drawing.Size(84, 45);
     this.ModusPolygon.TabIndex = 0;
     this.ModusPolygon.Text = "Manage Clusters";
     this.ModusPolygon.ToolTipText = "Change cluster groups, names and colors!";
     this.ModusPolygon.Click += new System.EventHandler(this.ModusPolygon_Click);
     //
     // GeneratorActions
     //
     this.GeneratorActions.Controls.Add(this.ButtonGenerate);
     this.GeneratorActions.Controls.Add(this.LoadPolygonData);
     this.GeneratorActions.Location = new System.Drawing.Point(3, 133);
     this.GeneratorActions.Name = "GeneratorActions";
     this.GeneratorActions.Size = new System.Drawing.Size(100, 123);
     this.GeneratorActions.TabIndex = 5;
     this.GeneratorActions.Text = "Actions";
     //
     // uiGroupBox1
     //
     this.uiGroupBox1.Controls.Add(this.ModusVillage);
     this.uiGroupBox1.Controls.Add(this.ModusPolygon);
     this.uiGroupBox1.Location = new System.Drawing.Point(3, 3);
     this.uiGroupBox1.Name = "uiGroupBox1";
     this.uiGroupBox1.Size = new System.Drawing.Size(100, 124);
     this.uiGroupBox1.TabIndex = 6;
     this.uiGroupBox1.Text = "Switch modus";
     //
     // ModusVillage
     //
     this.ModusVillage.Enabled = false;
     this.ModusVillage.Location = new System.Drawing.Point(6, 19);
     this.ModusVillage.Name = "ModusVillage";
     this.ModusVillage.Size = new System.Drawing.Size(84, 45);
     this.ModusVillage.TabIndex = 1;
     this.ModusVillage.Text = "BBCodes Generator";
     this.ModusVillage.ToolTipText = "Generate BBCodes based on villages inside the drawn clusters";
     this.ModusVillage.Click += new System.EventHandler(this.ModusVillage_Click);
     //
     // GridExPolygon
     //
     this.GridExPolygon.AlternatingColors = true;
     this.GridExPolygon.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)));
     GridExPolygon_DesignTimeLayout.LayoutString = resources.GetString("GridExPolygon_DesignTimeLayout.LayoutString");
     this.GridExPolygon.DesignTimeLayout = GridExPolygon_DesignTimeLayout;
     this.GridExPolygon.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.GridExPolygon.GroupByBoxVisible = false;
     this.GridExPolygon.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
     this.GridExPolygon.Location = new System.Drawing.Point(6, 19);
     this.GridExPolygon.Name = "GridExPolygon";
     this.GridExPolygon.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
     this.GridExPolygon.SettingsKey = "PolygonManage";
     this.GridExPolygon.Size = new System.Drawing.Size(706, 244);
     this.GridExPolygon.TabIndex = 7;
     this.GridExPolygon.Visible = false;
     //
     // CurrentModusGroupbox
     //
     this.CurrentModusGroupbox.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.CurrentModusGroupbox.Controls.Add(this.GridExVillageShowFieldChooser);
     this.CurrentModusGroupbox.Controls.Add(this.GridExVillage);
     this.CurrentModusGroupbox.Controls.Add(this.GridExPolygon);
     this.CurrentModusGroupbox.Location = new System.Drawing.Point(109, 3);
     this.CurrentModusGroupbox.Name = "CurrentModusGroupbox";
     this.CurrentModusGroupbox.Size = new System.Drawing.Size(718, 269);
     this.CurrentModusGroupbox.TabIndex = 8;
     this.CurrentModusGroupbox.Text = "Current modus: BBCodes Generator";
     //
     // PolygonControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.CurrentModusGroupbox);
     this.Controls.Add(this.uiGroupBox1);
     this.Controls.Add(this.GeneratorActions);
     this.Name = "PolygonControl";
     this.Size = new System.Drawing.Size(829, 278);
     this.Load += new System.EventHandler(this.PolygonControl_Load);
     ((System.ComponentModel.ISupportInitialize)(this.GridExVillage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.polygonDataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GeneratorActions)).EndInit();
     this.GeneratorActions.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
     this.uiGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GridExPolygon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CurrentModusGroupbox)).EndInit();
     this.CurrentModusGroupbox.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #40
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(mzSearchPanel));
     this.gridEx         = new Janus.Windows.GridEX.GridEX();
     this.imglStandar    = new System.Windows.Forms.ImageList(this.components);
     this.toolBarStandar = new System.Windows.Forms.ToolBar();
     this.tbSearchNow    = new System.Windows.Forms.ToolBarButton();
     this.tbNewSearch    = new System.Windows.Forms.ToolBarButton();
     this.tbRefresh      = new System.Windows.Forms.ToolBarButton();
     this.panelTop       = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.gridEx)).BeginInit();
     this.SuspendLayout();
     //
     // gridEx
     //
     this.gridEx.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     this.gridEx.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.gridEx.ColumnAutoResize              = true;
     this.gridEx.Cursor                        = System.Windows.Forms.Cursors.Default;
     this.gridEx.EmptyRows                     = true;
     this.gridEx.EnterKeyBehavior              = Janus.Windows.GridEX.EnterKeyBehavior.None;
     this.gridEx.ExpandableGroups              = Janus.Windows.GridEX.InheritableBoolean.False;
     this.gridEx.GridLines                     = Janus.Windows.GridEX.GridLines.None;
     this.gridEx.GroupByBoxVisible             = false;
     this.gridEx.GroupRowFormatStyle.BackColor = System.Drawing.Color.Empty;
     this.gridEx.GroupRowFormatStyle.FontBold  = Janus.Windows.GridEX.TriState.True;
     this.gridEx.HideSelection                 = Janus.Windows.GridEX.HideSelection.HighlightInactive;
     this.gridEx.IncrementalSearchMode         = Janus.Windows.GridEX.IncrementalSearchMode.AllCharacters;
     this.gridEx.InvalidValueAction            = Janus.Windows.GridEX.InvalidValueAction.DiscardChanges;
     this.gridEx.LayoutData                    = @"<GridEXLayoutData><RootTable><Caption>Customers</Caption><Columns Collection=""true""><Column0 ID=""Icon""><AllowGroup>False</AllowGroup><AllowSize>False</AllowSize><AllowSort>False</AllowSort><Bound>False</Bound><ColumnType>Image</ColumnType><EditType>NoEdit</EditType><HeaderImageIndex>1</HeaderImageIndex><ImageIndex>0</ImageIndex><Key>Icon</Key><Position>0</Position><Selectable>False</Selectable><Width>22</Width></Column0><Column1 ID=""ID""><AllowSort>False</AllowSort><Caption>ID</Caption><DataMember>Codigo</DataMember><DefaultGroupPrefix>ID</DefaultGroupPrefix><Key>ID</Key><Position>1</Position><Selectable>False</Selectable><Width>177</Width></Column1><Column2 ID=""DESCRIPTION""><AllowSort>False</AllowSort><Caption>DESCRIPTION</Caption><DataMember>DESCRIPTION</DataMember><DefaultGroupPrefix>DESCRIPTION</DefaultGroupPrefix><Key>DESCRIPTION</Key><Position>2</Position><Selectable>False</Selectable><Width>517</Width></Column2></Columns><GroupCondition ID="""" /><Key>Customers</Key><SortKeys Collection=""true""><SortKey0 ID=""SortKey0""><ColIndex>2</ColIndex><SortOrder>Descending</SortOrder></SortKey0></SortKeys></RootTable></GridEXLayoutData>";
     this.gridEx.Location                      = new System.Drawing.Point(8, 144);
     this.gridEx.Name                = "gridEx";
     this.gridEx.RecordNavigator     = true;
     this.gridEx.RecordNavigatorText = "Registro:|de";
     this.gridEx.Size                = new System.Drawing.Size(720, 368);
     this.gridEx.TabIndex            = 9;
     this.gridEx.ThemedAreas         = ((Janus.Windows.GridEX.ThemedArea)((((((Janus.Windows.GridEX.ThemedArea.ScrollBars | Janus.Windows.GridEX.ThemedArea.EditControls)
                                                                              | Janus.Windows.GridEX.ThemedArea.Headers)
                                                                             | Janus.Windows.GridEX.ThemedArea.GroupByBox)
                                                                            | Janus.Windows.GridEX.ThemedArea.TreeGliphs)
                                                                           | Janus.Windows.GridEX.ThemedArea.ControlBorder)));
     this.gridEx.DoubleClick += new System.EventHandler(this.gridEx_DoubleClick);
     //
     // imglStandar
     //
     this.imglStandar.ImageSize        = new System.Drawing.Size(16, 16);
     this.imglStandar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglStandar.ImageStream")));
     this.imglStandar.TransparentColor = System.Drawing.Color.Magenta;
     //
     // toolBarStandar
     //
     this.toolBarStandar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.toolBarStandar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBarStandar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbSearchNow,
         this.tbNewSearch,
         this.tbRefresh
     });
     this.toolBarStandar.Divider        = false;
     this.toolBarStandar.Dock           = System.Windows.Forms.DockStyle.None;
     this.toolBarStandar.DropDownArrows = true;
     this.toolBarStandar.ImageList      = this.imglStandar;
     this.toolBarStandar.Location       = new System.Drawing.Point(0, 0);
     this.toolBarStandar.Name           = "toolBarStandar";
     this.toolBarStandar.ShowToolTips   = true;
     this.toolBarStandar.Size           = new System.Drawing.Size(736, 26);
     this.toolBarStandar.TabIndex       = 0;
     this.toolBarStandar.TextAlign      = System.Windows.Forms.ToolBarTextAlign.Right;
     this.toolBarStandar.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBarStandar_ButtonClick);
     //
     // tbSearchNow
     //
     this.tbSearchNow.ImageIndex = 2;
     this.tbSearchNow.Text       = "Buscar ahora";
     //
     // tbNewSearch
     //
     this.tbNewSearch.ImageIndex = 1;
     this.tbNewSearch.Text       = "Nueva búsqueda";
     //
     // tbRefresh
     //
     this.tbRefresh.ImageIndex = 0;
     this.tbRefresh.Text       = "Actualizar";
     //
     // panelTop
     //
     this.panelTop.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.panelTop.AutoScrollMargin = new System.Drawing.Size(5, 5);
     this.panelTop.BackColor        = System.Drawing.SystemColors.Control;
     this.panelTop.Location         = new System.Drawing.Point(8, 32);
     this.panelTop.Name             = "panelTop";
     this.panelTop.Size             = new System.Drawing.Size(720, 104);
     this.panelTop.TabIndex         = 10;
     //
     // mzSearchPanel
     //
     this.Controls.Add(this.panelTop);
     this.Controls.Add(this.toolBarStandar);
     this.Controls.Add(this.gridEx);
     this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Name = "mzSearchPanel";
     this.Size = new System.Drawing.Size(736, 520);
     ((System.ComponentModel.ISupportInitialize)(this.gridEx)).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_QuickSearchDiseasesType));
     Janus.Windows.GridEX.GridEXLayout grdSearch_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     this.label1 = new System.Windows.Forms.Label();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.grdSearch = new Janus.Windows.GridEX.GridEX();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.label2 = new System.Windows.Forms.Label();
     this.cmdClose = new System.Windows.Forms.Button();
     this.cmdAccept = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdSearch)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Navy;
     this.label1.Image = ((System.Drawing.Image)(resources.GetObject("label1.Image")));
     this.label1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.label1.Location = new System.Drawing.Point(111, 1);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(335, 64);
     this.label1.TabIndex = 14;
     this.label1.Text = "Chọn thông tin loại bệnh";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // pictureBox1
     //
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(1, 2);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(104, 64);
     this.pictureBox1.TabIndex = 15;
     this.pictureBox1.TabStop = false;
     //
     // grdSearch
     //
     this.grdSearch.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     this.grdSearch.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("grdSearch.BackgroundImage")));
     this.grdSearch.ColumnAutoResize = true;
     grdSearch_DesignTimeLayout.LayoutString = resources.GetString("grdSearch_DesignTimeLayout.LayoutString");
     this.grdSearch.DesignTimeLayout = grdSearch_DesignTimeLayout;
     this.grdSearch.DynamicFiltering = true;
     this.grdSearch.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
     this.grdSearch.FilterRowButtonStyle = Janus.Windows.GridEX.FilterRowButtonStyle.ConditionOperatorDropDown;
     this.grdSearch.FilterRowUpdateMode = Janus.Windows.GridEX.FilterRowUpdateMode.WhenValueChanges;
     this.grdSearch.FocusStyle = Janus.Windows.GridEX.FocusStyle.Solid;
     this.grdSearch.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.grdSearch.GridLineStyle = Janus.Windows.GridEX.GridLineStyle.Solid;
     this.grdSearch.GroupByBoxVisible = false;
     this.grdSearch.Location = new System.Drawing.Point(0, 90);
     this.grdSearch.Name = "grdSearch";
     this.grdSearch.RecordNavigator = true;
     this.grdSearch.Size = new System.Drawing.Size(441, 426);
     this.grdSearch.TabIndex = 24;
     this.grdSearch.TreeLines = false;
     this.grdSearch.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.grdSearch_MouseDoubleClick);
     this.grdSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.grdSearch_KeyDown);
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Gray;
     this.groupBox1.Location = new System.Drawing.Point(268, 82);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(173, 2);
     this.groupBox1.TabIndex = 23;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "groupBox1";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Navy;
     this.label2.Location = new System.Drawing.Point(-4, 72);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(269, 20);
     this.label2.TabIndex = 0;
     this.label2.Text = "Bạn có thể tìm kiếm trực tiếp trên lưới";
     //
     // 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("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(127, 525);
     this.cmdClose.Name = "cmdClose";
     this.cmdClose.Size = new System.Drawing.Size(114, 25);
     this.cmdClose.TabIndex = 2;
     this.cmdClose.Text = "Hủy bỏ(Esc)";
     this.cmdClose.UseVisualStyleBackColor = true;
     this.cmdClose.Click += new System.EventHandler(this.cmdClose_Click);
     //
     // cmdAccept
     //
     this.cmdAccept.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdAccept.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdAccept.Image = ((System.Drawing.Image)(resources.GetObject("cmdAccept.Image")));
     this.cmdAccept.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.cmdAccept.Location = new System.Drawing.Point(6, 525);
     this.cmdAccept.Name = "cmdAccept";
     this.cmdAccept.Size = new System.Drawing.Size(109, 25);
     this.cmdAccept.TabIndex = 1;
     this.cmdAccept.Text = "Chấp nhận";
     this.cmdAccept.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.cmdAccept.UseVisualStyleBackColor = true;
     this.cmdAccept.Click += new System.EventHandler(this.cmdAccept_Click);
     //
     // frm_QuickSearchDiseasesType
     //
     this.AcceptButton = this.cmdAccept;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(443, 556);
     this.Controls.Add(this.cmdClose);
     this.Controls.Add(this.cmdAccept);
     this.Controls.Add(this.grdSearch);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.pictureBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "frm_QuickSearchDiseasesType";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Thông tin danh sách bệnh";
     this.Load += new System.EventHandler(this.frm_QuickSearchDiseases_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frm_QuickSearchDiseases_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdSearch)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }