示例#1
0
        /// <summary>
        /// 获得总范围

        /// </summary>
        /// <param name="dgView"></param>
        /// <returns></returns>
        private IGeometry GetUnionGeo(DevComponents.DotNetBar.Controls.DataGridViewX dgView)
        {
            IGeometry UnionGeo = null;

            for (int i = 0; i < dgView.RowCount; i++)
            {
                if (dgView.Rows[i].Cells[0].FormattedValue.ToString() == "")
                {
                    continue;
                }
                bool b = Convert.ToBoolean(dgView.Rows[i].Cells[0].FormattedValue.ToString());
                if (b)
                {
                    IGeometry pGeo = dgView.Rows[i].Cells[1].Tag as IGeometry;
                    if (pGeo == null)
                    {
                        continue;
                    }
                    if (UnionGeo == null)
                    {
                        UnionGeo = pGeo;
                    }
                    else
                    {
                        ITopologicalOperator pTop = UnionGeo as ITopologicalOperator;
                        UnionGeo = pTop.Union(pGeo);
                        pTop.Simplify();
                    }
                }
            }
            return(UnionGeo);
        }
示例#2
0
        //处理检查结果
        public void GeoDataChecker_DataErrTreat(object sender, DataErrTreatEvent e)
        {
            //用户界面上表现出错误信息
            DevComponents.DotNetBar.Controls.DataGridViewX pDataGrid = sender as DevComponents.DotNetBar.Controls.DataGridViewX;
            if (_ResultTable == null)
            {
                return;
            }
            DataRow newRow = _ResultTable.NewRow();

            newRow["检查功能名"]  = e.ErrInfo.FunctionName;
            newRow["错误类型"]   = GeoDataChecker.GetErrorTypeString(Enum.Parse(typeof(enumErrorType), e.ErrInfo.ErrID.ToString()).ToString());
            newRow["错误描述"]   = e.ErrInfo.ErrDescription;
            newRow["数据图层1"]  = e.ErrInfo.OriginClassName;
            newRow["要素OID1"] = e.ErrInfo.OriginFeatOID;
            newRow["数据图层2"]  = e.ErrInfo.DestinationClassName;
            newRow["要素OID2"] = e.ErrInfo.DestinationFeatOID;
            newRow["检查时间"]   = e.ErrInfo.OperatorTime;
            newRow["定位点X"]   = e.ErrInfo.MapX;
            newRow["定位点Y"]   = e.ErrInfo.MapY;
            newRow["数据文件名"]  = e.ErrInfo.DataFileName;
            _ResultTable.Rows.Add(newRow);

            pDataGrid.Update();

            //将结果输出excle

            InsertRowToExcel(e);
        }
示例#3
0
        private void AddLayerToList(ILayer pLayer, DevComponents.DotNetBar.Controls.DataGridViewX pDataGridViewX)
        {
            int             index = pDataGridViewX.Rows.Add();
            DataGridViewRow aRow  = pDataGridViewX.Rows[index];

            aRow.Tag            = pLayer;
            aRow.Cells[0].Value = pLayer.Name; //图层名
            aRow.Cells[1].Value = false;       //节点捕捉
            aRow.Cells[2].Value = false;       //端点捕捉
            aRow.Cells[3].Value = false;       //相交点捕捉
            aRow.Cells[4].Value = false;       //中点捕捉
            aRow.Cells[5].Value = false;       //最近点捕捉

            if (MoData.v_dicSnapLayers != null)
            {
                if (MoData.v_dicSnapLayers.ContainsKey(pLayer))
                {
                    object[] values = MoData.v_dicSnapLayers[pLayer].ToArray();
                    aRow.Cells[1].Value = Convert.ToBoolean(values[0]);        //节点捕捉
                    aRow.Cells[2].Value = Convert.ToBoolean(values[1]);        //端点捕捉
                    aRow.Cells[3].Value = Convert.ToBoolean(values[2]);        //相交点捕捉
                    aRow.Cells[4].Value = Convert.ToBoolean(values[3]);        //中点捕捉
                    aRow.Cells[5].Value = Convert.ToBoolean(values[4]);        //最近点捕捉
                }
            }
        }
示例#4
0
        public void ExceleAktar(DevComponents.DotNetBar.Controls.DataGridViewX dGView_Info)
        {
            Microsoft.Office.Interop.Excel.Application excel = new Microsoft.Office.Interop.Excel.Application();
            excel.Visible = true;
            Microsoft.Office.Interop.Excel.Workbook  workbook = excel.Workbooks.Add(System.Reflection.Missing.Value);
            Microsoft.Office.Interop.Excel.Worksheet sheet1   = (Microsoft.Office.Interop.Excel.Worksheet)workbook.Sheets[1];
            int StartCol = 1;
            int StartRow = 1;

            for (int j = 0; j < dGView_Info.Columns.Count; j++)
            {
                Microsoft.Office.Interop.Excel.Range myRange = (Microsoft.Office.Interop.Excel.Range)sheet1.Cells[StartRow, StartCol + j];
                myRange.Value2 = dGView_Info.Columns[j].HeaderText;
            }

            StartRow++;

            for (int i = 0; i < dGView_Info.Rows.Count; i++)
            {
                for (int j = 0; j < dGView_Info.Columns.Count; j++)
                {
                    try
                    {
                        Microsoft.Office.Interop.Excel.Range myRange = (Microsoft.Office.Interop.Excel.Range)sheet1.Cells[StartRow + i, StartCol + j];
                        myRange.Value2 = dGView_Info[j, i].Value == null ? "" : dGView_Info[j, i].Value;
                    }
                    catch
                    {
                        ;
                    }
                }
            }
        }
示例#5
0
 private void InitGridView(DevComponents.DotNetBar.Controls.DataGridViewX vGrid)
 {
     vGrid.SelectionMode         = DataGridViewSelectionMode.FullRowSelect;
     vGrid.ReadOnly              = true;
     vGrid.AllowUserToAddRows    = false;
     vGrid.AllowUserToDeleteRows = false;
 }
示例#6
0
 public FrmOutEarth(GSOGlobeControl globeControl, DevComponents.DotNetBar.Controls.DataGridViewX dataGridViewX11, ToolStripStatusLabel toolStripNumbers1)
 {
     InitializeComponent();
     globeControl1 = globeControl;
     dataGridViewX1 = dataGridViewX11;
     toolStripNumbers = toolStripNumbers1;
 }
示例#7
0
        public override void OnClick()
        {
            DevComponents.DotNetBar.Controls.DataGridViewX GetDataGrid = null;

            if (m_Hook.PolylineSearchGrid.Name != null)
            {
                if (m_Hook.PolylineSearchGrid.Name.Trim() == "ActiveMenu")
                {
                    GetDataGrid = m_Hook.PolylineSearchGrid;
                }
            }
            if (m_Hook.PolygonSearchGrid.Name != null)
            {
                if (m_Hook.PolygonSearchGrid.Name.Trim() == "ActiveMenu")
                {
                    GetDataGrid = m_Hook.PolygonSearchGrid;
                }
            }
            if (m_Hook.JoinMergeResultGrid.Name != null)
            {
                if (m_Hook.JoinMergeResultGrid.Name.Trim() == "ActiveMenu")
                {
                    GetDataGrid = m_Hook.JoinMergeResultGrid;
                }
            }
            if (null == GetDataGrid)
            {
                return;
            }
            GetDataGrid.DataSource = null;
        }
示例#8
0
        public override void OnClick()
        {
            DevComponents.DotNetBar.Controls.DataGridViewX GetDataGrid = null;

            if (m_Hook.PolylineSearchGrid.Name != null)
            {
                if (m_Hook.PolylineSearchGrid.Name.Trim() == "ActiveMenu")
                {
                    GetDataGrid = m_Hook.PolylineSearchGrid;
                }
            }
            if (m_Hook.PolygonSearchGrid.Name != null)
            {
                if (m_Hook.PolygonSearchGrid.Name.Trim() == "ActiveMenu")
                {
                    GetDataGrid = m_Hook.PolygonSearchGrid;
                }
            }
            if (m_Hook.JoinMergeResultGrid.Name != null)
            {
                if (m_Hook.JoinMergeResultGrid.Name.Trim() == "ActiveMenu")
                {
                    GetDataGrid = m_Hook.JoinMergeResultGrid;
                }
            }
            if (null == GetDataGrid)
            {
                return;
            }
            for (int i = 0; i < GetDataGrid.Rows.Count; i++)
            {
                GetDataGrid.Rows[i].Cells[0].Value = false;
            }
        }
示例#9
0
 public FrmOutEarth(GSOGlobeControl globeControl, DevComponents.DotNetBar.Controls.DataGridViewX dataGridViewX11, ToolStripStatusLabel toolStripNumbers1)
 {
     InitializeComponent();
     globeControl1    = globeControl;
     dataGridViewX1   = dataGridViewX11;
     toolStripNumbers = toolStripNumbers1;
 }
示例#10
0
        public void HienthiBnDataGridview(DevComponents.DotNetBar.Controls.DataGridViewX dg, string str)
        {
            System.Windows.Forms.BindingSource bs = new System.Windows.Forms.BindingSource();
            DataTable tbl = data.DanhsachNguoiDung(str);

            bs.DataSource = tbl;
            //bn.BindingSource = bs;
            dg.DataSource = bs;
        }
        public void HienthiDataGridviewNhanVienTheoPhong(DevComponents.DotNetBar.Controls.DataGridViewX dg, string maphong, string trangthai)
        {
            System.Windows.Forms.BindingSource bs = new System.Windows.Forms.BindingSource();
            DataTable tbl = data.DanhsachNhanVienTheoPhong(maphong, trangthai);

            bs.DataSource = tbl;
            //bn.BindingSource = bs;
            dg.DataSource = bs;
        }
示例#12
0
        public void StokGoster(DevComponents.DotNetBar.Controls.DataGridViewX dGView_Stok)
        {
            baglanti.Open();
            adap = new SqlDataAdapter("SELECT * FROM StokList", baglanti);
            DataSet ds = new DataSet();

            adap.Fill(ds, "Bilgiler");
            dGView_Stok.DataSource = ds.Tables["Bilgiler"];
            adap.Dispose();
            baglanti.Close();
        }
示例#13
0
        public void FaturaGoster(DevComponents.DotNetBar.Controls.DataGridViewX dGView_Fatura)
        {
            baglanti.Open();
            adap = new SqlDataAdapter("SELECT * FROM FaturaList", baglanti);
            DataSet ds = new DataSet();

            adap.Fill(ds, "Veriler");
            dGView_Fatura.DataSource = ds.Tables["Veriler"];
            adap.Dispose();
            baglanti.Close();
        }
示例#14
0
        public void RehberGoster(DevComponents.DotNetBar.Controls.DataGridViewX dGView_Kisiler)
        {
            baglanti.Open();
            adap = new SqlDataAdapter("SELECT * FROM RehberList", baglanti);
            DataSet ds = new DataSet();

            adap.Fill(ds, "RehberBilgileri");
            dGView_Kisiler.DataSource = ds.Tables["RehberBilgileri"];
            adap.Dispose();
            baglanti.Close();
        }
示例#15
0
 public FrmJoinAttribute(AxMapControl mapcontrol, ILayer layer, DevComponents.DotNetBar.Bar barTable, DataTable AttributeTable, DevComponents.DotNetBar.Controls.DataGridViewX gridfield, DockContainerItem docktable)
 {
     InitializeComponent();
     this.EnableGlass = false;
     pMapControl      = mapcontrol;
     pLayer           = layer;
     m_barTable       = barTable;
     m_AttributeTable = AttributeTable;
     m_gridfield      = gridfield;
     m_docktable      = docktable;
 }
示例#16
0
 /// <summary>
 /// 这是全局显示灯的方法
 /// 1、lx 类型
 /// 2、lxid 类型id
 /// 3、1 代表超时
 /// 4、0 代表即将超时
 /// 5、3 代表补录
 /// 疑问:为啥没有2?这个问题靠你了!^_^
 /// 解答: 以前有2,代表质控,后面质控研发调整改了,也不知道为啥O(∩_∩)O~
 /// </summary>
 /// <param name="DGV">DataGridViewX</param>
 private void Light(DevComponents.DotNetBar.Controls.DataGridViewX DGV)
 {
     try
     {
         DGV.Columns["类型id"].Visible = false;
     }
     catch (Exception ex)
     {
         ex.Message.ToString();
     }
 }
示例#17
0
        public void CariLikeIL(DevComponents.DotNetBar.Controls.ComboBoxEx cmBox_İl, DevComponents.DotNetBar.Controls.DataGridViewX dGView_Cari)
        {
            baglanti.Open();
            adap = new SqlDataAdapter("SELECT * FROM CariList WHERE Il=@il;", baglanti);
            adap.SelectCommand.Parameters.Add("il", cmBox_İl.SelectedItem.ToString());
            DataSet ds = new DataSet();

            adap.Fill(ds, "CariSuzme");
            dGView_Cari.DataSource = ds.Tables["CariSuzme"];
            adap.Dispose();
            baglanti.Close();
        }
示例#18
0
 public void KasaSil(int id, DevComponents.DotNetBar.Controls.DataGridViewX dGView_Kasa)
 {
     MessageBoxEx.EnableGlass         = false;
     MessageBoxEx.MessageBoxTextColor = System.Drawing.Color.Black;
     if (MessageBoxEx.Show("   Silmek istediğinizden emin misiniz?   ", "Dikkat", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.Yes)
     {
         baglanti.Open();
         cmd = new SqlCommand("DELETE FROM KasaList WHERE KasaID=@id", baglanti);
         cmd.Parameters.Add("id", id);
         cmd.ExecuteNonQuery();
         cmd.Dispose();
         baglanti.Close();
     }
 }
示例#19
0
        private void SetValue(IFields pFields, IFeatureClass pFeatureClass, DevComponents.DotNetBar.Controls.DataGridViewX pDataGirdView)
        {
            DataGridViewTextBoxColumn pDataColumn = null;

            for (int i = 0; i < pFields.FieldCount; i++)
            {
                pDataColumn            = new DataGridViewTextBoxColumn();
                pDataColumn.HeaderText = pFields.get_Field(i).AliasName;
                pDataColumn.Name       = pFields.get_Field(i).Name;
                pDataGirdView.Columns.Add(pDataColumn);
                pDataColumn = null;
            }
            IFeatureCursor pFeatureCursor = null;
            IFeature       pFeature       = null;
            int            FeatureCount   = 0;

            FeatureCount = SysCommon.Gis.ModGisPub.GetFeatureCount(pFeatureClass, null);
            ///ZQ 2011 1128
            //progressBarX1.Minimum = 0;
            //progressBarX1.Maximum = FeatureCount;
            //progressBarX1.Visible = true;
            int k = 0;

            pFeatureCursor = pFeatureClass.Search(null, false);
            pFeature       = pFeatureCursor.NextFeature();
            string StrFieldName = "";

            while (pFeature != null)
            {
                pDataGirdView.Rows.Add();
                for (int j = 0; j < pFields.FieldCount; j++)
                {
                    StrFieldName = pFields.get_Field(j).Name;
                    if (StrFieldName == pFeatureClass.ShapeFieldName)
                    {
                        pDataGirdView[StrFieldName, k].Value = pFeatureClass.ShapeType;
                    }
                    else
                    {
                        pDataGirdView[StrFieldName, k].Value = pFeature.get_Value(j);
                    }
                }
                //k = k + 1;
                //progressBarX1.Value = k;

                Application.DoEvents();
                pFeature = pFeatureCursor.NextFeature();
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.dataGridViewEmpresas = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.label1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewEmpresas)).BeginInit();
     this.SuspendLayout();
     //
     // dataGridViewEmpresas
     //
     this.dataGridViewEmpresas.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewEmpresas.DefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewEmpresas.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
     this.dataGridViewEmpresas.Location = new System.Drawing.Point(1, 12);
     this.dataGridViewEmpresas.Name = "dataGridViewEmpresas";
     this.dataGridViewEmpresas.Size = new System.Drawing.Size(687, 327);
     this.dataGridViewEmpresas.TabIndex = 0;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(186, 342);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(296, 13);
     this.label1.TabIndex = 2;
     this.label1.Text = "Doble click sobre la empresa deseada para obtener el codigo";
     //
     // Empresas_View
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(688, 364);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.dataGridViewEmpresas);
     this.Name = "Empresas_View";
     this.Text = "Empresas_View";
     this.Load += new System.EventHandler(this.Empresas_View_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewEmpresas)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#21
0
        //加载图层到listViewExLayers
        private void AddLayersToList(IMap pMap, DevComponents.DotNetBar.Controls.DataGridViewX pDataGridViewX)
        {
            UID pUID = new UIDClass();

            pUID.Value = "{E156D7E5-22AF-11D3-9F99-00C04F6BC78E}";   //UID for IGeoFeatureLayer
            IEnumLayer pEnumLayer = pMap.get_Layers(pUID, true);

            pEnumLayer.Reset();
            ILayer pLayer = pEnumLayer.Next();

            while (pLayer != null)
            {
                AddLayerToList(pLayer, pDataGridViewX);
                pLayer = pEnumLayer.Next();
            }
        }
示例#22
0
        public static void Start(DevComponents.DotNetBar.LabelX lbLog, System.Windows.Forms.WebBrowser txtBox, DevComponents.DotNetBar.Controls.DataGridViewX grid, DevComponents.DotNetBar.RadialMenuItem radial_online, bool SaveLog)
        {
            Log.lbLog         = lbLog;
            Log.SaveLog       = SaveLog;
            Log.webLongLob    = txtBox;
            Log.grid_online   = grid;
            Log.radial_online = radial_online;
            Log.HtmlMainContent.AppendLine("<!DOCTYPE html>");
            Log.HtmlMainContent.AppendLine("<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en-us\">");
            Log.HtmlMainContent.AppendLine("<head>");
            Log.HtmlMainContent.AppendLine("<style>");
            Log.HtmlMainContent.AppendLine("{0}");//style
            Log.HtmlMainContent.AppendLine("</style>");
            Log.HtmlMainContent.AppendLine("</head>");
            Log.HtmlMainContent.AppendLine(string.Format("\t<body style='{0}'>", "background-color:#211d1d;font-size:15px;padding:0px; margin:0px;"));
            //Log.HtmlMainContent.AppendLine("\t<div id='content'>");
            Log.HtmlMainContent.AppendLine("\t<ul id='list' style='list-style:none;  width: 100%; height:100%;padding:0px; margin:0px;overflow: hidden;'>");
            Log.HtmlMainContent.AppendLine("\t</ul>");
            //Log.HtmlMainContent.AppendLine("\t</div>");
            Log.HtmlMainContent.AppendLine("{1}"); //jagascript
            Log.HtmlMainContent.AppendLine("\t</body>");
            Log.HtmlMainContent.AppendLine("</html>");

            Log.javascript.AppendLine("\t<script>");
            Log.javascript.AppendLine("\tfunction newline(text,style){");
            Log.javascript.AppendLine("\t\t\tvar ul = document.getElementById('list');");
            Log.javascript.AppendLine("\t\t\tvar li = document.createElement('li');");
            Log.javascript.AppendLine("\t\t\tli.className = style;");
            Log.javascript.AppendLine("\t\t\tli.innerHTML = text;");
            Log.javascript.AppendLine("\t\t\tul.appendChild(li);");
            Log.javascript.AppendLine("\t\t\twindow.scrollTo(0,document.body.scrollHeight);");
            Log.javascript.AppendLine("\t}");
            Log.javascript.AppendLine("\t</script>");

            Log.style.AppendLine("li.info {color: #9aff00;}");
            Log.style.AppendLine("li.warning {color: #ffff00;}");
            Log.style.AppendLine("li.error {color: #ff0000;}");

            StringBuilder logbox2 = new StringBuilder(webLongLob.DocumentText);

            logbox2.AppendFormat(HtmlMainContent.ToString(), style.ToString(), javascript.ToString());
            webLongLob.DocumentText = logbox2.ToString();
            //webLongLob.Dock = System.Windows.Forms.DockStyle.Right;
            //Log.txtLog = txtBox;
        }
        public void HienthiDataGridviewTheoMaNV(DevComponents.DotNetBar.Controls.DataGridViewX dg, System.Windows.Forms.BindingNavigator bn, DevComponents.DotNetBar.Controls.ComboBoxEx hinhthuckhenthuong, DevComponents.DotNetBar.Controls.TextBoxX namkt, DevComponents.DotNetBar.Controls.ComboBoxEx lydokt, DevComponents.DotNetBar.Controls.TextBoxX capkt, string str)
        {
            System.Windows.Forms.BindingSource bs = new System.Windows.Forms.BindingSource();
            bs.DataSource    = data.DanhsachQuaTrinhKT(str);
            bn.BindingSource = bs;
            dg.DataSource    = bs;

            hinhthuckhenthuong.DataBindings.Clear();
            hinhthuckhenthuong.DataBindings.Add("SelectedValue", bs, "mahinhthuc");

            namkt.DataBindings.Clear();
            namkt.DataBindings.Add("text", bs, "nam");

            capkt.DataBindings.Clear();
            capkt.DataBindings.Add("text", bs, "capquyetdinh");

            lydokt.DataBindings.Clear();
            lydokt.DataBindings.Add("SelectedValue", bs, "malydo");
        }
示例#24
0
        /// <summary>
        /// 查询结果中用户双击选中的宗地信息
        /// </summary>
        /// <param name="pDataGridView"></param>
        /// <param name="strTableName"></param>
        /// <param name="strDJH"></param>
        public static void QueryResult(DevComponents.DotNetBar.Controls.DataGridViewX pDataGridView, string strTableName, string strDJH)
        {
            try
            {
                IFeatureWorkspace pFeatureWorkspace = m_Workspace as IFeatureWorkspace;
                ITable            pTable            = pFeatureWorkspace.OpenTable(strTableName);
                IQueryFilter      pQueryFilter      = new QueryFilterClass();
                int    pIndex = pTable.FindField("DJH");
                IField pField = pTable.Fields.get_Field(pIndex);
                switch (pField.Type)
                {
                case esriFieldType.esriFieldTypeString:
                    pQueryFilter.WhereClause = pField.Name + " = '" + strDJH + "'";
                    break;

                default:
                    pQueryFilter.WhereClause = pField.Name + " = " + strDJH;
                    break;
                }
                ICursor pCursor = pTable.Search(pQueryFilter, false);
                IRow    pRow    = pCursor.NextRow();
                if (pRow != null)
                {
                    pDataGridView.Rows.Clear();
                }
                while (pRow != null)
                {
                    for (int i = 0; i < pRow.Fields.FieldCount; i++)
                    {
                        if (pRow.Fields.get_Field(i).Name.ToString() == "OBJECTID")
                        {
                            continue;
                        }
                        pDataGridView.Rows.Add(SysCommon.ModField.GetChineseNameOfField(pRow.Fields.get_Field(i).Name), pRow.get_Value(i).ToString(), pRow.Fields.get_Field(i).Name.ToString());
                    }
                    pRow = pCursor.NextRow();
                }
                System.Runtime.InteropServices.Marshal.ReleaseComObject(pCursor);
                pCursor = null;
            }
            catch { }
        }
示例#25
0
 /// <summary>
 /// 初始化Tab表
 /// </summary>
 /// <param name="pDataGridView"></param>
 /// <param name="strTable"></param>
 public static void GetTable(DevComponents.DotNetBar.Controls.DataGridViewX pDataGridView, string strTable)
 {
     try
     {
         IFeatureWorkspace pFeatureWorkspace = m_Workspace as IFeatureWorkspace;
         ITable            pTable            = pFeatureWorkspace.OpenTable(strTable);
         IFields           pFields           = pTable.Fields;
         for (int i = 0; i < pFields.FieldCount; i++)
         {
             if (pFields.get_Field(i).Name.ToString() == "OBJECTID")
             {
                 continue;
             }
             pDataGridView.Rows.Add(SysCommon.ModField.GetChineseNameOfField(pFields.get_Field(i).Name.ToString()), "", pFields.get_Field(i).Name.ToString());
         }
         pDataGridView.Tag = strTable;
     }
     catch
     { }
 }
示例#26
0
        public override void OnClick()
        {
            DevComponents.DotNetBar.Controls.DataGridViewX GetDataGrid = null;

            if (m_Hook.PolylineSearchGrid.Name != null)
            {
                if (m_Hook.PolylineSearchGrid.Name.Trim() == "ActiveMenu")
                {
                    GetDataGrid = m_Hook.PolylineSearchGrid;
                }
            }
            if (m_Hook.PolygonSearchGrid.Name != null)
            {
                if (m_Hook.PolygonSearchGrid.Name.Trim() == "ActiveMenu")
                {
                    GetDataGrid = m_Hook.PolygonSearchGrid;
                }
            }
            if (m_Hook.JoinMergeResultGrid.Name != null)
            {
                if (m_Hook.JoinMergeResultGrid.Name.Trim() == "ActiveMenu")
                {
                    GetDataGrid = m_Hook.JoinMergeResultGrid;
                }
            }
            if (null == GetDataGrid)
            {
                return;
            }
            for (int i = 0; i < GetDataGrid.Rows.Count; i++)
            {
                //DevComponents.DotNetBar.Controls.CheckBoxX getCheck = null;
                //if (GetDataGrid.Rows[i].Cells[0].Value == null)
                //    continue;
                //getCheck= GetDataGrid.Rows[i].Cells[0].Value as DevComponents.DotNetBar.Controls.CheckBoxX;
                if (GetDataGrid.Rows[i].Cells[GetDataGrid.ColumnCount - 1].Value.ToString().Trim() == "未接边")//判断如果是未接边则选中 20110829 xisheng
                {
                    GetDataGrid.Rows[i].Cells[0].Value = true;
                }
            }
        }
示例#27
0
 public FrmNewThing(
     double minX,
     double minY,
     double maxX,
     double maxY,
     MapType mapType,
     DevComponents.DotNetBar.Controls.DataGridViewX dataGridViewWorks)
 {
     InitializeComponent();
     btnOk.DialogResult      = DialogResult.OK;
     btnCanel.DialogResult   = DialogResult.Cancel;
     this.minX               = minX;
     this.minY               = minY;
     this.maxX               = maxX;
     this.maxY               = maxY;
     this.mapType            = mapType;
     this.txbLeftBottom.Text = this.minX.ToString() + "," + this.minY.ToString();
     this.txbRightTop.Text   = this.maxX.ToString() + "," + this.maxY.ToString();
     this.dataGridViewWorks  = dataGridViewWorks;
     AddLevels();
 }
示例#28
0
 /// <summary>
 /// 将列表中第一列选中 xisheng 20110829
 /// </summary>
 public static void SelectALL(DevComponents.DotNetBar.Controls.DataGridViewX GetDataGrid)
 {
     try
     {
         for (int i = 0; i < GetDataGrid.Rows.Count; i++)
         {
             GetDataGrid.Rows[i].Cells[0].Value = true;
         }
         if (GetDataGrid.Columns.Contains("OriPtn"))
         {
             GetDataGrid.Columns["OriPtn"].Visible = false;
             GetDataGrid.Columns["DesPtn"].Visible = false;
         }
         if (GetDataGrid.Columns.Contains("OriLineIndex"))
         {
             GetDataGrid.Columns["OriLineIndex"].Visible = false;
             GetDataGrid.Columns["DesLineIndex"].Visible = false;
         }
     }
     catch { }
 }
示例#29
0
        private void dgvData_SelectionChanged(object sender, EventArgs e)
        {
            DevComponents.DotNetBar.Controls.DataGridViewX g = (DevComponents.DotNetBar.Controls.DataGridViewX)sender;
            if (g.SelectedRows.Count == 1)
            {
                ClearTextboxToReload();
                DTO.Employee EmployeeSelected = (DTO.Employee)g.SelectedRows[0].DataBoundItem;

                txtEmployeeID.Text   = EmployeeSelected.EmployeeID;
                txtEmployeeName.Text = EmployeeSelected.EmployeeName;
                cboSex.SelectedItem  = EmployeeSelected.Sex;
                txtNumberID.Text     = EmployeeSelected.NumberID;
                txtPhone.Text        = EmployeeSelected.Phone;
                dtmBirthDay.Value    = DateTime.Parse(EmployeeSelected.BirthDay);
                txtAddress.Text      = EmployeeSelected.Address;
                txtPlaceBrith.Text   = EmployeeSelected.PlaceBirth;
                txtAge.Text          = EmployeeSelected.Age;
                txtSalary.Text       = EmployeeSelected.Salary;
                //txtImagelink.Text = EmployeeSelected.ImageLink.ToString();
                txtPassword.Text       = EmployeeSelected.PassWord;
                cboStatus.SelectedItem = EmployeeSelected.StatusName;
                SetSelectItemComboboxPosition(EmployeeSelected.PositionID);
                //image
                try
                {
                    byte[]       b   = employeeBLL.GetImage(EmployeeSelected.EmployeeID);
                    MemoryStream mem = new MemoryStream(b);
                    Image        ima = Image.FromStream(mem, true);
                    picImage.BackgroundImage = ima;
                }
                catch (Exception ex) { };

                //btn
                btnSave.Enabled   = false;
                btnEdit.Enabled   = true;
                btnDelete.Enabled = true;
            }
        }
示例#30
0
 /// <summary>
 /// 控制显示并控制可编辑属性
 /// </summary>
 private void DataGridShow(DevComponents.DotNetBar.Controls.DataGridViewX DT_VIEW_Attriubte)
 {
     if (DT_VIEW_Attriubte.Rows.Count > 0)
     {
         ArrayList list = MoData.GetOnlyReadAtt[layer_name] as ArrayList;                                     //不可修改属性的集合
         DT_VIEW_Attriubte.Columns[0].SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; //禁用第一列不能排序
         DT_VIEW_Attriubte.Columns[1].SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; //第二列不能排序
         for (int c = 0; c < DT_VIEW_Attriubte.Rows.Count; c++)
         {
             DT_VIEW_Attriubte.Rows[c].Height = 18;
             string value = DT_VIEW_Attriubte.Rows[c].Cells[0].Value.ToString();
             //判别属性的名字是否在列表当中
             if (list.Contains(value))
             {
                 DT_VIEW_Attriubte.Rows[c].ReadOnly = true;
             }
             else
             {
                 DT_VIEW_Attriubte.Rows[c].Cells[0].ReadOnly = true;//所有的字段名是不能修改的
             }
         }
     }
 }
示例#31
0
        private void labelX2_DragDrop(object sender, DragEventArgs e)
        {
            DevComponents.DotNetBar.Controls.DataGridViewX p = sender as DevComponents.DotNetBar.Controls.DataGridViewX;

            if (e.Data.GetDataPresent(typeof(DevComponents.AdvTree.Node)))
            {
                DevComponents.AdvTree.Node node = (DevComponents.AdvTree.Node)e.Data.GetData(typeof(DevComponents.AdvTree.Node));

                if (!node.HasChildNodes)
                {
                    if (node.Cells[3].Text == "File")
                    {
                        string filefullname = node.Cells[1].Text;
                        string filename     = node.Cells[0].Text;
                        ulong  filesize     = Convert.ToUInt64(node.Cells[2].Text);
                        AddFile(filefullname, filename, filesize, (uint)(filefullname.ToLower().StartsWith("ftp") ? 2 : 1));
                    }
                }
            }
            else if (e.Data.GetDataPresent(typeof(DevComponents.AdvTree.Node[])))
            {
                DevComponents.AdvTree.Node[] nodes = (DevComponents.AdvTree.Node[])e.Data.GetData(typeof(DevComponents.AdvTree.Node[]));
                foreach (DevComponents.AdvTree.Node node in nodes)
                {
                    if (!node.HasChildNodes)
                    {
                        if (node.Cells[3].Text == "File")
                        {
                            string filefullname = node.Cells[1].Text;
                            string filename     = node.Cells[0].Text;
                            ulong  filesize     = Convert.ToUInt64(node.Cells[2].Text);
                            AddFile(filefullname, filename, filesize, (uint)(filefullname.ToLower().StartsWith("ftp")?2:1));
                        }
                    }
                }
            }
        }
示例#32
0
 public FrmAddUValue(IUniqueValueRenderer ure, IUniqueValueRenderer uremu, IFeatureClass fc, List <IColor> cu, List <IColor> cumu
                     , DevComponents.DotNetBar.Controls.DataGridViewX grid, DevComponents.DotNetBar.Controls.DataGridViewX gridmu
                     , DevComponents.AdvTree.AdvTree tree, DataTable dt, DataTable dtmu, ArrayList avx, ArrayList avxmu
                     , List <long> couu, List <long> couumu, List <long> conuu, List <long> conuumu)
 {
     InitializeComponent();
     this.EnableGlass = false;
     pUniquerender    = ure;
     pUniquerendermu  = uremu;
     coloru           = cu;
     colorumu         = cumu;
     treeshow         = tree;
     addvx            = avx;
     addvxmu          = avxmu;
     pFClass          = fc;
     gridviewu        = grid;
     gridviewmu       = gridmu;
     dtable2          = dt;
     dtable3          = dtmu;
     cuntu            = couu;
     cuntumu          = couumu;
     countu           = conuu;
     countumu         = conuumu;
 }
示例#33
0
 /// <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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Caso));
     this.txCod_resp = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX19 = new DevComponents.DotNetBar.LabelX();
     this.labelX18 = new DevComponents.DotNetBar.LabelX();
     this.txcod_Caso = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX17 = new DevComponents.DotNetBar.LabelX();
     this.labelX16 = new DevComponents.DotNetBar.LabelX();
     this.labelX15 = new DevComponents.DotNetBar.LabelX();
     this.labelX14 = new DevComponents.DotNetBar.LabelX();
     this.labelX13 = new DevComponents.DotNetBar.LabelX();
     this.labelX12 = new DevComponents.DotNetBar.LabelX();
     this.ipFech_solu = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX11 = new DevComponents.DotNetBar.LabelX();
     this.txResp_Caso = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX10 = new DevComponents.DotNetBar.LabelX();
     this.txObservaciones = new System.Windows.Forms.TextBox();
     this.labelX9 = new DevComponents.DotNetBar.LabelX();
     this.sliderNiv_solu = new DevComponents.DotNetBar.Controls.Slider();
     this.labelX8 = new DevComponents.DotNetBar.LabelX();
     this.ckbCaso_cerr = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.txDesc_solu = new System.Windows.Forms.TextBox();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.txDesc_prob = new System.Windows.Forms.TextBox();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.txCargo = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.txNomb_solic = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txCod_empr = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.ipFech_soli = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.btnEliminarAct = new DevComponents.DotNetBar.ButtonX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.dataGridViewX1 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.superValidator1 = new DevComponents.DotNetBar.Validator.SuperValidator();
     this.requiredFieldValidator4 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Your error message here.");
     this.requiredFieldValidator3 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Campo requerido");
     this.requiredFieldValidator2 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Campo requerido");
     this.requiredFieldValidator1 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Campo requerido");
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.highlighter1 = new DevComponents.DotNetBar.Validator.Highlighter();
     this.txNE = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX20 = new DevComponents.DotNetBar.LabelX();
     this.chkbAdm = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.btBuscarEmpresa = new DevComponents.DotNetBar.ButtonX();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.ipFech_solu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ipFech_soli)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // txCod_resp
     //
     this.txCod_resp.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txCod_resp.Border.Class = "TextBoxBorder";
     this.txCod_resp.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txCod_resp.ForeColor = System.Drawing.Color.Black;
     this.txCod_resp.Location = new System.Drawing.Point(157, 495);
     this.txCod_resp.Name = "txCod_resp";
     this.txCod_resp.ReadOnly = true;
     this.txCod_resp.Size = new System.Drawing.Size(95, 20);
     this.txCod_resp.TabIndex = 65;
     //
     // labelX19
     //
     //
     //
     //
     this.labelX19.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX19.Location = new System.Drawing.Point(19, 492);
     this.labelX19.Name = "labelX19";
     this.labelX19.Size = new System.Drawing.Size(132, 23);
     this.labelX19.TabIndex = 64;
     this.labelX19.Text = "Codigo del Responsable :";
     //
     // labelX18
     //
     //
     //
     //
     this.labelX18.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX18.Location = new System.Drawing.Point(9, 9);
     this.labelX18.Name = "labelX18";
     this.labelX18.Size = new System.Drawing.Size(96, 23);
     this.labelX18.TabIndex = 63;
     this.labelX18.Text = "Codigo de Caso :";
     //
     // txcod_Caso
     //
     this.txcod_Caso.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txcod_Caso.Border.Class = "TextBoxBorder";
     this.txcod_Caso.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txcod_Caso.Enabled = false;
     this.txcod_Caso.ForeColor = System.Drawing.Color.Black;
     this.txcod_Caso.Location = new System.Drawing.Point(111, 12);
     this.txcod_Caso.Name = "txcod_Caso";
     this.txcod_Caso.ReadOnly = true;
     this.txcod_Caso.Size = new System.Drawing.Size(100, 20);
     this.txcod_Caso.TabIndex = 62;
     //
     // labelX17
     //
     //
     //
     //
     this.labelX17.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX17.Location = new System.Drawing.Point(656, 347);
     this.labelX17.Name = "labelX17";
     this.labelX17.Size = new System.Drawing.Size(17, 23);
     this.labelX17.TabIndex = 61;
     this.labelX17.Text = "5";
     this.labelX17.TextAlignment = System.Drawing.StringAlignment.Center;
     //
     // labelX16
     //
     //
     //
     //
     this.labelX16.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX16.Location = new System.Drawing.Point(627, 347);
     this.labelX16.Name = "labelX16";
     this.labelX16.Size = new System.Drawing.Size(17, 23);
     this.labelX16.TabIndex = 60;
     this.labelX16.Text = "4";
     this.labelX16.TextAlignment = System.Drawing.StringAlignment.Center;
     //
     // labelX15
     //
     //
     //
     //
     this.labelX15.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX15.Location = new System.Drawing.Point(600, 347);
     this.labelX15.Name = "labelX15";
     this.labelX15.Size = new System.Drawing.Size(17, 23);
     this.labelX15.TabIndex = 59;
     this.labelX15.Text = "3";
     this.labelX15.TextAlignment = System.Drawing.StringAlignment.Center;
     //
     // labelX14
     //
     //
     //
     //
     this.labelX14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX14.Location = new System.Drawing.Point(568, 347);
     this.labelX14.Name = "labelX14";
     this.labelX14.Size = new System.Drawing.Size(17, 23);
     this.labelX14.TabIndex = 58;
     this.labelX14.Text = "2";
     this.labelX14.TextAlignment = System.Drawing.StringAlignment.Center;
     //
     // labelX13
     //
     //
     //
     //
     this.labelX13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX13.Location = new System.Drawing.Point(540, 347);
     this.labelX13.Name = "labelX13";
     this.labelX13.Size = new System.Drawing.Size(17, 23);
     this.labelX13.TabIndex = 57;
     this.labelX13.Text = "1";
     this.labelX13.TextAlignment = System.Drawing.StringAlignment.Center;
     //
     // labelX12
     //
     //
     //
     //
     this.labelX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX12.Location = new System.Drawing.Point(515, 347);
     this.labelX12.Name = "labelX12";
     this.labelX12.Size = new System.Drawing.Size(17, 23);
     this.labelX12.TabIndex = 56;
     this.labelX12.Text = "0";
     this.labelX12.TextAlignment = System.Drawing.StringAlignment.Center;
     //
     // ipFech_solu
     //
     //
     //
     //
     this.ipFech_solu.BackgroundStyle.Class = "DateTimeInputBackground";
     this.ipFech_solu.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFech_solu.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.ipFech_solu.ButtonDropDown.Visible = true;
     this.ipFech_solu.IsPopupCalendarOpen = false;
     this.ipFech_solu.Location = new System.Drawing.Point(487, 463);
     //
     //
     //
     this.ipFech_solu.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ipFech_solu.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFech_solu.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.ipFech_solu.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.ipFech_solu.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.ipFech_solu.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.ipFech_solu.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.ipFech_solu.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ipFech_solu.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.ipFech_solu.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.ipFech_solu.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFech_solu.MonthCalendar.DisplayMonth = new System.DateTime(2012, 5, 1, 0, 0, 0, 0);
     this.ipFech_solu.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.ipFech_solu.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ipFech_solu.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.ipFech_solu.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.ipFech_solu.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.ipFech_solu.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFech_solu.MonthCalendar.TodayButtonVisible = true;
     this.ipFech_solu.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.ipFech_solu.Name = "ipFech_solu";
     this.ipFech_solu.Size = new System.Drawing.Size(200, 20);
     this.ipFech_solu.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ipFech_solu.TabIndex = 55;
     //
     // labelX11
     //
     //
     //
     //
     this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX11.Location = new System.Drawing.Point(373, 463);
     this.labelX11.Name = "labelX11";
     this.labelX11.Size = new System.Drawing.Size(99, 23);
     this.labelX11.TabIndex = 54;
     this.labelX11.Text = "Fecha de Solucion :";
     //
     // txResp_Caso
     //
     this.txResp_Caso.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txResp_Caso.Border.Class = "TextBoxBorder";
     this.txResp_Caso.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txResp_Caso.ForeColor = System.Drawing.Color.Black;
     this.txResp_Caso.Location = new System.Drawing.Point(157, 466);
     this.txResp_Caso.Name = "txResp_Caso";
     this.txResp_Caso.ReadOnly = true;
     this.txResp_Caso.Size = new System.Drawing.Size(193, 20);
     this.txResp_Caso.TabIndex = 53;
     //
     // labelX10
     //
     //
     //
     //
     this.labelX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX10.Location = new System.Drawing.Point(19, 463);
     this.labelX10.Name = "labelX10";
     this.labelX10.Size = new System.Drawing.Size(132, 23);
     this.labelX10.TabIndex = 52;
     this.labelX10.Text = "Responsable del Caso :";
     //
     // txObservaciones
     //
     this.txObservaciones.Location = new System.Drawing.Point(19, 319);
     this.txObservaciones.Multiline = true;
     this.txObservaciones.Name = "txObservaciones";
     this.txObservaciones.ReadOnly = true;
     this.txObservaciones.Size = new System.Drawing.Size(331, 131);
     this.txObservaciones.TabIndex = 51;
     //
     // labelX9
     //
     //
     //
     //
     this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX9.Location = new System.Drawing.Point(19, 299);
     this.labelX9.Name = "labelX9";
     this.labelX9.Size = new System.Drawing.Size(132, 23);
     this.labelX9.TabIndex = 50;
     this.labelX9.Text = "Observaciones :";
     //
     // sliderNiv_solu
     //
     //
     //
     //
     this.sliderNiv_solu.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.sliderNiv_solu.Enabled = false;
     this.sliderNiv_solu.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.sliderNiv_solu.Location = new System.Drawing.Point(462, 329);
     this.sliderNiv_solu.Maximum = 5;
     this.sliderNiv_solu.Name = "sliderNiv_solu";
     this.sliderNiv_solu.Size = new System.Drawing.Size(225, 23);
     this.sliderNiv_solu.Style = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
     this.sliderNiv_solu.TabIndex = 49;
     this.sliderNiv_solu.Tag = "0 1 2 3 4 5 6 ";
     this.sliderNiv_solu.Text = " ";
     this.sliderNiv_solu.Value = 0;
     //
     // labelX8
     //
     //
     //
     //
     this.labelX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX8.Location = new System.Drawing.Point(373, 328);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(98, 23);
     this.labelX8.TabIndex = 48;
     this.labelX8.Text = "Nivel de Solucion :";
     //
     // ckbCaso_cerr
     //
     //
     //
     //
     this.ckbCaso_cerr.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ckbCaso_cerr.Enabled = false;
     this.ckbCaso_cerr.Location = new System.Drawing.Point(451, 299);
     this.ckbCaso_cerr.Name = "ckbCaso_cerr";
     this.ckbCaso_cerr.Size = new System.Drawing.Size(20, 24);
     this.ckbCaso_cerr.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ckbCaso_cerr.TabIndex = 47;
     //
     // labelX7
     //
     //
     //
     //
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Location = new System.Drawing.Point(373, 299);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(81, 23);
     this.labelX7.TabIndex = 46;
     this.labelX7.Text = "Caso Cerrado :";
     //
     // txDesc_solu
     //
     this.txDesc_solu.Location = new System.Drawing.Point(373, 162);
     this.txDesc_solu.Multiline = true;
     this.txDesc_solu.Name = "txDesc_solu";
     this.txDesc_solu.ReadOnly = true;
     this.txDesc_solu.Size = new System.Drawing.Size(331, 131);
     this.txDesc_solu.TabIndex = 45;
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Location = new System.Drawing.Point(373, 132);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(132, 23);
     this.labelX6.TabIndex = 44;
     this.labelX6.Text = "Descripcion de Solucion :";
     //
     // txDesc_prob
     //
     this.txDesc_prob.Location = new System.Drawing.Point(19, 162);
     this.txDesc_prob.Multiline = true;
     this.txDesc_prob.Name = "txDesc_prob";
     this.txDesc_prob.ReadOnly = true;
     this.txDesc_prob.Size = new System.Drawing.Size(331, 131);
     this.txDesc_prob.TabIndex = 43;
     this.superValidator1.SetValidator1(this.txDesc_prob, this.requiredFieldValidator4);
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Location = new System.Drawing.Point(19, 132);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(149, 23);
     this.labelX5.TabIndex = 42;
     this.labelX5.Text = "Descripcion de la Solicitud :";
     //
     // txCargo
     //
     this.txCargo.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txCargo.Border.Class = "TextBoxBorder";
     this.txCargo.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txCargo.ForeColor = System.Drawing.Color.Black;
     this.txCargo.Location = new System.Drawing.Point(497, 106);
     this.txCargo.Name = "txCargo";
     this.txCargo.ReadOnly = true;
     this.txCargo.Size = new System.Drawing.Size(185, 20);
     this.txCargo.TabIndex = 41;
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(451, 103);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(40, 23);
     this.labelX4.TabIndex = 40;
     this.labelX4.Text = "Cargo :";
     //
     // txNomb_solic
     //
     this.txNomb_solic.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txNomb_solic.Border.Class = "TextBoxBorder";
     this.txNomb_solic.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txNomb_solic.ForeColor = System.Drawing.Color.Black;
     this.txNomb_solic.Location = new System.Drawing.Point(157, 106);
     this.txNomb_solic.MaxLength = 50;
     this.txNomb_solic.Name = "txNomb_solic";
     this.txNomb_solic.ReadOnly = true;
     this.txNomb_solic.Size = new System.Drawing.Size(183, 20);
     this.txNomb_solic.TabIndex = 39;
     this.superValidator1.SetValidator1(this.txNomb_solic, this.requiredFieldValidator3);
     //
     // txCod_empr
     //
     this.txCod_empr.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txCod_empr.Border.Class = "TextBoxBorder";
     this.txCod_empr.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txCod_empr.ForeColor = System.Drawing.Color.Black;
     this.txCod_empr.Location = new System.Drawing.Point(568, 77);
     this.txCod_empr.Name = "txCod_empr";
     this.txCod_empr.ReadOnly = true;
     this.txCod_empr.Size = new System.Drawing.Size(114, 20);
     this.txCod_empr.TabIndex = 38;
     this.superValidator1.SetValidator1(this.txCod_empr, this.requiredFieldValidator2);
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(19, 103);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(132, 23);
     this.labelX3.TabIndex = 37;
     this.labelX3.Text = "Nombre del Solicitante :";
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(451, 77);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(111, 23);
     this.labelX2.TabIndex = 36;
     this.labelX2.Text = "Codigo de Empresa :";
     //
     // ipFech_soli
     //
     //
     //
     //
     this.ipFech_soli.BackgroundStyle.Class = "DateTimeInputBackground";
     this.ipFech_soli.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFech_soli.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.ipFech_soli.ButtonDropDown.Visible = true;
     this.ipFech_soli.IsPopupCalendarOpen = false;
     this.ipFech_soli.Location = new System.Drawing.Point(478, 44);
     //
     //
     //
     this.ipFech_soli.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ipFech_soli.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFech_soli.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.ipFech_soli.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.ipFech_soli.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.ipFech_soli.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.ipFech_soli.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.ipFech_soli.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ipFech_soli.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.ipFech_soli.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.ipFech_soli.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFech_soli.MonthCalendar.DisplayMonth = new System.DateTime(2012, 5, 1, 0, 0, 0, 0);
     this.ipFech_soli.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.ipFech_soli.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ipFech_soli.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.ipFech_soli.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.ipFech_soli.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.ipFech_soli.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFech_soli.MonthCalendar.TodayButtonVisible = true;
     this.ipFech_soli.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.ipFech_soli.Name = "ipFech_soli";
     this.ipFech_soli.Size = new System.Drawing.Size(200, 20);
     this.ipFech_soli.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ipFech_soli.TabIndex = 35;
     this.superValidator1.SetValidator1(this.ipFech_soli, this.requiredFieldValidator1);
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(373, 44);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(99, 23);
     this.labelX1.TabIndex = 34;
     this.labelX1.Text = "Fecha de Solicitud :";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.btnEliminarAct);
     this.groupBox1.Controls.Add(this.buttonX1);
     this.groupBox1.Controls.Add(this.dataGridViewX1);
     this.groupBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.Location = new System.Drawing.Point(3, 521);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(721, 296);
     this.groupBox1.TabIndex = 66;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Actividades";
     //
     // btnEliminarAct
     //
     this.btnEliminarAct.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnEliminarAct.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnEliminarAct.Location = new System.Drawing.Point(599, 263);
     this.btnEliminarAct.Name = "btnEliminarAct";
     this.btnEliminarAct.Size = new System.Drawing.Size(102, 23);
     this.btnEliminarAct.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnEliminarAct.TabIndex = 32;
     this.btnEliminarAct.Text = "Eliminar Actividad";
     this.btnEliminarAct.Click += new System.EventHandler(this.buttonX2_Click);
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Location = new System.Drawing.Point(475, 263);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(107, 23);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 31;
     this.buttonX1.Text = "Crear Actividad";
     this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // dataGridViewX1
     //
     this.dataGridViewX1.AccessibleDescription = "";
     this.dataGridViewX1.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewX1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.White;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewX1.DefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridViewX1.EnableHeadersVisualStyles = false;
     this.dataGridViewX1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(101)))), ((int)(((byte)(107)))), ((int)(((byte)(114)))));
     this.dataGridViewX1.Location = new System.Drawing.Point(6, 19);
     this.dataGridViewX1.Name = "dataGridViewX1";
     this.dataGridViewX1.ReadOnly = true;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewX1.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.dataGridViewX1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridViewX1.Size = new System.Drawing.Size(709, 234);
     this.dataGridViewX1.TabIndex = 30;
     this.dataGridViewX1.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewX1_CellDoubleClick);
     this.dataGridViewX1.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.dataGridViewX1_CellFormatting);
     //
     // superValidator1
     //
     this.superValidator1.ContainerControl = this;
     this.superValidator1.ErrorProvider = this.errorProvider1;
     this.superValidator1.Highlighter = this.highlighter1;
     //
     // requiredFieldValidator4
     //
     this.requiredFieldValidator4.ErrorMessage = "Your error message here.";
     this.requiredFieldValidator4.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // requiredFieldValidator3
     //
     this.requiredFieldValidator3.ErrorMessage = "Campo requerido";
     this.requiredFieldValidator3.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // requiredFieldValidator2
     //
     this.requiredFieldValidator2.ErrorMessage = "Campo requerido";
     this.requiredFieldValidator2.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // requiredFieldValidator1
     //
     this.requiredFieldValidator1.ErrorMessage = "Campo requerido";
     this.requiredFieldValidator1.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // highlighter1
     //
     this.highlighter1.ContainerControl = this;
     //
     // txNE
     //
     this.txNE.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txNE.Border.Class = "TextBoxBorder";
     this.txNE.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txNE.ForeColor = System.Drawing.Color.Black;
     this.txNE.Location = new System.Drawing.Point(157, 80);
     this.txNE.Name = "txNE";
     this.txNE.ReadOnly = true;
     this.txNE.Size = new System.Drawing.Size(183, 20);
     this.txNE.TabIndex = 68;
     this.superValidator1.SetValidator1(this.txNE, this.requiredFieldValidator2);
     //
     // labelX20
     //
     //
     //
     //
     this.labelX20.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX20.Location = new System.Drawing.Point(19, 77);
     this.labelX20.Name = "labelX20";
     this.labelX20.Size = new System.Drawing.Size(111, 23);
     this.labelX20.TabIndex = 67;
     this.labelX20.Text = "Nombre de Empresa :";
     //
     // chkbAdm
     //
     //
     //
     //
     this.chkbAdm.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkbAdm.Location = new System.Drawing.Point(546, 299);
     this.chkbAdm.Name = "chkbAdm";
     this.chkbAdm.Size = new System.Drawing.Size(158, 23);
     this.chkbAdm.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkbAdm.TabIndex = 69;
     this.chkbAdm.Text = "Cerrado por Administrador";
     this.chkbAdm.Visible = false;
     //
     // btBuscarEmpresa
     //
     this.btBuscarEmpresa.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btBuscarEmpresa.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btBuscarEmpresa.Location = new System.Drawing.Point(357, 79);
     this.btBuscarEmpresa.Name = "btBuscarEmpresa";
     this.btBuscarEmpresa.Size = new System.Drawing.Size(75, 23);
     this.btBuscarEmpresa.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btBuscarEmpresa.TabIndex = 70;
     this.btBuscarEmpresa.Text = "Buscar";
     this.btBuscarEmpresa.Click += new System.EventHandler(this.btBuscarEmpresa_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label1.Location = new System.Drawing.Point(340, 87);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(11, 13);
     this.label1.TabIndex = 71;
     this.label1.Text = "*";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label2.Location = new System.Drawing.Point(340, 113);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(11, 13);
     this.label2.TabIndex = 72;
     this.label2.Text = "*";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label3.Location = new System.Drawing.Point(686, 83);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(11, 13);
     this.label3.TabIndex = 73;
     this.label3.Text = "*";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label4.Location = new System.Drawing.Point(684, 49);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(11, 13);
     this.label4.TabIndex = 74;
     this.label4.Text = "*";
     //
     // Caso
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.btBuscarEmpresa);
     this.Controls.Add(this.chkbAdm);
     this.Controls.Add(this.txNE);
     this.Controls.Add(this.labelX20);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.txCod_resp);
     this.Controls.Add(this.labelX19);
     this.Controls.Add(this.labelX18);
     this.Controls.Add(this.txcod_Caso);
     this.Controls.Add(this.labelX17);
     this.Controls.Add(this.labelX16);
     this.Controls.Add(this.labelX15);
     this.Controls.Add(this.labelX14);
     this.Controls.Add(this.labelX13);
     this.Controls.Add(this.labelX12);
     this.Controls.Add(this.ipFech_solu);
     this.Controls.Add(this.labelX11);
     this.Controls.Add(this.txResp_Caso);
     this.Controls.Add(this.labelX10);
     this.Controls.Add(this.txObservaciones);
     this.Controls.Add(this.labelX9);
     this.Controls.Add(this.sliderNiv_solu);
     this.Controls.Add(this.labelX8);
     this.Controls.Add(this.ckbCaso_cerr);
     this.Controls.Add(this.labelX7);
     this.Controls.Add(this.txDesc_solu);
     this.Controls.Add(this.labelX6);
     this.Controls.Add(this.txDesc_prob);
     this.Controls.Add(this.labelX5);
     this.Controls.Add(this.txCargo);
     this.Controls.Add(this.labelX4);
     this.Controls.Add(this.txNomb_solic);
     this.Controls.Add(this.txCod_empr);
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.ipFech_soli);
     this.Controls.Add(this.labelX1);
     this.Name = "Caso";
     this.Size = new System.Drawing.Size(756, 820);
     this.Load += new System.EventHandler(this.Caso_Load_1);
     ((System.ComponentModel.ISupportInitialize)(this.ipFech_solu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ipFech_soli)).EndInit();
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.Utils.SuperToolTip superToolTip15 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem14 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip16 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem15 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip18 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem17 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip17 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem16 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip19 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem18 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip20 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem19 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip22 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem21 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip27 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem26 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip21 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem20 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip23 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem22 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip24 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem23 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip25 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem24 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip26 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem25 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle60 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle74 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle75 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle61 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle62 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle63 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle64 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle65 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle66 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle67 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle68 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle69 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle70 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle71 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle72 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle73 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle76 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle77 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle78 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle79 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle80 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle81 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle82 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle83 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle84 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle85 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle86 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle87 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle88 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle89 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle90 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle91 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle92 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle100 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle101 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle93 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle94 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle95 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle96 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle97 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle98 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle99 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle102 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle111 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle112 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle103 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle104 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle105 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle106 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle107 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle108 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle109 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle110 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle57 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle58 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle59 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_orden_produccion));
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.btn_nuevo = new DevExpress.XtraBars.BarButtonItem();
     this.btn_editar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_cancelar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_grabar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_eliminar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_imprimir = new DevExpress.XtraBars.BarButtonItem();
     this.btn_log = new DevExpress.XtraBars.BarButtonItem();
     this.btn_clave = new DevExpress.XtraBars.BarButtonItem();
     this.btn_salir = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.btnLoad = new DevExpress.XtraBars.BarButtonItem();
     this.btnInicio = new DevExpress.XtraBars.BarButtonItem();
     this.btnAnterior = new DevExpress.XtraBars.BarButtonItem();
     this.btnSiguiente = new DevExpress.XtraBars.BarButtonItem();
     this.btnUltimo = new DevExpress.XtraBars.BarButtonItem();
     this.textBox13 = new System.Windows.Forms.TextBox();
     this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.tab_01 = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.Mdi_dgv_ordenproduccion = new DevExpress.XtraGrid.GridControl();
     this.dgv_ordenproduccion = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.marcaname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ordenprod = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fechemi = new DevExpress.XtraGrid.Columns.GridColumn();
     this.articid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.articname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lineaname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.generoname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.temporadaname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coleccionname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.estadoname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemTextEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.tab_02 = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.txt_taco12 = new DevExpress.XtraEditors.TextEdit();
     this.txt_taco11 = new DevExpress.XtraEditors.TextEdit();
     this.txt_taco10 = new DevExpress.XtraEditors.TextEdit();
     this.txt_taco09 = new DevExpress.XtraEditors.TextEdit();
     this.txt_taco08 = new DevExpress.XtraEditors.TextEdit();
     this.txt_taco07 = new DevExpress.XtraEditors.TextEdit();
     this.txt_taco06 = new DevExpress.XtraEditors.TextEdit();
     this.txt_taco05 = new DevExpress.XtraEditors.TextEdit();
     this.txt_taco04 = new DevExpress.XtraEditors.TextEdit();
     this.txt_taco03 = new DevExpress.XtraEditors.TextEdit();
     this.txt_taco02 = new DevExpress.XtraEditors.TextEdit();
     this.txt_taco01 = new DevExpress.XtraEditors.TextEdit();
     this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
     this.txt_numop = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.cmb_ordprod = new System.Windows.Forms.ComboBox();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.btn_quitar = new DevExpress.XtraEditors.SimpleButton();
     this.dgv_ordenprodcolor = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.tipop = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.serop = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.numop = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colorid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colorname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.coltalla = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.can01 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.can02 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.can03 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.can04 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.can05 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.can06 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.can07 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.can08 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.can09 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.can10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.can11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.can12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantot = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dgv_grilla = new System.Windows.Forms.DataGridView();
     this.nombre = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ta01 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ta02 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ta03 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ta04 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ta05 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ta06 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ta07 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ta08 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ta09 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ta10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ta11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ta12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btn_add = new DevExpress.XtraEditors.SimpleButton();
     this.txt_tottot = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelControl68 = new DevExpress.XtraEditors.LabelControl();
     this.txt_tottaco12 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_tottaco11 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_tottaco10 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_tottaco09 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_tottaco08 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_tottaco07 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_tottaco06 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_tottaco05 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_tottaco04 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_tottaco03 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_tottaco02 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_tottaco01 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_observacion = new System.Windows.Forms.TextBox();
     this.labelControl58 = new DevExpress.XtraEditors.LabelControl();
     this.txt_temporadaname = new System.Windows.Forms.TextBox();
     this.labelControl57 = new DevExpress.XtraEditors.LabelControl();
     this.txt_tacotot = new System.Windows.Forms.TextBox();
     this.lbltaco12 = new DevExpress.XtraEditors.LabelControl();
     this.lbltaco11 = new DevExpress.XtraEditors.LabelControl();
     this.lbltaco10 = new DevExpress.XtraEditors.LabelControl();
     this.lbltaco09 = new DevExpress.XtraEditors.LabelControl();
     this.lbltaco08 = new DevExpress.XtraEditors.LabelControl();
     this.lbltaco07 = new DevExpress.XtraEditors.LabelControl();
     this.lbltaco06 = new DevExpress.XtraEditors.LabelControl();
     this.lbltaco05 = new DevExpress.XtraEditors.LabelControl();
     this.lbltaco04 = new DevExpress.XtraEditors.LabelControl();
     this.lbltaco03 = new DevExpress.XtraEditors.LabelControl();
     this.lbltaco02 = new DevExpress.XtraEditors.LabelControl();
     this.lbltaco01 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl43 = new DevExpress.XtraEditors.LabelControl();
     this.txt_colorname = new System.Windows.Forms.TextBox();
     this.txt_colorid = new System.Windows.Forms.TextBox();
     this.labelControl44 = new DevExpress.XtraEditors.LabelControl();
     this.txt_cantreal = new System.Windows.Forms.TextBox();
     this.txt_cantprog = new System.Windows.Forms.TextBox();
     this.labelControl36 = new DevExpress.XtraEditors.LabelControl();
     this.txt_numref = new System.Windows.Forms.TextBox();
     this.txt_serref = new System.Windows.Forms.TextBox();
     this.txt_tipref = new System.Windows.Forms.TextBox();
     this.labelControl30 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl29 = new DevExpress.XtraEditors.LabelControl();
     this.txt_ctactename = new System.Windows.Forms.TextBox();
     this.txt_ctacte = new System.Windows.Forms.TextBox();
     this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
     this.txt_familiatelaname = new System.Windows.Forms.TextBox();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.cmb_canalvta = new System.Windows.Forms.ComboBox();
     this.txt_generoname = new System.Windows.Forms.TextBox();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.txt_lineaname = new System.Windows.Forms.TextBox();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.txt_marcaname = new System.Windows.Forms.TextBox();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.txt_variante = new System.Windows.Forms.TextBox();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.txt_articname = new System.Windows.Forms.TextBox();
     this.txt_articid = new System.Windows.Forms.TextBox();
     this.cmb_ejecutor = new System.Windows.Forms.ComboBox();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.cmb_estado = new System.Windows.Forms.ComboBox();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.txt_fechfin = new DevExpress.XtraEditors.DateEdit();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.txt_fechini = new DevExpress.XtraEditors.DateEdit();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.txt_fechemi = new DevExpress.XtraEditors.DateEdit();
     this.cmb_perianio = new System.Windows.Forms.ComboBox();
     this.tab_03 = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.pnl_edit2 = new DevExpress.XtraEditors.PanelControl();
     this.txt_fechentrega03 = new DevExpress.XtraEditors.DateEdit();
     this.txt_ctactename03 = new System.Windows.Forms.TextBox();
     this.labelControl39 = new DevExpress.XtraEditors.LabelControl();
     this.txt_fechini03 = new DevExpress.XtraEditors.DateEdit();
     this.labelControl40 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl42 = new DevExpress.XtraEditors.LabelControl();
     this.txt_ctacte03 = new System.Windows.Forms.TextBox();
     this.labelControl41 = new DevExpress.XtraEditors.LabelControl();
     this.txt_serop03 = new DevExpress.XtraEditors.LabelControl();
     this.txt_tipop03 = new DevExpress.XtraEditors.LabelControl();
     this.txt_numop03 = new DevExpress.XtraEditors.LabelControl();
     this.pnl_edit = new DevExpress.XtraEditors.PanelControl();
     this.cmb_fase = new System.Windows.Forms.ComboBox();
     this.labelControl38 = new DevExpress.XtraEditors.LabelControl();
     this.txt_secuencia = new System.Windows.Forms.NumericUpDown();
     this.labelControl37 = new DevExpress.XtraEditors.LabelControl();
     this.btn_new = new DevExpress.XtraEditors.SimpleButton();
     this.btn_save = new DevExpress.XtraEditors.SimpleButton();
     this.line1 = new DevComponents.DotNetBar.Controls.Line();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.btn_cancel = new DevExpress.XtraEditors.SimpleButton();
     this.btn_delete = new DevExpress.XtraEditors.SimpleButton();
     this.btn_edit = new DevExpress.XtraEditors.SimpleButton();
     this.dgv_ordenprodfase = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this._tipop = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._serop = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._numop = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.secuencia = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.faseid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fasename = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ctacte = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ctactename = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fechprog_ini = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fechprog_fin = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btn_add2 = new DevExpress.XtraEditors.SimpleButton();
     this.tab_04 = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
     this.btn_del = new DevExpress.XtraEditors.SimpleButton();
     this.txt_ltizado = new DevExpress.XtraEditors.TextEdit();
     this.labelControl51 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl50 = new DevExpress.XtraEditors.LabelControl();
     this.txt_parte = new System.Windows.Forms.TextBox();
     this.txt_productname1 = new System.Windows.Forms.TextBox();
     this.btn_generar = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl35 = new DevExpress.XtraEditors.LabelControl();
     this.txt_tolerancia = new DevExpress.XtraEditors.TextEdit();
     this.labelControl33 = new DevExpress.XtraEditors.LabelControl();
     this.txt_numpanos = new DevExpress.XtraEditors.TextEdit();
     this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
     this.txt_prendpanos = new DevExpress.XtraEditors.TextEdit();
     this.labelControl31 = new DevExpress.XtraEditors.LabelControl();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.labelControl48 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl49 = new DevExpress.XtraEditors.LabelControl();
     this.dgv_consumoreal = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.partepdaid_det = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.partepdaname_det = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productid_det = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productname_det = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.canthabilitada = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.pdaproyectotal = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantreal = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.mermacalculada = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.porcenmerma = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.consumreal = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.umed_det = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dgv_calconsumo = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.partepdaid_cpo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.partepdaname_cpo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productid_cpo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productname_cpo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.largtizado = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.pdasxpano = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.numpanos = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.porcentolerancia = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.consumprompano = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.pdatotal = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantrequerida = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.umed_cpo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.pnl_edit2Ma = new DevExpress.XtraEditors.PanelControl();
     this.txt_gramaje = new System.Windows.Forms.TextBox();
     this.txt_ancho = new System.Windows.Forms.TextBox();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.txt_serop04 = new DevExpress.XtraEditors.LabelControl();
     this.txt_tipop04 = new DevExpress.XtraEditors.LabelControl();
     this.txt_numop04 = new DevExpress.XtraEditors.LabelControl();
     this.pnl_editMa = new DevExpress.XtraEditors.PanelControl();
     this.btn_actualizar = new DevExpress.XtraEditors.SimpleButton();
     this.productidtela = new System.Windows.Forms.TextBox();
     this.cmb_partepda = new System.Windows.Forms.ComboBox();
     this.labelControl34 = new DevExpress.XtraEditors.LabelControl();
     this.productnametela = new System.Windows.Forms.TextBox();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.btn_newMa = new DevExpress.XtraEditors.SimpleButton();
     this.btn_saveMa = new DevExpress.XtraEditors.SimpleButton();
     this.line2 = new DevComponents.DotNetBar.Controls.Line();
     this.labelControl45 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl46 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl47 = new DevExpress.XtraEditors.LabelControl();
     this.btn_cancelMa = new DevExpress.XtraEditors.SimpleButton();
     this.btn_deleteMa = new DevExpress.XtraEditors.SimpleButton();
     this.btn_editMa = new DevExpress.XtraEditors.SimpleButton();
     this.dgv_ordenprodtela = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.partepdaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.partepdaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.xcolorname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ancho = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gramaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.chk_estado01 = new DevExpress.XtraEditors.CheckEdit();
     this.chk_linea01 = new DevExpress.XtraEditors.CheckEdit();
     this.chk_marca01 = new DevExpress.XtraEditors.CheckEdit();
     this.cmb_linea01 = new System.Windows.Forms.ComboBox();
     this.cmb_marca01 = new System.Windows.Forms.ComboBox();
     this.cmb_estado01 = new System.Windows.Forms.ComboBox();
     this.lblbusqueda = new DevExpress.XtraEditors.LabelControl();
     this.txt_articname01 = new System.Windows.Forms.TextBox();
     this.cmb_anio01 = new System.Windows.Forms.ComboBox();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.txt_numop01 = new System.Windows.Forms.TextBox();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.cmb_serie01 = new System.Windows.Forms.ComboBox();
     this.chk_serie01 = new DevExpress.XtraEditors.CheckEdit();
     this.styleManager2 = new DevComponents.DotNetBar.StyleManager(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.tab_01.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_ordenproduccion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_ordenproduccion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit6)).BeginInit();
     this.tab_02.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco12.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco11.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco10.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco09.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco08.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco07.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco06.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco05.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco04.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco03.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco02.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco01.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
     this.panelControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_ordenprodcolor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_grilla)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechfin.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechfin.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechini.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechini.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechemi.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechemi.Properties)).BeginInit();
     this.tab_03.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_edit2)).BeginInit();
     this.pnl_edit2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechentrega03.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechentrega03.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechini03.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechini03.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_edit)).BeginInit();
     this.pnl_edit.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txt_secuencia)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_ordenprodfase)).BeginInit();
     this.tab_04.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
     this.panelControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txt_ltizado.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_tolerancia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_numpanos.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_prendpanos.Properties)).BeginInit();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_consumoreal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_calconsumo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_edit2Ma)).BeginInit();
     this.pnl_edit2Ma.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_editMa)).BeginInit();
     this.pnl_editMa.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_ordenprodtela)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_estado01.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_linea01.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_marca01.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_serie01.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_grabar,
     this.btn_cancelar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.btnLoad,
     this.btn_log,
     this.btnInicio,
     this.btnAnterior,
     this.btnSiguiente,
     this.btnUltimo,
     this.btn_salir,
     this.btn_clave});
     this.barManager1.MainMenu = this.bar1;
     this.barManager1.MaxItemId = 16;
     //
     // bar1
     //
     this.bar1.BarName = "Main menu";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btn_nuevo, DevExpress.XtraBars.BarItemPaintStyle.Standard),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_editar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_cancelar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_grabar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_eliminar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_imprimir),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_log),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_clave),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_salir)});
     this.bar1.OptionsBar.MultiLine = true;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Main menu";
     //
     // btn_nuevo
     //
     this.btn_nuevo.Caption = "btnNew";
     this.btn_nuevo.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.Glyph")));
     this.btn_nuevo.Id = 2;
     this.btn_nuevo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.LargeGlyph")));
     this.btn_nuevo.Name = "btn_nuevo";
     toolTipTitleItem14.Text = "Nuevo";
     superToolTip15.Items.Add(toolTipTitleItem14);
     this.btn_nuevo.SuperTip = superToolTip15;
     this.btn_nuevo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_nuevo_ItemClick);
     //
     // btn_editar
     //
     this.btn_editar.Caption = "btnEdit";
     this.btn_editar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.Glyph")));
     this.btn_editar.Id = 3;
     this.btn_editar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.LargeGlyph")));
     this.btn_editar.Name = "btn_editar";
     toolTipTitleItem15.Text = "Editar";
     superToolTip16.Items.Add(toolTipTitleItem15);
     this.btn_editar.SuperTip = superToolTip16;
     this.btn_editar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_editar_ItemClick);
     //
     // btn_cancelar
     //
     this.btn_cancelar.Caption = "btnCancel";
     this.btn_cancelar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.Glyph")));
     this.btn_cancelar.Id = 5;
     this.btn_cancelar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.LargeGlyph")));
     this.btn_cancelar.Name = "btn_cancelar";
     toolTipTitleItem17.Text = "Cancelar";
     superToolTip18.Items.Add(toolTipTitleItem17);
     this.btn_cancelar.SuperTip = superToolTip18;
     this.btn_cancelar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_cancelar_ItemClick);
     //
     // btn_grabar
     //
     this.btn_grabar.Caption = "btnSave";
     this.btn_grabar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Glyph")));
     this.btn_grabar.Id = 4;
     this.btn_grabar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.LargeGlyph")));
     this.btn_grabar.Name = "btn_grabar";
     toolTipTitleItem16.Text = "Guardar";
     superToolTip17.Items.Add(toolTipTitleItem16);
     this.btn_grabar.SuperTip = superToolTip17;
     this.btn_grabar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_grabar_ItemClick);
     //
     // btn_eliminar
     //
     this.btn_eliminar.Caption = "btnDelete";
     this.btn_eliminar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Glyph")));
     this.btn_eliminar.Id = 6;
     this.btn_eliminar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.LargeGlyph")));
     this.btn_eliminar.Name = "btn_eliminar";
     toolTipTitleItem18.Text = "Elimar Registro";
     superToolTip19.Items.Add(toolTipTitleItem18);
     this.btn_eliminar.SuperTip = superToolTip19;
     this.btn_eliminar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_eliminar_ItemClick);
     //
     // btn_imprimir
     //
     this.btn_imprimir.Caption = "btnPrint";
     this.btn_imprimir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.Glyph")));
     this.btn_imprimir.Id = 7;
     this.btn_imprimir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.LargeGlyph")));
     this.btn_imprimir.Name = "btn_imprimir";
     toolTipTitleItem19.Text = "Imprimir";
     superToolTip20.Items.Add(toolTipTitleItem19);
     this.btn_imprimir.SuperTip = superToolTip20;
     this.btn_imprimir.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_imprimir_ItemClick);
     //
     // btn_log
     //
     this.btn_log.Caption = "btnLog";
     this.btn_log.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_log.Glyph")));
     this.btn_log.Id = 9;
     this.btn_log.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_log.LargeGlyph")));
     this.btn_log.Name = "btn_log";
     toolTipTitleItem21.Text = "Log";
     superToolTip22.Items.Add(toolTipTitleItem21);
     this.btn_log.SuperTip = superToolTip22;
     this.btn_log.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_log_ItemClick);
     //
     // btn_clave
     //
     this.btn_clave.Caption = "btnLock";
     this.btn_clave.Glyph = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.Id = 15;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_clave_ItemClick);
     //
     // btn_salir
     //
     this.btn_salir.Caption = "btnExit";
     this.btn_salir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.Glyph")));
     this.btn_salir.Id = 14;
     this.btn_salir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.LargeGlyph")));
     this.btn_salir.Name = "btn_salir";
     toolTipTitleItem26.Text = "Salir";
     superToolTip27.Items.Add(toolTipTitleItem26);
     this.btn_salir.SuperTip = superToolTip27;
     this.btn_salir.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_salir_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(890, 28);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 560);
     this.barDockControlBottom.Size = new System.Drawing.Size(890, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 28);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 532);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(890, 28);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 532);
     //
     // btnLoad
     //
     this.btnLoad.Caption = "btnLoad";
     this.btnLoad.Glyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.Glyph")));
     this.btnLoad.Id = 8;
     this.btnLoad.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.LargeGlyph")));
     this.btnLoad.Name = "btnLoad";
     toolTipTitleItem20.Text = "Actualizar";
     superToolTip21.Items.Add(toolTipTitleItem20);
     this.btnLoad.SuperTip = superToolTip21;
     //
     // btnInicio
     //
     this.btnInicio.Caption = "btnInicio";
     this.btnInicio.Glyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.Glyph")));
     this.btnInicio.Id = 10;
     this.btnInicio.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.LargeGlyph")));
     this.btnInicio.Name = "btnInicio";
     toolTipTitleItem22.Text = "Primer Registro";
     superToolTip23.Items.Add(toolTipTitleItem22);
     this.btnInicio.SuperTip = superToolTip23;
     //
     // btnAnterior
     //
     this.btnAnterior.Caption = "btnAnterior";
     this.btnAnterior.Glyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.Glyph")));
     this.btnAnterior.Id = 11;
     this.btnAnterior.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.LargeGlyph")));
     this.btnAnterior.Name = "btnAnterior";
     toolTipTitleItem23.Text = "Anterior Registro";
     superToolTip24.Items.Add(toolTipTitleItem23);
     this.btnAnterior.SuperTip = superToolTip24;
     //
     // btnSiguiente
     //
     this.btnSiguiente.Caption = "btnSiguiente";
     this.btnSiguiente.Glyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.Glyph")));
     this.btnSiguiente.Id = 12;
     this.btnSiguiente.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.LargeGlyph")));
     this.btnSiguiente.Name = "btnSiguiente";
     toolTipTitleItem24.Text = "Siguiente Registro";
     superToolTip25.Items.Add(toolTipTitleItem24);
     this.btnSiguiente.SuperTip = superToolTip25;
     //
     // btnUltimo
     //
     this.btnUltimo.Caption = "btnUltimo";
     this.btnUltimo.Glyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.Glyph")));
     this.btnUltimo.Id = 13;
     this.btnUltimo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.LargeGlyph")));
     this.btnUltimo.Name = "btnUltimo";
     toolTipTitleItem25.Text = "Ultimo Registro";
     superToolTip26.Items.Add(toolTipTitleItem25);
     this.btnUltimo.SuperTip = superToolTip26;
     //
     // textBox13
     //
     this.textBox13.Location = new System.Drawing.Point(45, 28);
     this.textBox13.MaxLength = 10;
     this.textBox13.Name = "textBox13";
     this.textBox13.Size = new System.Drawing.Size(110, 20);
     this.textBox13.TabIndex = 228;
     //
     // superTooltip1
     //
     this.superTooltip1.DefaultTooltipSettings = new DevComponents.DotNetBar.SuperTooltipInfo("", "", "", null, null, DevComponents.DotNetBar.eTooltipColor.Gray);
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007VistaGlass;
     this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(87)))), ((int)(((byte)(154))))));
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(0, 29);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.tab_01;
     this.xtraTabControl1.Size = new System.Drawing.Size(894, 534);
     this.xtraTabControl1.TabIndex = 7;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tab_01,
     this.tab_02,
     this.tab_03,
     this.tab_04});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     //
     // tab_01
     //
     this.tab_01.Controls.Add(this.panelControl4);
     this.tab_01.Name = "tab_01";
     this.tab_01.Size = new System.Drawing.Size(888, 506);
     this.tab_01.Text = "Busqueda";
     this.tab_01.Tooltip = "Buscar Ordenes";
     this.tab_01.TooltipIconType = DevExpress.Utils.ToolTipIconType.Information;
     //
     // panelControl4
     //
     this.panelControl4.Controls.Add(this.Mdi_dgv_ordenproduccion);
     this.panelControl4.Location = new System.Drawing.Point(3, 3);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Size = new System.Drawing.Size(879, 500);
     this.panelControl4.TabIndex = 202;
     //
     // Mdi_dgv_ordenproduccion
     //
     this.Mdi_dgv_ordenproduccion.Location = new System.Drawing.Point(5, 5);
     this.Mdi_dgv_ordenproduccion.MainView = this.dgv_ordenproduccion;
     this.Mdi_dgv_ordenproduccion.Name = "Mdi_dgv_ordenproduccion";
     this.Mdi_dgv_ordenproduccion.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit5,
     this.repositoryItemCheckEdit5,
     this.repositoryItemTextEdit6,
     this.repositoryItemCheckEdit6});
     this.Mdi_dgv_ordenproduccion.Size = new System.Drawing.Size(869, 490);
     this.Mdi_dgv_ordenproduccion.TabIndex = 399;
     this.Mdi_dgv_ordenproduccion.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.dgv_ordenproduccion});
     this.Mdi_dgv_ordenproduccion.DoubleClick += new System.EventHandler(this.Mdi_dgv_ordenproduccion_DoubleClick);
     this.Mdi_dgv_ordenproduccion.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Mdi_dgv_ordenproduccion_KeyUp);
     //
     // dgv_ordenproduccion
     //
     this.dgv_ordenproduccion.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_ordenproduccion.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_ordenproduccion.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_ordenproduccion.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Gray;
     this.dgv_ordenproduccion.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.dgv_ordenproduccion.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.dgv_ordenproduccion.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_ordenproduccion.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(223)))), ((int)(((byte)(217)))));
     this.dgv_ordenproduccion.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_ordenproduccion.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Blue;
     this.dgv_ordenproduccion.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.dgv_ordenproduccion.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.dgv_ordenproduccion.Appearance.Empty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_ordenproduccion.Appearance.Empty.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_ordenproduccion.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(138)))), ((int)(((byte)(131)))));
     this.dgv_ordenproduccion.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_ordenproduccion.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_ordenproduccion.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_ordenproduccion.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.dgv_ordenproduccion.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.dgv_ordenproduccion.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(48)))), ((int)(((byte)(41)))));
     this.dgv_ordenproduccion.Appearance.FilterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_ordenproduccion.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_ordenproduccion.Appearance.FilterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_ordenproduccion.Appearance.FilterPanel.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.FilterPanel.Options.UseForeColor = true;
     this.dgv_ordenproduccion.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(2)))), ((int)(((byte)(74)))), ((int)(((byte)(66)))));
     this.dgv_ordenproduccion.Appearance.FixedLine.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.FocusedCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_ordenproduccion.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.dgv_ordenproduccion.Appearance.FocusedCell.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.FocusedCell.Options.UseForeColor = true;
     this.dgv_ordenproduccion.Appearance.FocusedRow.BackColor = System.Drawing.Color.Navy;
     this.dgv_ordenproduccion.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(178)))));
     this.dgv_ordenproduccion.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_ordenproduccion.Appearance.FocusedRow.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.FocusedRow.Options.UseForeColor = true;
     this.dgv_ordenproduccion.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_ordenproduccion.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_ordenproduccion.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_ordenproduccion.Appearance.FooterPanel.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.dgv_ordenproduccion.Appearance.FooterPanel.Options.UseForeColor = true;
     this.dgv_ordenproduccion.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_ordenproduccion.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_ordenproduccion.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_ordenproduccion.Appearance.GroupButton.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.GroupButton.Options.UseBorderColor = true;
     this.dgv_ordenproduccion.Appearance.GroupButton.Options.UseForeColor = true;
     this.dgv_ordenproduccion.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_ordenproduccion.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_ordenproduccion.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.dgv_ordenproduccion.Appearance.GroupFooter.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.dgv_ordenproduccion.Appearance.GroupFooter.Options.UseForeColor = true;
     this.dgv_ordenproduccion.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(78)))), ((int)(((byte)(71)))));
     this.dgv_ordenproduccion.Appearance.GroupPanel.BackColor2 = System.Drawing.Color.White;
     this.dgv_ordenproduccion.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_ordenproduccion.Appearance.GroupPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_ordenproduccion.Appearance.GroupPanel.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.GroupPanel.Options.UseFont = true;
     this.dgv_ordenproduccion.Appearance.GroupPanel.Options.UseForeColor = true;
     this.dgv_ordenproduccion.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(72)))), ((int)(((byte)(144)))), ((int)(((byte)(136)))));
     this.dgv_ordenproduccion.Appearance.GroupRow.ForeColor = System.Drawing.Color.Silver;
     this.dgv_ordenproduccion.Appearance.GroupRow.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.GroupRow.Options.UseForeColor = true;
     this.dgv_ordenproduccion.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_ordenproduccion.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_ordenproduccion.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_ordenproduccion.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_ordenproduccion.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.dgv_ordenproduccion.Appearance.HeaderPanel.Options.UseFont = true;
     this.dgv_ordenproduccion.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.dgv_ordenproduccion.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.Gray;
     this.dgv_ordenproduccion.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_ordenproduccion.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.dgv_ordenproduccion.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_ordenproduccion.Appearance.HorzLine.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(252)))), ((int)(((byte)(244)))));
     this.dgv_ordenproduccion.Appearance.Preview.BackColor2 = System.Drawing.Color.White;
     this.dgv_ordenproduccion.Appearance.Preview.ForeColor = System.Drawing.Color.Navy;
     this.dgv_ordenproduccion.Appearance.Preview.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.Preview.Options.UseForeColor = true;
     this.dgv_ordenproduccion.Appearance.Row.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_ordenproduccion.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.dgv_ordenproduccion.Appearance.Row.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.Row.Options.UseForeColor = true;
     this.dgv_ordenproduccion.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.dgv_ordenproduccion.Appearance.RowSeparator.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_ordenproduccion.Appearance.RowSeparator.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(138)))));
     this.dgv_ordenproduccion.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_ordenproduccion.Appearance.SelectedRow.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.SelectedRow.Options.UseForeColor = true;
     this.dgv_ordenproduccion.Appearance.TopNewRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(232)))), ((int)(((byte)(226)))));
     this.dgv_ordenproduccion.Appearance.TopNewRow.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_ordenproduccion.Appearance.VertLine.Options.UseBackColor = true;
     this.dgv_ordenproduccion.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.marcaname,
     this.ordenprod,
     this.fechemi,
     this.articid,
     this.articname,
     this.lineaname,
     this.generoname,
     this.temporadaname,
     this.coleccionname,
     this.estadoname});
     styleFormatCondition2.Appearance.BackColor = System.Drawing.Color.Teal;
     styleFormatCondition2.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     styleFormatCondition2.Appearance.Options.UseBackColor = true;
     styleFormatCondition2.ApplyToRow = true;
     styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition2.Expression = "Len(Trim([conceptoid])) == 2";
     this.dgv_ordenproduccion.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition2});
     this.dgv_ordenproduccion.GridControl = this.Mdi_dgv_ordenproduccion;
     this.dgv_ordenproduccion.Name = "dgv_ordenproduccion";
     this.dgv_ordenproduccion.OptionsSelection.MultiSelect = true;
     this.dgv_ordenproduccion.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.dgv_ordenproduccion.OptionsView.ShowGroupPanel = false;
     this.dgv_ordenproduccion.PaintStyleName = "Web";
     this.dgv_ordenproduccion.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.dgv_ordenproduccion_RowCellClick);
     //
     // marcaname
     //
     this.marcaname.Caption = "Marca";
     this.marcaname.FieldName = "marcaname";
     this.marcaname.Name = "marcaname";
     this.marcaname.OptionsColumn.AllowEdit = false;
     this.marcaname.Visible = true;
     this.marcaname.VisibleIndex = 0;
     this.marcaname.Width = 64;
     //
     // ordenprod
     //
     this.ordenprod.Caption = "OrdProd";
     this.ordenprod.FieldName = "ordenprod";
     this.ordenprod.Name = "ordenprod";
     this.ordenprod.OptionsColumn.AllowEdit = false;
     this.ordenprod.Visible = true;
     this.ordenprod.VisibleIndex = 1;
     this.ordenprod.Width = 67;
     //
     // fechemi
     //
     this.fechemi.Caption = "Fecha";
     this.fechemi.FieldName = "fechemi";
     this.fechemi.Name = "fechemi";
     this.fechemi.OptionsColumn.AllowEdit = false;
     this.fechemi.Visible = true;
     this.fechemi.VisibleIndex = 2;
     this.fechemi.Width = 72;
     //
     // articid
     //
     this.articid.Caption = "ArticID";
     this.articid.FieldName = "articidold";
     this.articid.Name = "articid";
     this.articid.OptionsColumn.AllowEdit = false;
     this.articid.Visible = true;
     this.articid.VisibleIndex = 3;
     this.articid.Width = 57;
     //
     // articname
     //
     this.articname.Caption = "Articulo";
     this.articname.FieldName = "articname";
     this.articname.Name = "articname";
     this.articname.OptionsColumn.AllowEdit = false;
     this.articname.Visible = true;
     this.articname.VisibleIndex = 4;
     this.articname.Width = 198;
     //
     // lineaname
     //
     this.lineaname.Caption = "Linea";
     this.lineaname.FieldName = "lineaname";
     this.lineaname.Name = "lineaname";
     this.lineaname.OptionsColumn.AllowEdit = false;
     this.lineaname.Visible = true;
     this.lineaname.VisibleIndex = 5;
     this.lineaname.Width = 87;
     //
     // generoname
     //
     this.generoname.Caption = "Genero";
     this.generoname.FieldName = "generoname";
     this.generoname.Name = "generoname";
     this.generoname.OptionsColumn.AllowEdit = false;
     this.generoname.Visible = true;
     this.generoname.VisibleIndex = 6;
     this.generoname.Width = 80;
     //
     // temporadaname
     //
     this.temporadaname.Caption = "Temporada";
     this.temporadaname.FieldName = "temporadaname";
     this.temporadaname.Name = "temporadaname";
     this.temporadaname.OptionsColumn.AllowEdit = false;
     this.temporadaname.Visible = true;
     this.temporadaname.VisibleIndex = 7;
     this.temporadaname.Width = 85;
     //
     // coleccionname
     //
     this.coleccionname.Caption = "Colección";
     this.coleccionname.FieldName = "coleccionname";
     this.coleccionname.Name = "coleccionname";
     this.coleccionname.OptionsColumn.AllowEdit = false;
     this.coleccionname.Visible = true;
     this.coleccionname.VisibleIndex = 8;
     this.coleccionname.Width = 70;
     //
     // estadoname
     //
     this.estadoname.Caption = "Estatus";
     this.estadoname.FieldName = "estadoname";
     this.estadoname.Name = "estadoname";
     this.estadoname.OptionsColumn.AllowEdit = false;
     this.estadoname.Visible = true;
     this.estadoname.VisibleIndex = 9;
     this.estadoname.Width = 74;
     //
     // repositoryItemTextEdit5
     //
     this.repositoryItemTextEdit5.AutoHeight = false;
     this.repositoryItemTextEdit5.DisplayFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit5.EditFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit5.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit5.Mask.EditMask = "###,##0.0000";
     this.repositoryItemTextEdit5.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit5.Name = "repositoryItemTextEdit5";
     //
     // repositoryItemCheckEdit5
     //
     this.repositoryItemCheckEdit5.AutoHeight = false;
     this.repositoryItemCheckEdit5.Caption = "Check";
     this.repositoryItemCheckEdit5.Name = "repositoryItemCheckEdit5";
     //
     // repositoryItemTextEdit6
     //
     this.repositoryItemTextEdit6.AutoHeight = false;
     this.repositoryItemTextEdit6.Name = "repositoryItemTextEdit6";
     this.repositoryItemTextEdit6.ReadOnly = true;
     //
     // repositoryItemCheckEdit6
     //
     this.repositoryItemCheckEdit6.AutoHeight = false;
     this.repositoryItemCheckEdit6.Caption = "Check";
     this.repositoryItemCheckEdit6.Name = "repositoryItemCheckEdit6";
     //
     // tab_02
     //
     this.tab_02.Controls.Add(this.panelControl2);
     this.tab_02.Name = "tab_02";
     this.tab_02.Size = new System.Drawing.Size(888, 506);
     this.tab_02.Text = "Datos";
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.txt_taco12);
     this.panelControl2.Controls.Add(this.txt_taco11);
     this.panelControl2.Controls.Add(this.txt_taco10);
     this.panelControl2.Controls.Add(this.txt_taco09);
     this.panelControl2.Controls.Add(this.txt_taco08);
     this.panelControl2.Controls.Add(this.txt_taco07);
     this.panelControl2.Controls.Add(this.txt_taco06);
     this.panelControl2.Controls.Add(this.txt_taco05);
     this.panelControl2.Controls.Add(this.txt_taco04);
     this.panelControl2.Controls.Add(this.txt_taco03);
     this.panelControl2.Controls.Add(this.txt_taco02);
     this.panelControl2.Controls.Add(this.txt_taco01);
     this.panelControl2.Controls.Add(this.panelControl5);
     this.panelControl2.Controls.Add(this.btn_quitar);
     this.panelControl2.Controls.Add(this.dgv_ordenprodcolor);
     this.panelControl2.Controls.Add(this.dgv_grilla);
     this.panelControl2.Controls.Add(this.btn_add);
     this.panelControl2.Controls.Add(this.txt_tottot);
     this.panelControl2.Controls.Add(this.labelControl68);
     this.panelControl2.Controls.Add(this.txt_tottaco12);
     this.panelControl2.Controls.Add(this.txt_tottaco11);
     this.panelControl2.Controls.Add(this.txt_tottaco10);
     this.panelControl2.Controls.Add(this.txt_tottaco09);
     this.panelControl2.Controls.Add(this.txt_tottaco08);
     this.panelControl2.Controls.Add(this.txt_tottaco07);
     this.panelControl2.Controls.Add(this.txt_tottaco06);
     this.panelControl2.Controls.Add(this.txt_tottaco05);
     this.panelControl2.Controls.Add(this.txt_tottaco04);
     this.panelControl2.Controls.Add(this.txt_tottaco03);
     this.panelControl2.Controls.Add(this.txt_tottaco02);
     this.panelControl2.Controls.Add(this.txt_tottaco01);
     this.panelControl2.Controls.Add(this.txt_observacion);
     this.panelControl2.Controls.Add(this.labelControl58);
     this.panelControl2.Controls.Add(this.txt_temporadaname);
     this.panelControl2.Controls.Add(this.labelControl57);
     this.panelControl2.Controls.Add(this.txt_tacotot);
     this.panelControl2.Controls.Add(this.lbltaco12);
     this.panelControl2.Controls.Add(this.lbltaco11);
     this.panelControl2.Controls.Add(this.lbltaco10);
     this.panelControl2.Controls.Add(this.lbltaco09);
     this.panelControl2.Controls.Add(this.lbltaco08);
     this.panelControl2.Controls.Add(this.lbltaco07);
     this.panelControl2.Controls.Add(this.lbltaco06);
     this.panelControl2.Controls.Add(this.lbltaco05);
     this.panelControl2.Controls.Add(this.lbltaco04);
     this.panelControl2.Controls.Add(this.lbltaco03);
     this.panelControl2.Controls.Add(this.lbltaco02);
     this.panelControl2.Controls.Add(this.lbltaco01);
     this.panelControl2.Controls.Add(this.labelControl43);
     this.panelControl2.Controls.Add(this.txt_colorname);
     this.panelControl2.Controls.Add(this.txt_colorid);
     this.panelControl2.Controls.Add(this.labelControl44);
     this.panelControl2.Controls.Add(this.txt_cantreal);
     this.panelControl2.Controls.Add(this.txt_cantprog);
     this.panelControl2.Controls.Add(this.labelControl36);
     this.panelControl2.Controls.Add(this.txt_numref);
     this.panelControl2.Controls.Add(this.txt_serref);
     this.panelControl2.Controls.Add(this.txt_tipref);
     this.panelControl2.Controls.Add(this.labelControl30);
     this.panelControl2.Controls.Add(this.labelControl29);
     this.panelControl2.Controls.Add(this.txt_ctactename);
     this.panelControl2.Controls.Add(this.txt_ctacte);
     this.panelControl2.Controls.Add(this.labelControl28);
     this.panelControl2.Controls.Add(this.labelControl27);
     this.panelControl2.Controls.Add(this.labelControl26);
     this.panelControl2.Controls.Add(this.txt_familiatelaname);
     this.panelControl2.Controls.Add(this.labelControl25);
     this.panelControl2.Controls.Add(this.labelControl24);
     this.panelControl2.Controls.Add(this.cmb_canalvta);
     this.panelControl2.Controls.Add(this.txt_generoname);
     this.panelControl2.Controls.Add(this.labelControl23);
     this.panelControl2.Controls.Add(this.txt_lineaname);
     this.panelControl2.Controls.Add(this.labelControl22);
     this.panelControl2.Controls.Add(this.txt_marcaname);
     this.panelControl2.Controls.Add(this.labelControl21);
     this.panelControl2.Controls.Add(this.txt_variante);
     this.panelControl2.Controls.Add(this.labelControl20);
     this.panelControl2.Controls.Add(this.labelControl19);
     this.panelControl2.Controls.Add(this.txt_articname);
     this.panelControl2.Controls.Add(this.txt_articid);
     this.panelControl2.Controls.Add(this.cmb_ejecutor);
     this.panelControl2.Controls.Add(this.labelControl18);
     this.panelControl2.Controls.Add(this.labelControl16);
     this.panelControl2.Controls.Add(this.cmb_estado);
     this.panelControl2.Controls.Add(this.labelControl17);
     this.panelControl2.Controls.Add(this.labelControl15);
     this.panelControl2.Controls.Add(this.txt_fechfin);
     this.panelControl2.Controls.Add(this.labelControl14);
     this.panelControl2.Controls.Add(this.txt_fechini);
     this.panelControl2.Controls.Add(this.labelControl13);
     this.panelControl2.Controls.Add(this.txt_fechemi);
     this.panelControl2.Controls.Add(this.cmb_perianio);
     this.panelControl2.Location = new System.Drawing.Point(3, 3);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(879, 500);
     this.panelControl2.TabIndex = 1;
     //
     // txt_taco12
     //
     this.txt_taco12.EditValue = "0";
     this.txt_taco12.Location = new System.Drawing.Point(615, 304);
     this.txt_taco12.MenuManager = this.barManager1;
     this.txt_taco12.Name = "txt_taco12";
     this.txt_taco12.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_taco12.Properties.Appearance.Options.UseFont = true;
     this.txt_taco12.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_taco12.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_taco12.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.txt_taco12.Properties.Mask.EditMask = "n3";
     this.txt_taco12.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txt_taco12.Size = new System.Drawing.Size(40, 20);
     this.txt_taco12.TabIndex = 452;
     this.txt_taco12.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_taco12_KeyDown);
     this.txt_taco12.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_taco12_KeyUp);
     //
     // txt_taco11
     //
     this.txt_taco11.EditValue = "0";
     this.txt_taco11.Location = new System.Drawing.Point(571, 304);
     this.txt_taco11.MenuManager = this.barManager1;
     this.txt_taco11.Name = "txt_taco11";
     this.txt_taco11.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_taco11.Properties.Appearance.Options.UseFont = true;
     this.txt_taco11.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_taco11.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_taco11.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.txt_taco11.Properties.Mask.EditMask = "n3";
     this.txt_taco11.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txt_taco11.Size = new System.Drawing.Size(38, 20);
     this.txt_taco11.TabIndex = 451;
     this.txt_taco11.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_taco11_KeyDown);
     this.txt_taco11.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_taco11_KeyUp);
     //
     // txt_taco10
     //
     this.txt_taco10.EditValue = "0";
     this.txt_taco10.Location = new System.Drawing.Point(530, 304);
     this.txt_taco10.MenuManager = this.barManager1;
     this.txt_taco10.Name = "txt_taco10";
     this.txt_taco10.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_taco10.Properties.Appearance.Options.UseFont = true;
     this.txt_taco10.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_taco10.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_taco10.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.txt_taco10.Properties.Mask.EditMask = "n3";
     this.txt_taco10.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txt_taco10.Size = new System.Drawing.Size(38, 20);
     this.txt_taco10.TabIndex = 450;
     this.txt_taco10.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_taco10_KeyDown);
     this.txt_taco10.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_taco10_KeyUp);
     //
     // txt_taco09
     //
     this.txt_taco09.EditValue = "0";
     this.txt_taco09.Location = new System.Drawing.Point(492, 304);
     this.txt_taco09.MenuManager = this.barManager1;
     this.txt_taco09.Name = "txt_taco09";
     this.txt_taco09.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_taco09.Properties.Appearance.Options.UseFont = true;
     this.txt_taco09.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_taco09.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_taco09.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.txt_taco09.Properties.Mask.EditMask = "n3";
     this.txt_taco09.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txt_taco09.Size = new System.Drawing.Size(35, 20);
     this.txt_taco09.TabIndex = 449;
     this.txt_taco09.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_taco09_KeyDown);
     this.txt_taco09.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_taco09_KeyUp);
     //
     // txt_taco08
     //
     this.txt_taco08.EditValue = "0";
     this.txt_taco08.Location = new System.Drawing.Point(455, 304);
     this.txt_taco08.MenuManager = this.barManager1;
     this.txt_taco08.Name = "txt_taco08";
     this.txt_taco08.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_taco08.Properties.Appearance.Options.UseFont = true;
     this.txt_taco08.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_taco08.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_taco08.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.txt_taco08.Properties.Mask.EditMask = "n3";
     this.txt_taco08.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txt_taco08.Size = new System.Drawing.Size(34, 20);
     this.txt_taco08.TabIndex = 448;
     this.txt_taco08.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_taco08_KeyDown);
     this.txt_taco08.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_taco08_KeyUp);
     //
     // txt_taco07
     //
     this.txt_taco07.EditValue = "0";
     this.txt_taco07.Location = new System.Drawing.Point(416, 304);
     this.txt_taco07.MenuManager = this.barManager1;
     this.txt_taco07.Name = "txt_taco07";
     this.txt_taco07.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_taco07.Properties.Appearance.Options.UseFont = true;
     this.txt_taco07.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_taco07.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_taco07.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.txt_taco07.Properties.Mask.EditMask = "n3";
     this.txt_taco07.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txt_taco07.Size = new System.Drawing.Size(37, 20);
     this.txt_taco07.TabIndex = 447;
     this.txt_taco07.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_taco07_KeyDown);
     this.txt_taco07.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_taco07_KeyUp);
     //
     // txt_taco06
     //
     this.txt_taco06.EditValue = "0";
     this.txt_taco06.Location = new System.Drawing.Point(380, 304);
     this.txt_taco06.MenuManager = this.barManager1;
     this.txt_taco06.Name = "txt_taco06";
     this.txt_taco06.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_taco06.Properties.Appearance.Options.UseFont = true;
     this.txt_taco06.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_taco06.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_taco06.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.txt_taco06.Properties.Mask.EditMask = "n3";
     this.txt_taco06.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txt_taco06.Size = new System.Drawing.Size(32, 20);
     this.txt_taco06.TabIndex = 446;
     this.txt_taco06.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_taco06_KeyDown);
     this.txt_taco06.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_taco06_KeyUp);
     //
     // txt_taco05
     //
     this.txt_taco05.EditValue = "0";
     this.txt_taco05.Location = new System.Drawing.Point(343, 304);
     this.txt_taco05.MenuManager = this.barManager1;
     this.txt_taco05.Name = "txt_taco05";
     this.txt_taco05.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_taco05.Properties.Appearance.Options.UseFont = true;
     this.txt_taco05.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_taco05.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_taco05.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.txt_taco05.Properties.Mask.EditMask = "n3";
     this.txt_taco05.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txt_taco05.Size = new System.Drawing.Size(33, 20);
     this.txt_taco05.TabIndex = 445;
     this.txt_taco05.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_taco05_KeyDown);
     this.txt_taco05.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_taco05_KeyUp);
     //
     // txt_taco04
     //
     this.txt_taco04.EditValue = "0";
     this.txt_taco04.Location = new System.Drawing.Point(306, 304);
     this.txt_taco04.MenuManager = this.barManager1;
     this.txt_taco04.Name = "txt_taco04";
     this.txt_taco04.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_taco04.Properties.Appearance.Options.UseFont = true;
     this.txt_taco04.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_taco04.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_taco04.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.txt_taco04.Properties.Mask.EditMask = "n3";
     this.txt_taco04.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txt_taco04.Size = new System.Drawing.Size(35, 20);
     this.txt_taco04.TabIndex = 444;
     this.txt_taco04.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_taco04_KeyDown);
     this.txt_taco04.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_taco04_KeyUp);
     //
     // txt_taco03
     //
     this.txt_taco03.EditValue = "0";
     this.txt_taco03.Location = new System.Drawing.Point(268, 304);
     this.txt_taco03.MenuManager = this.barManager1;
     this.txt_taco03.Name = "txt_taco03";
     this.txt_taco03.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_taco03.Properties.Appearance.Options.UseFont = true;
     this.txt_taco03.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_taco03.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_taco03.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.txt_taco03.Properties.Mask.EditMask = "n3";
     this.txt_taco03.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txt_taco03.Size = new System.Drawing.Size(36, 20);
     this.txt_taco03.TabIndex = 443;
     this.txt_taco03.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_taco03_KeyDown);
     this.txt_taco03.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_taco03_KeyUp);
     //
     // txt_taco02
     //
     this.txt_taco02.EditValue = "0";
     this.txt_taco02.Location = new System.Drawing.Point(231, 304);
     this.txt_taco02.MenuManager = this.barManager1;
     this.txt_taco02.Name = "txt_taco02";
     this.txt_taco02.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_taco02.Properties.Appearance.Options.UseFont = true;
     this.txt_taco02.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_taco02.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_taco02.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.txt_taco02.Properties.Mask.EditMask = "n3";
     this.txt_taco02.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txt_taco02.Size = new System.Drawing.Size(35, 20);
     this.txt_taco02.TabIndex = 442;
     this.txt_taco02.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_taco02_KeyDown);
     this.txt_taco02.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_taco02_KeyUp);
     //
     // txt_taco01
     //
     this.txt_taco01.EditValue = "0";
     this.txt_taco01.Location = new System.Drawing.Point(196, 304);
     this.txt_taco01.MenuManager = this.barManager1;
     this.txt_taco01.Name = "txt_taco01";
     this.txt_taco01.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_taco01.Properties.Appearance.Options.UseFont = true;
     this.txt_taco01.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_taco01.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_taco01.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.txt_taco01.Properties.Mask.EditMask = "n3";
     this.txt_taco01.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txt_taco01.Size = new System.Drawing.Size(34, 20);
     this.txt_taco01.TabIndex = 441;
     this.txt_taco01.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_taco01_KeyDown);
     this.txt_taco01.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_taco01_KeyUp);
     //
     // panelControl5
     //
     this.panelControl5.Controls.Add(this.txt_numop);
     this.panelControl5.Controls.Add(this.labelControl10);
     this.panelControl5.Controls.Add(this.labelControl4);
     this.panelControl5.Controls.Add(this.cmb_ordprod);
     this.panelControl5.Controls.Add(this.labelControl5);
     this.panelControl5.Location = new System.Drawing.Point(13, 9);
     this.panelControl5.Name = "panelControl5";
     this.panelControl5.Size = new System.Drawing.Size(270, 86);
     this.panelControl5.TabIndex = 440;
     //
     // txt_numop
     //
     this.txt_numop.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.txt_numop.Appearance.ForeColor = System.Drawing.Color.Red;
     this.txt_numop.Location = new System.Drawing.Point(163, 53);
     this.txt_numop.Name = "txt_numop";
     this.txt_numop.Size = new System.Drawing.Size(81, 16);
     this.txt_numop.TabIndex = 439;
     this.txt_numop.Text = "__________";
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(25, 54);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(40, 13);
     this.labelControl10.TabIndex = 144;
     this.labelControl10.Text = "OrdProd";
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Papyrus", 16F, System.Drawing.FontStyle.Bold);
     this.labelControl4.Appearance.ForeColor = System.Drawing.Color.Teal;
     this.labelControl4.LineColor = System.Drawing.SystemColors.ActiveBorder;
     this.labelControl4.Location = new System.Drawing.Point(26, 9);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(216, 33);
     this.labelControl4.TabIndex = 438;
     this.labelControl4.Text = "Orden de Producción";
     //
     // cmb_ordprod
     //
     this.cmb_ordprod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_ordprod.FormattingEnabled = true;
     this.cmb_ordprod.Location = new System.Drawing.Point(69, 50);
     this.cmb_ordprod.Name = "cmb_ordprod";
     this.cmb_ordprod.Size = new System.Drawing.Size(52, 21);
     this.cmb_ordprod.TabIndex = 197;
     this.cmb_ordprod.SelectedIndexChanged += new System.EventHandler(this.cmb_ordprod_SelectedIndexChanged);
     //
     // labelControl5
     //
     this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.labelControl5.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl5.Location = new System.Drawing.Point(140, 53);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(21, 16);
     this.labelControl5.TabIndex = 416;
     this.labelControl5.Text = "N°-";
     //
     // btn_quitar
     //
     this.btn_quitar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_quitar.Enabled = false;
     this.btn_quitar.Image = ((System.Drawing.Image)(resources.GetObject("btn_quitar.Image")));
     this.btn_quitar.Location = new System.Drawing.Point(711, 357);
     this.btn_quitar.Name = "btn_quitar";
     this.btn_quitar.Size = new System.Drawing.Size(68, 23);
     this.btn_quitar.TabIndex = 437;
     this.btn_quitar.Text = "Quitar";
     this.btn_quitar.ToolTip = "Elimina La Fila Seleccionada";
     this.btn_quitar.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_quitar.Click += new System.EventHandler(this.btn_quitar_Click);
     //
     // dgv_ordenprodcolor
     //
     this.dgv_ordenprodcolor.AllowUserToAddRows = false;
     dataGridViewCellStyle60.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle60.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle60.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle60.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle60.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle60.SelectionForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle60.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgv_ordenprodcolor.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle60;
     this.dgv_ordenprodcolor.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgv_ordenprodcolor.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.tipop,
     this.serop,
     this.numop,
     this.colorid,
     this.colorname,
     this.coltalla,
     this.can01,
     this.can02,
     this.can03,
     this.can04,
     this.can05,
     this.can06,
     this.can07,
     this.can08,
     this.can09,
     this.can10,
     this.can11,
     this.can12,
     this.cantot});
     dataGridViewCellStyle74.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle74.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle74.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle74.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle74.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle74.SelectionForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle74.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgv_ordenprodcolor.DefaultCellStyle = dataGridViewCellStyle74;
     this.dgv_ordenprodcolor.EnableHeadersVisualStyles = false;
     this.dgv_ordenprodcolor.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgv_ordenprodcolor.Location = new System.Drawing.Point(10, 332);
     this.dgv_ordenprodcolor.Name = "dgv_ordenprodcolor";
     this.dgv_ordenprodcolor.ReadOnly = true;
     dataGridViewCellStyle75.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle75.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle75.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle75.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle75.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle75.SelectionForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle75.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgv_ordenprodcolor.RowHeadersDefaultCellStyle = dataGridViewCellStyle75;
     this.dgv_ordenprodcolor.RowHeadersVisible = false;
     this.dgv_ordenprodcolor.Size = new System.Drawing.Size(698, 140);
     this.dgv_ordenprodcolor.TabIndex = 431;
     this.dgv_ordenprodcolor.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_ordenprodcolor_CellClick);
     //
     // tipop
     //
     this.tipop.DataPropertyName = "tipop";
     this.tipop.HeaderText = "tipop";
     this.tipop.Name = "tipop";
     this.tipop.ReadOnly = true;
     this.tipop.Visible = false;
     //
     // serop
     //
     this.serop.DataPropertyName = "serop";
     this.serop.HeaderText = "serop";
     this.serop.Name = "serop";
     this.serop.ReadOnly = true;
     this.serop.Visible = false;
     //
     // numop
     //
     this.numop.DataPropertyName = "numop";
     this.numop.HeaderText = "numop";
     this.numop.Name = "numop";
     this.numop.ReadOnly = true;
     this.numop.Visible = false;
     //
     // colorid
     //
     this.colorid.DataPropertyName = "colorid";
     this.colorid.HeaderText = "Cod";
     this.colorid.Name = "colorid";
     this.colorid.ReadOnly = true;
     this.colorid.Width = 40;
     //
     // colorname
     //
     this.colorname.DataPropertyName = "colorname";
     this.colorname.HeaderText = "Color";
     this.colorname.Name = "colorname";
     this.colorname.ReadOnly = true;
     this.colorname.Width = 210;
     //
     // coltalla
     //
     this.coltalla.DataPropertyName = "coltalla";
     this.coltalla.HeaderText = "coltalla";
     this.coltalla.Name = "coltalla";
     this.coltalla.ReadOnly = true;
     this.coltalla.Visible = false;
     //
     // can01
     //
     this.can01.DataPropertyName = "can01";
     dataGridViewCellStyle61.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.can01.DefaultCellStyle = dataGridViewCellStyle61;
     this.can01.HeaderText = "ta01";
     this.can01.Name = "can01";
     this.can01.ReadOnly = true;
     this.can01.Width = 30;
     //
     // can02
     //
     this.can02.DataPropertyName = "can02";
     dataGridViewCellStyle62.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.can02.DefaultCellStyle = dataGridViewCellStyle62;
     this.can02.HeaderText = "ta02";
     this.can02.Name = "can02";
     this.can02.ReadOnly = true;
     this.can02.Width = 30;
     //
     // can03
     //
     this.can03.DataPropertyName = "can03";
     dataGridViewCellStyle63.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.can03.DefaultCellStyle = dataGridViewCellStyle63;
     this.can03.HeaderText = "ta03";
     this.can03.Name = "can03";
     this.can03.ReadOnly = true;
     this.can03.Width = 30;
     //
     // can04
     //
     this.can04.DataPropertyName = "can04";
     dataGridViewCellStyle64.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.can04.DefaultCellStyle = dataGridViewCellStyle64;
     this.can04.HeaderText = "ta04";
     this.can04.Name = "can04";
     this.can04.ReadOnly = true;
     this.can04.Width = 30;
     //
     // can05
     //
     this.can05.DataPropertyName = "can05";
     dataGridViewCellStyle65.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.can05.DefaultCellStyle = dataGridViewCellStyle65;
     this.can05.HeaderText = "ta05";
     this.can05.Name = "can05";
     this.can05.ReadOnly = true;
     this.can05.Width = 30;
     //
     // can06
     //
     this.can06.DataPropertyName = "can06";
     dataGridViewCellStyle66.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.can06.DefaultCellStyle = dataGridViewCellStyle66;
     this.can06.HeaderText = "ta06";
     this.can06.Name = "can06";
     this.can06.ReadOnly = true;
     this.can06.Width = 30;
     //
     // can07
     //
     this.can07.DataPropertyName = "can07";
     dataGridViewCellStyle67.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.can07.DefaultCellStyle = dataGridViewCellStyle67;
     this.can07.HeaderText = "ta07";
     this.can07.Name = "can07";
     this.can07.ReadOnly = true;
     this.can07.Width = 30;
     //
     // can08
     //
     this.can08.DataPropertyName = "can08";
     dataGridViewCellStyle68.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.can08.DefaultCellStyle = dataGridViewCellStyle68;
     this.can08.HeaderText = "ta08";
     this.can08.Name = "can08";
     this.can08.ReadOnly = true;
     this.can08.Width = 30;
     //
     // can09
     //
     this.can09.DataPropertyName = "can09";
     dataGridViewCellStyle69.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.can09.DefaultCellStyle = dataGridViewCellStyle69;
     this.can09.HeaderText = "ta09";
     this.can09.Name = "can09";
     this.can09.ReadOnly = true;
     this.can09.Width = 30;
     //
     // can10
     //
     this.can10.DataPropertyName = "can10";
     dataGridViewCellStyle70.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.can10.DefaultCellStyle = dataGridViewCellStyle70;
     this.can10.HeaderText = "ta10";
     this.can10.Name = "can10";
     this.can10.ReadOnly = true;
     this.can10.Width = 30;
     //
     // can11
     //
     this.can11.DataPropertyName = "can11";
     dataGridViewCellStyle71.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.can11.DefaultCellStyle = dataGridViewCellStyle71;
     this.can11.HeaderText = "ta11";
     this.can11.Name = "can11";
     this.can11.ReadOnly = true;
     this.can11.Width = 30;
     //
     // can12
     //
     this.can12.DataPropertyName = "can12";
     dataGridViewCellStyle72.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.can12.DefaultCellStyle = dataGridViewCellStyle72;
     this.can12.HeaderText = "ta12";
     this.can12.Name = "can12";
     this.can12.ReadOnly = true;
     this.can12.Width = 30;
     //
     // cantot
     //
     this.cantot.DataPropertyName = "cantot";
     dataGridViewCellStyle73.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle73.Format = "N2";
     dataGridViewCellStyle73.NullValue = null;
     this.cantot.DefaultCellStyle = dataGridViewCellStyle73;
     this.cantot.HeaderText = "Total";
     this.cantot.Name = "cantot";
     this.cantot.ReadOnly = true;
     this.cantot.Width = 85;
     //
     // dgv_grilla
     //
     this.dgv_grilla.AllowUserToAddRows = false;
     dataGridViewCellStyle76.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle76.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle76.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle76.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle76.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle76.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle76.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgv_grilla.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle76;
     this.dgv_grilla.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgv_grilla.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.nombre,
     this.ta01,
     this.ta02,
     this.ta03,
     this.ta04,
     this.ta05,
     this.ta06,
     this.ta07,
     this.ta08,
     this.ta09,
     this.ta10,
     this.ta11,
     this.ta12});
     this.dgv_grilla.EnableHeadersVisualStyles = false;
     this.dgv_grilla.Location = new System.Drawing.Point(13, 189);
     this.dgv_grilla.Name = "dgv_grilla";
     this.dgv_grilla.RowHeadersVisible = false;
     this.dgv_grilla.Size = new System.Drawing.Size(665, 86);
     this.dgv_grilla.TabIndex = 430;
     this.dgv_grilla.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_grilla_CellValueChanged);
     //
     // nombre
     //
     this.nombre.DataPropertyName = "nombre";
     this.nombre.HeaderText = "";
     this.nombre.Name = "nombre";
     this.nombre.ReadOnly = true;
     //
     // ta01
     //
     this.ta01.DataPropertyName = "ta01";
     dataGridViewCellStyle77.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle77.BackColor = System.Drawing.Color.Teal;
     dataGridViewCellStyle77.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle77.ForeColor = System.Drawing.Color.White;
     dataGridViewCellStyle77.Format = "N0";
     dataGridViewCellStyle77.NullValue = null;
     dataGridViewCellStyle77.SelectionBackColor = System.Drawing.Color.LightSalmon;
     dataGridViewCellStyle77.SelectionForeColor = System.Drawing.Color.Black;
     this.ta01.DefaultCellStyle = dataGridViewCellStyle77;
     this.ta01.HeaderText = "ta01";
     this.ta01.Name = "ta01";
     this.ta01.ToolTipText = "Talla01";
     this.ta01.Width = 50;
     //
     // ta02
     //
     this.ta02.DataPropertyName = "ta02";
     dataGridViewCellStyle78.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle78.BackColor = System.Drawing.Color.Teal;
     dataGridViewCellStyle78.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle78.ForeColor = System.Drawing.Color.White;
     dataGridViewCellStyle78.Format = "N0";
     dataGridViewCellStyle78.SelectionBackColor = System.Drawing.Color.LightSalmon;
     dataGridViewCellStyle78.SelectionForeColor = System.Drawing.Color.Black;
     this.ta02.DefaultCellStyle = dataGridViewCellStyle78;
     this.ta02.FillWeight = 30F;
     this.ta02.HeaderText = "ta02";
     this.ta02.Name = "ta02";
     this.ta02.Width = 50;
     //
     // ta03
     //
     this.ta03.DataPropertyName = "ta03";
     dataGridViewCellStyle79.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle79.BackColor = System.Drawing.Color.Teal;
     dataGridViewCellStyle79.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle79.ForeColor = System.Drawing.Color.White;
     dataGridViewCellStyle79.Format = "N0";
     dataGridViewCellStyle79.SelectionBackColor = System.Drawing.Color.LightSalmon;
     dataGridViewCellStyle79.SelectionForeColor = System.Drawing.Color.Black;
     this.ta03.DefaultCellStyle = dataGridViewCellStyle79;
     this.ta03.FillWeight = 30F;
     this.ta03.HeaderText = "ta03";
     this.ta03.Name = "ta03";
     this.ta03.Width = 50;
     //
     // ta04
     //
     this.ta04.DataPropertyName = "ta04";
     dataGridViewCellStyle80.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle80.BackColor = System.Drawing.Color.Teal;
     dataGridViewCellStyle80.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle80.ForeColor = System.Drawing.Color.White;
     dataGridViewCellStyle80.Format = "N0";
     dataGridViewCellStyle80.SelectionBackColor = System.Drawing.Color.LightSalmon;
     dataGridViewCellStyle80.SelectionForeColor = System.Drawing.Color.Black;
     this.ta04.DefaultCellStyle = dataGridViewCellStyle80;
     this.ta04.FillWeight = 30F;
     this.ta04.HeaderText = "ta04";
     this.ta04.Name = "ta04";
     this.ta04.Width = 50;
     //
     // ta05
     //
     this.ta05.DataPropertyName = "ta05";
     dataGridViewCellStyle81.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle81.BackColor = System.Drawing.Color.Teal;
     dataGridViewCellStyle81.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle81.ForeColor = System.Drawing.Color.White;
     dataGridViewCellStyle81.Format = "N0";
     dataGridViewCellStyle81.SelectionBackColor = System.Drawing.Color.LightSalmon;
     dataGridViewCellStyle81.SelectionForeColor = System.Drawing.Color.Black;
     this.ta05.DefaultCellStyle = dataGridViewCellStyle81;
     this.ta05.FillWeight = 30F;
     this.ta05.HeaderText = "ta05";
     this.ta05.Name = "ta05";
     this.ta05.Width = 50;
     //
     // ta06
     //
     this.ta06.DataPropertyName = "ta06";
     dataGridViewCellStyle82.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle82.BackColor = System.Drawing.Color.Teal;
     dataGridViewCellStyle82.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle82.ForeColor = System.Drawing.Color.White;
     dataGridViewCellStyle82.Format = "N0";
     dataGridViewCellStyle82.NullValue = "Error";
     dataGridViewCellStyle82.SelectionBackColor = System.Drawing.Color.LightSalmon;
     dataGridViewCellStyle82.SelectionForeColor = System.Drawing.Color.Black;
     this.ta06.DefaultCellStyle = dataGridViewCellStyle82;
     this.ta06.FillWeight = 30F;
     this.ta06.HeaderText = "ta06";
     this.ta06.Name = "ta06";
     this.ta06.Width = 50;
     //
     // ta07
     //
     this.ta07.DataPropertyName = "ta07";
     dataGridViewCellStyle83.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle83.BackColor = System.Drawing.Color.Teal;
     dataGridViewCellStyle83.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle83.ForeColor = System.Drawing.Color.White;
     dataGridViewCellStyle83.Format = "N0";
     dataGridViewCellStyle83.SelectionBackColor = System.Drawing.Color.LightSalmon;
     dataGridViewCellStyle83.SelectionForeColor = System.Drawing.Color.Black;
     this.ta07.DefaultCellStyle = dataGridViewCellStyle83;
     this.ta07.FillWeight = 30F;
     this.ta07.HeaderText = "ta07";
     this.ta07.Name = "ta07";
     this.ta07.Width = 50;
     //
     // ta08
     //
     this.ta08.DataPropertyName = "ta08";
     dataGridViewCellStyle84.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle84.BackColor = System.Drawing.Color.Teal;
     dataGridViewCellStyle84.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle84.ForeColor = System.Drawing.Color.White;
     dataGridViewCellStyle84.Format = "N0";
     dataGridViewCellStyle84.SelectionBackColor = System.Drawing.Color.LightSalmon;
     dataGridViewCellStyle84.SelectionForeColor = System.Drawing.Color.Black;
     this.ta08.DefaultCellStyle = dataGridViewCellStyle84;
     this.ta08.FillWeight = 30F;
     this.ta08.HeaderText = "ta08";
     this.ta08.Name = "ta08";
     this.ta08.Width = 50;
     //
     // ta09
     //
     this.ta09.DataPropertyName = "ta09";
     dataGridViewCellStyle85.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle85.BackColor = System.Drawing.Color.Teal;
     dataGridViewCellStyle85.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle85.ForeColor = System.Drawing.Color.White;
     dataGridViewCellStyle85.Format = "N0";
     dataGridViewCellStyle85.SelectionBackColor = System.Drawing.Color.LightSalmon;
     dataGridViewCellStyle85.SelectionForeColor = System.Drawing.Color.Black;
     this.ta09.DefaultCellStyle = dataGridViewCellStyle85;
     this.ta09.HeaderText = "ta09";
     this.ta09.Name = "ta09";
     this.ta09.Width = 50;
     //
     // ta10
     //
     this.ta10.DataPropertyName = "ta10";
     dataGridViewCellStyle86.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle86.BackColor = System.Drawing.Color.Teal;
     dataGridViewCellStyle86.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle86.ForeColor = System.Drawing.Color.White;
     dataGridViewCellStyle86.Format = "N0";
     dataGridViewCellStyle86.SelectionBackColor = System.Drawing.Color.LightSalmon;
     dataGridViewCellStyle86.SelectionForeColor = System.Drawing.Color.Black;
     this.ta10.DefaultCellStyle = dataGridViewCellStyle86;
     this.ta10.HeaderText = "ta10";
     this.ta10.Name = "ta10";
     this.ta10.Width = 50;
     //
     // ta11
     //
     this.ta11.DataPropertyName = "ta11";
     dataGridViewCellStyle87.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle87.BackColor = System.Drawing.Color.Teal;
     dataGridViewCellStyle87.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle87.ForeColor = System.Drawing.Color.White;
     dataGridViewCellStyle87.Format = "N0";
     dataGridViewCellStyle87.SelectionBackColor = System.Drawing.Color.LightSalmon;
     dataGridViewCellStyle87.SelectionForeColor = System.Drawing.Color.Black;
     this.ta11.DefaultCellStyle = dataGridViewCellStyle87;
     this.ta11.HeaderText = "ta11";
     this.ta11.Name = "ta11";
     this.ta11.Width = 30;
     //
     // ta12
     //
     this.ta12.DataPropertyName = "ta12";
     dataGridViewCellStyle88.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle88.BackColor = System.Drawing.Color.Teal;
     dataGridViewCellStyle88.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle88.ForeColor = System.Drawing.Color.White;
     dataGridViewCellStyle88.Format = "N0";
     dataGridViewCellStyle88.SelectionBackColor = System.Drawing.Color.LightSalmon;
     dataGridViewCellStyle88.SelectionForeColor = System.Drawing.Color.Black;
     this.ta12.DefaultCellStyle = dataGridViewCellStyle88;
     this.ta12.HeaderText = "ta12";
     this.ta12.Name = "ta12";
     this.ta12.Width = 30;
     //
     // btn_add
     //
     this.btn_add.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_add.Image = ((System.Drawing.Image)(resources.GetObject("btn_add.Image")));
     this.btn_add.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_add.Location = new System.Drawing.Point(711, 332);
     this.btn_add.Name = "btn_add";
     this.btn_add.Size = new System.Drawing.Size(68, 23);
     this.btn_add.TabIndex = 429;
     this.btn_add.Text = "Agregar";
     this.btn_add.ToolTip = "Adicionar";
     this.btn_add.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
     //
     // txt_tottot
     //
     //
     //
     //
     this.txt_tottot.Border.BorderColor = System.Drawing.Color.Teal;
     this.txt_tottot.Border.Class = "TextBoxBorder";
     this.txt_tottot.Border.CornerDiameter = 5;
     this.txt_tottot.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_tottot.Border.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Far;
     this.txt_tottot.ButtonCustom.Tooltip = "";
     this.txt_tottot.ButtonCustom2.Tooltip = "";
     this.txt_tottot.DisabledBackColor = System.Drawing.Color.White;
     this.txt_tottot.Enabled = false;
     this.txt_tottot.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_tottot.Location = new System.Drawing.Point(628, 476);
     this.txt_tottot.Name = "txt_tottot";
     this.txt_tottot.PreventEnterBeep = true;
     this.txt_tottot.Size = new System.Drawing.Size(80, 21);
     this.txt_tottot.TabIndex = 415;
     this.txt_tottot.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl68
     //
     this.labelControl68.Location = new System.Drawing.Point(224, 478);
     this.labelControl68.Name = "labelControl68";
     this.labelControl68.Size = new System.Drawing.Size(31, 13);
     this.labelControl68.TabIndex = 414;
     this.labelControl68.Text = "Total :";
     //
     // txt_tottaco12
     //
     //
     //
     //
     this.txt_tottaco12.Border.BorderColor = System.Drawing.Color.Teal;
     this.txt_tottaco12.Border.Class = "TextBoxBorder";
     this.txt_tottaco12.Border.CornerDiameter = 5;
     this.txt_tottaco12.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_tottaco12.Border.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Far;
     this.txt_tottaco12.ButtonCustom.Tooltip = "";
     this.txt_tottaco12.ButtonCustom2.Tooltip = "";
     this.txt_tottaco12.DisabledBackColor = System.Drawing.Color.White;
     this.txt_tottaco12.Enabled = false;
     this.txt_tottaco12.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_tottaco12.Location = new System.Drawing.Point(595, 476);
     this.txt_tottaco12.Name = "txt_tottaco12";
     this.txt_tottaco12.PreventEnterBeep = true;
     this.txt_tottaco12.Size = new System.Drawing.Size(27, 21);
     this.txt_tottaco12.TabIndex = 413;
     this.txt_tottaco12.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_tottaco11
     //
     //
     //
     //
     this.txt_tottaco11.Border.BorderColor = System.Drawing.Color.Teal;
     this.txt_tottaco11.Border.Class = "TextBoxBorder";
     this.txt_tottaco11.Border.CornerDiameter = 5;
     this.txt_tottaco11.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_tottaco11.Border.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Far;
     this.txt_tottaco11.ButtonCustom.Tooltip = "";
     this.txt_tottaco11.ButtonCustom2.Tooltip = "";
     this.txt_tottaco11.DisabledBackColor = System.Drawing.Color.White;
     this.txt_tottaco11.Enabled = false;
     this.txt_tottaco11.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_tottaco11.Location = new System.Drawing.Point(565, 476);
     this.txt_tottaco11.Name = "txt_tottaco11";
     this.txt_tottaco11.PreventEnterBeep = true;
     this.txt_tottaco11.Size = new System.Drawing.Size(27, 21);
     this.txt_tottaco11.TabIndex = 412;
     this.txt_tottaco11.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_tottaco10
     //
     //
     //
     //
     this.txt_tottaco10.Border.BorderColor = System.Drawing.Color.Teal;
     this.txt_tottaco10.Border.Class = "TextBoxBorder";
     this.txt_tottaco10.Border.CornerDiameter = 5;
     this.txt_tottaco10.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_tottaco10.Border.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Far;
     this.txt_tottaco10.ButtonCustom.Tooltip = "";
     this.txt_tottaco10.ButtonCustom2.Tooltip = "";
     this.txt_tottaco10.DisabledBackColor = System.Drawing.Color.White;
     this.txt_tottaco10.Enabled = false;
     this.txt_tottaco10.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_tottaco10.Location = new System.Drawing.Point(536, 476);
     this.txt_tottaco10.Name = "txt_tottaco10";
     this.txt_tottaco10.PreventEnterBeep = true;
     this.txt_tottaco10.Size = new System.Drawing.Size(27, 21);
     this.txt_tottaco10.TabIndex = 411;
     this.txt_tottaco10.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_tottaco09
     //
     //
     //
     //
     this.txt_tottaco09.Border.BorderColor = System.Drawing.Color.Teal;
     this.txt_tottaco09.Border.Class = "TextBoxBorder";
     this.txt_tottaco09.Border.CornerDiameter = 5;
     this.txt_tottaco09.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_tottaco09.Border.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Far;
     this.txt_tottaco09.ButtonCustom.Tooltip = "";
     this.txt_tottaco09.ButtonCustom2.Tooltip = "";
     this.txt_tottaco09.DisabledBackColor = System.Drawing.Color.White;
     this.txt_tottaco09.Enabled = false;
     this.txt_tottaco09.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_tottaco09.Location = new System.Drawing.Point(506, 476);
     this.txt_tottaco09.Name = "txt_tottaco09";
     this.txt_tottaco09.PreventEnterBeep = true;
     this.txt_tottaco09.Size = new System.Drawing.Size(27, 21);
     this.txt_tottaco09.TabIndex = 410;
     this.txt_tottaco09.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_tottaco08
     //
     //
     //
     //
     this.txt_tottaco08.Border.BorderColor = System.Drawing.Color.Teal;
     this.txt_tottaco08.Border.Class = "TextBoxBorder";
     this.txt_tottaco08.Border.CornerDiameter = 5;
     this.txt_tottaco08.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_tottaco08.Border.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Far;
     this.txt_tottaco08.ButtonCustom.Tooltip = "";
     this.txt_tottaco08.ButtonCustom2.Tooltip = "";
     this.txt_tottaco08.DisabledBackColor = System.Drawing.Color.White;
     this.txt_tottaco08.Enabled = false;
     this.txt_tottaco08.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_tottaco08.Location = new System.Drawing.Point(476, 476);
     this.txt_tottaco08.Name = "txt_tottaco08";
     this.txt_tottaco08.PreventEnterBeep = true;
     this.txt_tottaco08.Size = new System.Drawing.Size(27, 21);
     this.txt_tottaco08.TabIndex = 409;
     this.txt_tottaco08.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_tottaco07
     //
     //
     //
     //
     this.txt_tottaco07.Border.BorderColor = System.Drawing.Color.Teal;
     this.txt_tottaco07.Border.Class = "TextBoxBorder";
     this.txt_tottaco07.Border.CornerDiameter = 5;
     this.txt_tottaco07.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_tottaco07.Border.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Far;
     this.txt_tottaco07.ButtonCustom.Tooltip = "";
     this.txt_tottaco07.ButtonCustom2.Tooltip = "";
     this.txt_tottaco07.DisabledBackColor = System.Drawing.Color.White;
     this.txt_tottaco07.Enabled = false;
     this.txt_tottaco07.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_tottaco07.Location = new System.Drawing.Point(445, 476);
     this.txt_tottaco07.Name = "txt_tottaco07";
     this.txt_tottaco07.PreventEnterBeep = true;
     this.txt_tottaco07.Size = new System.Drawing.Size(27, 21);
     this.txt_tottaco07.TabIndex = 408;
     this.txt_tottaco07.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_tottaco06
     //
     //
     //
     //
     this.txt_tottaco06.Border.BorderColor = System.Drawing.Color.Teal;
     this.txt_tottaco06.Border.Class = "TextBoxBorder";
     this.txt_tottaco06.Border.CornerDiameter = 5;
     this.txt_tottaco06.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_tottaco06.Border.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Far;
     this.txt_tottaco06.ButtonCustom.Tooltip = "";
     this.txt_tottaco06.ButtonCustom2.Tooltip = "";
     this.txt_tottaco06.DisabledBackColor = System.Drawing.Color.White;
     this.txt_tottaco06.Enabled = false;
     this.txt_tottaco06.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_tottaco06.Location = new System.Drawing.Point(415, 476);
     this.txt_tottaco06.Name = "txt_tottaco06";
     this.txt_tottaco06.PreventEnterBeep = true;
     this.txt_tottaco06.Size = new System.Drawing.Size(27, 21);
     this.txt_tottaco06.TabIndex = 407;
     this.txt_tottaco06.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_tottaco05
     //
     //
     //
     //
     this.txt_tottaco05.Border.BorderColor = System.Drawing.Color.Teal;
     this.txt_tottaco05.Border.Class = "TextBoxBorder";
     this.txt_tottaco05.Border.CornerDiameter = 5;
     this.txt_tottaco05.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_tottaco05.Border.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Far;
     this.txt_tottaco05.ButtonCustom.Tooltip = "";
     this.txt_tottaco05.ButtonCustom2.Tooltip = "";
     this.txt_tottaco05.DisabledBackColor = System.Drawing.Color.White;
     this.txt_tottaco05.Enabled = false;
     this.txt_tottaco05.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_tottaco05.Location = new System.Drawing.Point(385, 476);
     this.txt_tottaco05.Name = "txt_tottaco05";
     this.txt_tottaco05.PreventEnterBeep = true;
     this.txt_tottaco05.Size = new System.Drawing.Size(27, 21);
     this.txt_tottaco05.TabIndex = 406;
     this.txt_tottaco05.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_tottaco04
     //
     //
     //
     //
     this.txt_tottaco04.Border.BorderColor = System.Drawing.Color.Teal;
     this.txt_tottaco04.Border.Class = "TextBoxBorder";
     this.txt_tottaco04.Border.CornerDiameter = 5;
     this.txt_tottaco04.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_tottaco04.Border.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Far;
     this.txt_tottaco04.ButtonCustom.Tooltip = "";
     this.txt_tottaco04.ButtonCustom2.Tooltip = "";
     this.txt_tottaco04.DisabledBackColor = System.Drawing.Color.White;
     this.txt_tottaco04.Enabled = false;
     this.txt_tottaco04.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_tottaco04.Location = new System.Drawing.Point(355, 476);
     this.txt_tottaco04.Name = "txt_tottaco04";
     this.txt_tottaco04.PreventEnterBeep = true;
     this.txt_tottaco04.Size = new System.Drawing.Size(27, 21);
     this.txt_tottaco04.TabIndex = 405;
     this.txt_tottaco04.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_tottaco03
     //
     //
     //
     //
     this.txt_tottaco03.Border.BorderColor = System.Drawing.Color.Teal;
     this.txt_tottaco03.Border.Class = "TextBoxBorder";
     this.txt_tottaco03.Border.CornerDiameter = 5;
     this.txt_tottaco03.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_tottaco03.Border.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Far;
     this.txt_tottaco03.ButtonCustom.Tooltip = "";
     this.txt_tottaco03.ButtonCustom2.Tooltip = "";
     this.txt_tottaco03.DisabledBackColor = System.Drawing.Color.White;
     this.txt_tottaco03.Enabled = false;
     this.txt_tottaco03.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_tottaco03.Location = new System.Drawing.Point(325, 476);
     this.txt_tottaco03.Name = "txt_tottaco03";
     this.txt_tottaco03.PreventEnterBeep = true;
     this.txt_tottaco03.Size = new System.Drawing.Size(27, 21);
     this.txt_tottaco03.TabIndex = 404;
     this.txt_tottaco03.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_tottaco02
     //
     //
     //
     //
     this.txt_tottaco02.Border.BorderColor = System.Drawing.Color.Teal;
     this.txt_tottaco02.Border.Class = "TextBoxBorder";
     this.txt_tottaco02.Border.CornerDiameter = 5;
     this.txt_tottaco02.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_tottaco02.Border.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Far;
     this.txt_tottaco02.ButtonCustom.Tooltip = "";
     this.txt_tottaco02.ButtonCustom2.Tooltip = "";
     this.txt_tottaco02.DisabledBackColor = System.Drawing.Color.White;
     this.txt_tottaco02.Enabled = false;
     this.txt_tottaco02.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_tottaco02.Location = new System.Drawing.Point(294, 476);
     this.txt_tottaco02.Name = "txt_tottaco02";
     this.txt_tottaco02.PreventEnterBeep = true;
     this.txt_tottaco02.Size = new System.Drawing.Size(27, 21);
     this.txt_tottaco02.TabIndex = 403;
     this.txt_tottaco02.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_tottaco01
     //
     //
     //
     //
     this.txt_tottaco01.Border.BorderColor = System.Drawing.Color.Teal;
     this.txt_tottaco01.Border.Class = "TextBoxBorder";
     this.txt_tottaco01.Border.CornerDiameter = 5;
     this.txt_tottaco01.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_tottaco01.Border.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Far;
     this.txt_tottaco01.ButtonCustom.Tooltip = "";
     this.txt_tottaco01.ButtonCustom2.Tooltip = "";
     this.txt_tottaco01.DisabledBackColor = System.Drawing.Color.White;
     this.txt_tottaco01.Enabled = false;
     this.txt_tottaco01.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_tottaco01.Location = new System.Drawing.Point(264, 476);
     this.txt_tottaco01.Name = "txt_tottaco01";
     this.txt_tottaco01.PreventEnterBeep = true;
     this.txt_tottaco01.Size = new System.Drawing.Size(27, 21);
     this.txt_tottaco01.TabIndex = 402;
     this.txt_tottaco01.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_observacion
     //
     this.txt_observacion.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_observacion.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_observacion.Location = new System.Drawing.Point(684, 144);
     this.txt_observacion.MaxLength = 999999;
     this.txt_observacion.Multiline = true;
     this.txt_observacion.Name = "txt_observacion";
     this.txt_observacion.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txt_observacion.Size = new System.Drawing.Size(171, 62);
     this.txt_observacion.TabIndex = 401;
     //
     // labelControl58
     //
     this.labelControl58.Location = new System.Drawing.Point(621, 147);
     this.labelControl58.Name = "labelControl58";
     this.labelControl58.Size = new System.Drawing.Size(60, 13);
     this.labelControl58.TabIndex = 400;
     this.labelControl58.Text = "Observación";
     //
     // txt_temporadaname
     //
     this.txt_temporadaname.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_temporadaname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_temporadaname.Enabled = false;
     this.txt_temporadaname.Location = new System.Drawing.Point(745, 117);
     this.txt_temporadaname.MaxLength = 10;
     this.txt_temporadaname.Name = "txt_temporadaname";
     this.txt_temporadaname.Size = new System.Drawing.Size(110, 21);
     this.txt_temporadaname.TabIndex = 399;
     //
     // labelControl57
     //
     this.labelControl57.Location = new System.Drawing.Point(665, 286);
     this.labelControl57.Name = "labelControl57";
     this.labelControl57.Size = new System.Drawing.Size(66, 13);
     this.labelControl57.TabIndex = 397;
     this.labelControl57.Text = "Total Prendas";
     //
     // txt_tacotot
     //
     this.txt_tacotot.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_tacotot.Enabled = false;
     this.txt_tacotot.Location = new System.Drawing.Point(661, 303);
     this.txt_tacotot.MaxLength = 10;
     this.txt_tacotot.Name = "txt_tacotot";
     this.txt_tacotot.Size = new System.Drawing.Size(73, 21);
     this.txt_tacotot.TabIndex = 396;
     //
     // lbltaco12
     //
     this.lbltaco12.Location = new System.Drawing.Point(621, 288);
     this.lbltaco12.Name = "lbltaco12";
     this.lbltaco12.Size = new System.Drawing.Size(12, 13);
     this.lbltaco12.TabIndex = 383;
     this.lbltaco12.Text = "00";
     //
     // lbltaco11
     //
     this.lbltaco11.Location = new System.Drawing.Point(575, 288);
     this.lbltaco11.Name = "lbltaco11";
     this.lbltaco11.Size = new System.Drawing.Size(12, 13);
     this.lbltaco11.TabIndex = 382;
     this.lbltaco11.Text = "00";
     //
     // lbltaco10
     //
     this.lbltaco10.Location = new System.Drawing.Point(534, 288);
     this.lbltaco10.Name = "lbltaco10";
     this.lbltaco10.Size = new System.Drawing.Size(12, 13);
     this.lbltaco10.TabIndex = 381;
     this.lbltaco10.Text = "00";
     //
     // lbltaco09
     //
     this.lbltaco09.Location = new System.Drawing.Point(497, 288);
     this.lbltaco09.Name = "lbltaco09";
     this.lbltaco09.Size = new System.Drawing.Size(12, 13);
     this.lbltaco09.TabIndex = 380;
     this.lbltaco09.Text = "00";
     //
     // lbltaco08
     //
     this.lbltaco08.Location = new System.Drawing.Point(461, 288);
     this.lbltaco08.Name = "lbltaco08";
     this.lbltaco08.Size = new System.Drawing.Size(12, 13);
     this.lbltaco08.TabIndex = 379;
     this.lbltaco08.Text = "00";
     //
     // lbltaco07
     //
     this.lbltaco07.Location = new System.Drawing.Point(423, 288);
     this.lbltaco07.Name = "lbltaco07";
     this.lbltaco07.Size = new System.Drawing.Size(12, 13);
     this.lbltaco07.TabIndex = 378;
     this.lbltaco07.Text = "00";
     //
     // lbltaco06
     //
     this.lbltaco06.Location = new System.Drawing.Point(387, 288);
     this.lbltaco06.Name = "lbltaco06";
     this.lbltaco06.Size = new System.Drawing.Size(12, 13);
     this.lbltaco06.TabIndex = 377;
     this.lbltaco06.Text = "00";
     //
     // lbltaco05
     //
     this.lbltaco05.Location = new System.Drawing.Point(350, 288);
     this.lbltaco05.Name = "lbltaco05";
     this.lbltaco05.Size = new System.Drawing.Size(12, 13);
     this.lbltaco05.TabIndex = 376;
     this.lbltaco05.Text = "00";
     //
     // lbltaco04
     //
     this.lbltaco04.Location = new System.Drawing.Point(312, 288);
     this.lbltaco04.Name = "lbltaco04";
     this.lbltaco04.Size = new System.Drawing.Size(12, 13);
     this.lbltaco04.TabIndex = 375;
     this.lbltaco04.Text = "00";
     //
     // lbltaco03
     //
     this.lbltaco03.Location = new System.Drawing.Point(275, 288);
     this.lbltaco03.Name = "lbltaco03";
     this.lbltaco03.Size = new System.Drawing.Size(12, 13);
     this.lbltaco03.TabIndex = 374;
     this.lbltaco03.Text = "00";
     //
     // lbltaco02
     //
     this.lbltaco02.Location = new System.Drawing.Point(237, 288);
     this.lbltaco02.Name = "lbltaco02";
     this.lbltaco02.Size = new System.Drawing.Size(12, 13);
     this.lbltaco02.TabIndex = 373;
     this.lbltaco02.Text = "00";
     //
     // lbltaco01
     //
     this.lbltaco01.Location = new System.Drawing.Point(202, 288);
     this.lbltaco01.Name = "lbltaco01";
     this.lbltaco01.Size = new System.Drawing.Size(12, 13);
     this.lbltaco01.TabIndex = 372;
     this.lbltaco01.Text = "00";
     //
     // labelControl43
     //
     this.labelControl43.Location = new System.Drawing.Point(54, 288);
     this.labelControl43.Name = "labelControl43";
     this.labelControl43.Size = new System.Drawing.Size(25, 13);
     this.labelControl43.TabIndex = 335;
     this.labelControl43.Text = "Color";
     //
     // txt_colorname
     //
     this.txt_colorname.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_colorname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_colorname.Enabled = false;
     this.txt_colorname.Location = new System.Drawing.Point(54, 305);
     this.txt_colorname.MaxLength = 10;
     this.txt_colorname.Name = "txt_colorname";
     this.txt_colorname.Size = new System.Drawing.Size(136, 21);
     this.txt_colorname.TabIndex = 334;
     //
     // txt_colorid
     //
     this.txt_colorid.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_colorid.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_colorid.Location = new System.Drawing.Point(10, 305);
     this.txt_colorid.MaxLength = 10;
     this.txt_colorid.Name = "txt_colorid";
     this.txt_colorid.Size = new System.Drawing.Size(40, 21);
     this.txt_colorid.TabIndex = 333;
     this.txt_colorid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_colorid_KeyDown);
     this.txt_colorid.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txt_colorid_MouseDown);
     //
     // labelControl44
     //
     this.labelControl44.Location = new System.Drawing.Point(12, 288);
     this.labelControl44.Name = "labelControl44";
     this.labelControl44.Size = new System.Drawing.Size(33, 13);
     this.labelControl44.TabIndex = 332;
     this.labelControl44.Text = "Codigo";
     //
     // txt_cantreal
     //
     this.txt_cantreal.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_cantreal.Enabled = false;
     this.txt_cantreal.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.txt_cantreal.Location = new System.Drawing.Point(684, 254);
     this.txt_cantreal.MaxLength = 10;
     this.txt_cantreal.Name = "txt_cantreal";
     this.txt_cantreal.Size = new System.Drawing.Size(78, 22);
     this.txt_cantreal.TabIndex = 282;
     this.txt_cantreal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_cantprog
     //
     this.txt_cantprog.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_cantprog.Enabled = false;
     this.txt_cantprog.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.txt_cantprog.Location = new System.Drawing.Point(684, 231);
     this.txt_cantprog.MaxLength = 10;
     this.txt_cantprog.Name = "txt_cantprog";
     this.txt_cantprog.Size = new System.Drawing.Size(78, 22);
     this.txt_cantprog.TabIndex = 281;
     this.txt_cantprog.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl36
     //
     this.labelControl36.Location = new System.Drawing.Point(688, 212);
     this.labelControl36.Name = "labelControl36";
     this.labelControl36.Size = new System.Drawing.Size(66, 13);
     this.labelControl36.TabIndex = 280;
     this.labelControl36.Text = "Total Prendas";
     //
     // txt_numref
     //
     this.txt_numref.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_numref.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_numref.Location = new System.Drawing.Point(440, 162);
     this.txt_numref.MaxLength = 10;
     this.txt_numref.Name = "txt_numref";
     this.txt_numref.Size = new System.Drawing.Size(83, 21);
     this.txt_numref.TabIndex = 227;
     this.txt_numref.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_numref_KeyDown);
     this.txt_numref.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txt_numref_MouseDown);
     //
     // txt_serref
     //
     this.txt_serref.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_serref.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_serref.Location = new System.Drawing.Point(392, 162);
     this.txt_serref.MaxLength = 4;
     this.txt_serref.Name = "txt_serref";
     this.txt_serref.Size = new System.Drawing.Size(47, 21);
     this.txt_serref.TabIndex = 226;
     this.txt_serref.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_serref_KeyDown);
     this.txt_serref.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txt_serref_MouseDown);
     //
     // txt_tipref
     //
     this.txt_tipref.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_tipref.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_tipref.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_tipref.Location = new System.Drawing.Point(364, 162);
     this.txt_tipref.MaxLength = 2;
     this.txt_tipref.Name = "txt_tipref";
     this.txt_tipref.Size = new System.Drawing.Size(27, 21);
     this.txt_tipref.TabIndex = 225;
     this.txt_tipref.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_tipref_KeyDown);
     this.txt_tipref.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txt_tipref_MouseDown);
     //
     // labelControl30
     //
     this.labelControl30.Location = new System.Drawing.Point(364, 145);
     this.labelControl30.Name = "labelControl30";
     this.labelControl30.Size = new System.Drawing.Size(32, 13);
     this.labelControl30.TabIndex = 224;
     this.labelControl30.Text = "Pedido";
     //
     // labelControl29
     //
     this.labelControl29.Location = new System.Drawing.Point(79, 145);
     this.labelControl29.Name = "labelControl29";
     this.labelControl29.Size = new System.Drawing.Size(60, 13);
     this.labelControl29.TabIndex = 223;
     this.labelControl29.Text = "Razón Social";
     //
     // txt_ctactename
     //
     this.txt_ctactename.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_ctactename.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_ctactename.Enabled = false;
     this.txt_ctactename.Location = new System.Drawing.Point(79, 162);
     this.txt_ctactename.MaxLength = 10;
     this.txt_ctactename.Name = "txt_ctactename";
     this.txt_ctactename.Size = new System.Drawing.Size(280, 21);
     this.txt_ctactename.TabIndex = 222;
     //
     // txt_ctacte
     //
     this.txt_ctacte.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_ctacte.Location = new System.Drawing.Point(13, 162);
     this.txt_ctacte.MaxLength = 10;
     this.txt_ctacte.Name = "txt_ctacte";
     this.txt_ctacte.Size = new System.Drawing.Size(64, 21);
     this.txt_ctacte.TabIndex = 221;
     this.txt_ctacte.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_ctacte_KeyDown);
     this.txt_ctacte.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txt_ctacte_MouseDown);
     //
     // labelControl28
     //
     this.labelControl28.Location = new System.Drawing.Point(15, 145);
     this.labelControl28.Name = "labelControl28";
     this.labelControl28.Size = new System.Drawing.Size(32, 13);
     this.labelControl28.TabIndex = 220;
     this.labelControl28.Text = "Ctacte";
     //
     // labelControl27
     //
     this.labelControl27.Location = new System.Drawing.Point(364, 101);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(58, 13);
     this.labelControl27.TabIndex = 218;
     this.labelControl27.Text = "Canal Venta";
     //
     // labelControl26
     //
     this.labelControl26.Location = new System.Drawing.Point(15, 101);
     this.labelControl26.Name = "labelControl26";
     this.labelControl26.Size = new System.Drawing.Size(55, 13);
     this.labelControl26.TabIndex = 217;
     this.labelControl26.Text = "Familia Tela";
     //
     // txt_familiatelaname
     //
     this.txt_familiatelaname.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_familiatelaname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_familiatelaname.Enabled = false;
     this.txt_familiatelaname.Location = new System.Drawing.Point(13, 117);
     this.txt_familiatelaname.MaxLength = 10;
     this.txt_familiatelaname.Name = "txt_familiatelaname";
     this.txt_familiatelaname.Size = new System.Drawing.Size(346, 21);
     this.txt_familiatelaname.TabIndex = 216;
     //
     // labelControl25
     //
     this.labelControl25.Location = new System.Drawing.Point(745, 98);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(54, 13);
     this.labelControl25.TabIndex = 215;
     this.labelControl25.Text = "Temporada";
     //
     // labelControl24
     //
     this.labelControl24.Location = new System.Drawing.Point(635, 98);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(35, 13);
     this.labelControl24.TabIndex = 213;
     this.labelControl24.Text = "Genero";
     //
     // cmb_canalvta
     //
     this.cmb_canalvta.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_canalvta.Enabled = false;
     this.cmb_canalvta.FormattingEnabled = true;
     this.cmb_canalvta.Location = new System.Drawing.Point(362, 117);
     this.cmb_canalvta.Name = "cmb_canalvta";
     this.cmb_canalvta.Size = new System.Drawing.Size(154, 21);
     this.cmb_canalvta.TabIndex = 151;
     //
     // txt_generoname
     //
     this.txt_generoname.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_generoname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_generoname.Enabled = false;
     this.txt_generoname.Location = new System.Drawing.Point(633, 117);
     this.txt_generoname.MaxLength = 10;
     this.txt_generoname.Name = "txt_generoname";
     this.txt_generoname.Size = new System.Drawing.Size(110, 21);
     this.txt_generoname.TabIndex = 212;
     //
     // labelControl23
     //
     this.labelControl23.Location = new System.Drawing.Point(523, 98);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(25, 13);
     this.labelControl23.TabIndex = 211;
     this.labelControl23.Text = "Linea";
     //
     // txt_lineaname
     //
     this.txt_lineaname.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_lineaname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_lineaname.Enabled = false;
     this.txt_lineaname.Location = new System.Drawing.Point(521, 117);
     this.txt_lineaname.MaxLength = 10;
     this.txt_lineaname.Name = "txt_lineaname";
     this.txt_lineaname.Size = new System.Drawing.Size(110, 21);
     this.txt_lineaname.TabIndex = 210;
     //
     // labelControl22
     //
     this.labelControl22.Location = new System.Drawing.Point(694, 55);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(29, 13);
     this.labelControl22.TabIndex = 209;
     this.labelControl22.Text = "Marca";
     //
     // txt_marcaname
     //
     this.txt_marcaname.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_marcaname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_marcaname.Enabled = false;
     this.txt_marcaname.Location = new System.Drawing.Point(692, 74);
     this.txt_marcaname.MaxLength = 10;
     this.txt_marcaname.Name = "txt_marcaname";
     this.txt_marcaname.Size = new System.Drawing.Size(110, 21);
     this.txt_marcaname.TabIndex = 208;
     //
     // labelControl21
     //
     this.labelControl21.Location = new System.Drawing.Point(628, 55);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(40, 13);
     this.labelControl21.TabIndex = 207;
     this.labelControl21.Text = "Variante";
     //
     // txt_variante
     //
     this.txt_variante.BackColor = System.Drawing.SystemColors.Window;
     this.txt_variante.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_variante.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_variante.Enabled = false;
     this.txt_variante.Location = new System.Drawing.Point(626, 74);
     this.txt_variante.MaxLength = 10;
     this.txt_variante.Name = "txt_variante";
     this.txt_variante.Size = new System.Drawing.Size(64, 21);
     this.txt_variante.TabIndex = 206;
     //
     // labelControl20
     //
     this.labelControl20.Location = new System.Drawing.Point(346, 55);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(36, 13);
     this.labelControl20.TabIndex = 205;
     this.labelControl20.Text = "Artículo";
     //
     // labelControl19
     //
     this.labelControl19.Location = new System.Drawing.Point(293, 55);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(37, 13);
     this.labelControl19.TabIndex = 204;
     this.labelControl19.Text = "Codigo:";
     //
     // txt_articname
     //
     this.txt_articname.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_articname.Enabled = false;
     this.txt_articname.Location = new System.Drawing.Point(343, 74);
     this.txt_articname.MaxLength = 10;
     this.txt_articname.Name = "txt_articname";
     this.txt_articname.Size = new System.Drawing.Size(280, 21);
     this.txt_articname.TabIndex = 203;
     //
     // txt_articid
     //
     this.txt_articid.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_articid.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_articid.Location = new System.Drawing.Point(291, 74);
     this.txt_articid.MaxLength = 7;
     this.txt_articid.Name = "txt_articid";
     this.txt_articid.Size = new System.Drawing.Size(50, 21);
     this.txt_articid.TabIndex = 202;
     this.txt_articid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_articid_KeyDown);
     this.txt_articid.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_articid_KeyUp);
     this.txt_articid.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txt_articid_MouseDown);
     //
     // cmb_ejecutor
     //
     this.cmb_ejecutor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_ejecutor.FormattingEnabled = true;
     this.cmb_ejecutor.Location = new System.Drawing.Point(702, 25);
     this.cmb_ejecutor.Name = "cmb_ejecutor";
     this.cmb_ejecutor.Size = new System.Drawing.Size(153, 21);
     this.cmb_ejecutor.TabIndex = 200;
     //
     // labelControl18
     //
     this.labelControl18.Location = new System.Drawing.Point(704, 6);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(40, 13);
     this.labelControl18.TabIndex = 199;
     this.labelControl18.Text = "Ejecutor";
     //
     // labelControl16
     //
     this.labelControl16.Location = new System.Drawing.Point(805, 55);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(19, 13);
     this.labelControl16.TabIndex = 198;
     this.labelControl16.Text = "Año";
     //
     // cmb_estado
     //
     this.cmb_estado.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_estado.FormattingEnabled = true;
     this.cmb_estado.Location = new System.Drawing.Point(605, 26);
     this.cmb_estado.Name = "cmb_estado";
     this.cmb_estado.Size = new System.Drawing.Size(93, 21);
     this.cmb_estado.TabIndex = 196;
     //
     // labelControl17
     //
     this.labelControl17.Location = new System.Drawing.Point(608, 7);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(33, 13);
     this.labelControl17.TabIndex = 195;
     this.labelControl17.Text = "Estado";
     //
     // labelControl15
     //
     this.labelControl15.Location = new System.Drawing.Point(503, 7);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(70, 13);
     this.labelControl15.TabIndex = 193;
     this.labelControl15.Text = "Fecha Entrega";
     //
     // txt_fechfin
     //
     this.txt_fechfin.EditValue = null;
     this.txt_fechfin.Location = new System.Drawing.Point(502, 26);
     this.txt_fechfin.MenuManager = this.barManager1;
     this.txt_fechfin.Name = "txt_fechfin";
     this.txt_fechfin.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.txt_fechfin.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechfin.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechfin.Properties.CalendarTimeProperties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.F4);
     this.txt_fechfin.Properties.CalendarTimeProperties.PopupBorderStyle = DevExpress.XtraEditors.Controls.PopupBorderStyles.Default;
     this.txt_fechfin.Size = new System.Drawing.Size(100, 20);
     this.txt_fechfin.TabIndex = 192;
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(398, 7);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(57, 13);
     this.labelControl14.TabIndex = 191;
     this.labelControl14.Text = "Fecha Inicio";
     //
     // txt_fechini
     //
     this.txt_fechini.EditValue = null;
     this.txt_fechini.Location = new System.Drawing.Point(396, 26);
     this.txt_fechini.MenuManager = this.barManager1;
     this.txt_fechini.Name = "txt_fechini";
     this.txt_fechini.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.txt_fechini.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechini.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechini.Properties.CalendarTimeProperties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.F4);
     this.txt_fechini.Properties.CalendarTimeProperties.PopupBorderStyle = DevExpress.XtraEditors.Controls.PopupBorderStyles.Default;
     this.txt_fechini.Size = new System.Drawing.Size(100, 20);
     this.txt_fechini.TabIndex = 190;
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(292, 7);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(67, 13);
     this.labelControl13.TabIndex = 189;
     this.labelControl13.Text = "Fecha Emisión";
     //
     // txt_fechemi
     //
     this.txt_fechemi.EditValue = null;
     this.txt_fechemi.Location = new System.Drawing.Point(290, 26);
     this.txt_fechemi.MenuManager = this.barManager1;
     this.txt_fechemi.Name = "txt_fechemi";
     this.txt_fechemi.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.txt_fechemi.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechemi.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechemi.Properties.CalendarTimeProperties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.F4);
     this.txt_fechemi.Properties.CalendarTimeProperties.PopupBorderStyle = DevExpress.XtraEditors.Controls.PopupBorderStyles.Default;
     this.txt_fechemi.Size = new System.Drawing.Size(100, 20);
     this.txt_fechemi.TabIndex = 188;
     //
     // cmb_perianio
     //
     this.cmb_perianio.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_perianio.Enabled = false;
     this.cmb_perianio.FormattingEnabled = true;
     this.cmb_perianio.Location = new System.Drawing.Point(804, 73);
     this.cmb_perianio.Name = "cmb_perianio";
     this.cmb_perianio.Size = new System.Drawing.Size(52, 21);
     this.cmb_perianio.TabIndex = 147;
     //
     // tab_03
     //
     this.tab_03.Controls.Add(this.panelControl1);
     this.tab_03.Name = "tab_03";
     this.tab_03.Size = new System.Drawing.Size(888, 506);
     this.tab_03.Text = "Procesos";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.pnl_edit2);
     this.panelControl1.Controls.Add(this.txt_serop03);
     this.panelControl1.Controls.Add(this.txt_tipop03);
     this.panelControl1.Controls.Add(this.txt_numop03);
     this.panelControl1.Controls.Add(this.pnl_edit);
     this.panelControl1.Controls.Add(this.btn_new);
     this.panelControl1.Controls.Add(this.btn_save);
     this.panelControl1.Controls.Add(this.line1);
     this.panelControl1.Controls.Add(this.labelControl3);
     this.panelControl1.Controls.Add(this.labelControl2);
     this.panelControl1.Controls.Add(this.labelControl1);
     this.panelControl1.Controls.Add(this.btn_cancel);
     this.panelControl1.Controls.Add(this.btn_delete);
     this.panelControl1.Controls.Add(this.btn_edit);
     this.panelControl1.Controls.Add(this.dgv_ordenprodfase);
     this.panelControl1.Controls.Add(this.btn_add2);
     this.panelControl1.Location = new System.Drawing.Point(3, 3);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(879, 582);
     this.panelControl1.TabIndex = 405;
     //
     // pnl_edit2
     //
     this.pnl_edit2.Controls.Add(this.txt_fechentrega03);
     this.pnl_edit2.Controls.Add(this.txt_ctactename03);
     this.pnl_edit2.Controls.Add(this.labelControl39);
     this.pnl_edit2.Controls.Add(this.txt_fechini03);
     this.pnl_edit2.Controls.Add(this.labelControl40);
     this.pnl_edit2.Controls.Add(this.labelControl42);
     this.pnl_edit2.Controls.Add(this.txt_ctacte03);
     this.pnl_edit2.Controls.Add(this.labelControl41);
     this.pnl_edit2.Enabled = false;
     this.pnl_edit2.Location = new System.Drawing.Point(176, 66);
     this.pnl_edit2.Name = "pnl_edit2";
     this.pnl_edit2.Size = new System.Drawing.Size(659, 49);
     this.pnl_edit2.TabIndex = 452;
     //
     // txt_fechentrega03
     //
     this.txt_fechentrega03.EditValue = null;
     this.txt_fechentrega03.Location = new System.Drawing.Point(463, 24);
     this.txt_fechentrega03.MenuManager = this.barManager1;
     this.txt_fechentrega03.Name = "txt_fechentrega03";
     this.txt_fechentrega03.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechentrega03.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechentrega03.Properties.CalendarTimeProperties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.F4);
     this.txt_fechentrega03.Properties.CalendarTimeProperties.PopupBorderStyle = DevExpress.XtraEditors.Controls.PopupBorderStyles.Default;
     this.txt_fechentrega03.Size = new System.Drawing.Size(100, 20);
     this.txt_fechentrega03.TabIndex = 329;
     //
     // txt_ctactename03
     //
     this.txt_ctactename03.Location = new System.Drawing.Point(70, 23);
     this.txt_ctactename03.MaxLength = 10;
     this.txt_ctactename03.Name = "txt_ctactename03";
     this.txt_ctactename03.Size = new System.Drawing.Size(285, 21);
     this.txt_ctactename03.TabIndex = 325;
     //
     // labelControl39
     //
     this.labelControl39.Location = new System.Drawing.Point(73, 6);
     this.labelControl39.Name = "labelControl39";
     this.labelControl39.Size = new System.Drawing.Size(60, 13);
     this.labelControl39.TabIndex = 326;
     this.labelControl39.Text = "Razón Social";
     //
     // txt_fechini03
     //
     this.txt_fechini03.EditValue = null;
     this.txt_fechini03.Location = new System.Drawing.Point(361, 24);
     this.txt_fechini03.MenuManager = this.barManager1;
     this.txt_fechini03.Name = "txt_fechini03";
     this.txt_fechini03.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechini03.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechini03.Properties.CalendarTimeProperties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.F4);
     this.txt_fechini03.Properties.CalendarTimeProperties.PopupBorderStyle = DevExpress.XtraEditors.Controls.PopupBorderStyles.Default;
     this.txt_fechini03.Size = new System.Drawing.Size(100, 20);
     this.txt_fechini03.TabIndex = 327;
     //
     // labelControl40
     //
     this.labelControl40.Location = new System.Drawing.Point(6, 6);
     this.labelControl40.Name = "labelControl40";
     this.labelControl40.Size = new System.Drawing.Size(32, 13);
     this.labelControl40.TabIndex = 323;
     this.labelControl40.Text = "Ctacte";
     //
     // labelControl42
     //
     this.labelControl42.Location = new System.Drawing.Point(361, 6);
     this.labelControl42.Name = "labelControl42";
     this.labelControl42.Size = new System.Drawing.Size(57, 13);
     this.labelControl42.TabIndex = 328;
     this.labelControl42.Text = "Fecha Inicio";
     //
     // txt_ctacte03
     //
     this.txt_ctacte03.Location = new System.Drawing.Point(4, 23);
     this.txt_ctacte03.MaxLength = 10;
     this.txt_ctacte03.Name = "txt_ctacte03";
     this.txt_ctacte03.Size = new System.Drawing.Size(64, 21);
     this.txt_ctacte03.TabIndex = 324;
     this.txt_ctacte03.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_ctacte03_KeyDown);
     //
     // labelControl41
     //
     this.labelControl41.Location = new System.Drawing.Point(463, 6);
     this.labelControl41.Name = "labelControl41";
     this.labelControl41.Size = new System.Drawing.Size(70, 13);
     this.labelControl41.TabIndex = 330;
     this.labelControl41.Text = "Fecha Entrega";
     //
     // txt_serop03
     //
     this.txt_serop03.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.txt_serop03.Appearance.ForeColor = System.Drawing.Color.Red;
     this.txt_serop03.Location = new System.Drawing.Point(45, 22);
     this.txt_serop03.Name = "txt_serop03";
     this.txt_serop03.Size = new System.Drawing.Size(33, 16);
     this.txt_serop03.TabIndex = 451;
     this.txt_serop03.Text = "____";
     //
     // txt_tipop03
     //
     this.txt_tipop03.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.txt_tipop03.Appearance.ForeColor = System.Drawing.Color.Red;
     this.txt_tipop03.Location = new System.Drawing.Point(18, 22);
     this.txt_tipop03.Name = "txt_tipop03";
     this.txt_tipop03.Size = new System.Drawing.Size(17, 16);
     this.txt_tipop03.TabIndex = 450;
     this.txt_tipop03.Text = "__";
     //
     // txt_numop03
     //
     this.txt_numop03.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.txt_numop03.Appearance.ForeColor = System.Drawing.Color.Red;
     this.txt_numop03.Location = new System.Drawing.Point(85, 22);
     this.txt_numop03.Name = "txt_numop03";
     this.txt_numop03.Size = new System.Drawing.Size(81, 16);
     this.txt_numop03.TabIndex = 449;
     this.txt_numop03.Text = "__________";
     //
     // pnl_edit
     //
     this.pnl_edit.Controls.Add(this.cmb_fase);
     this.pnl_edit.Controls.Add(this.labelControl38);
     this.pnl_edit.Controls.Add(this.txt_secuencia);
     this.pnl_edit.Controls.Add(this.labelControl37);
     this.pnl_edit.Enabled = false;
     this.pnl_edit.Location = new System.Drawing.Point(8, 66);
     this.pnl_edit.Name = "pnl_edit";
     this.pnl_edit.Size = new System.Drawing.Size(166, 49);
     this.pnl_edit.TabIndex = 448;
     //
     // cmb_fase
     //
     this.cmb_fase.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_fase.FormattingEnabled = true;
     this.cmb_fase.Location = new System.Drawing.Point(66, 20);
     this.cmb_fase.Name = "cmb_fase";
     this.cmb_fase.Size = new System.Drawing.Size(93, 21);
     this.cmb_fase.TabIndex = 320;
     //
     // labelControl38
     //
     this.labelControl38.Location = new System.Drawing.Point(66, 3);
     this.labelControl38.Name = "labelControl38";
     this.labelControl38.Size = new System.Drawing.Size(65, 13);
     this.labelControl38.TabIndex = 322;
     this.labelControl38.Text = "Proceso/Fase";
     //
     // txt_secuencia
     //
     this.txt_secuencia.Location = new System.Drawing.Point(6, 20);
     this.txt_secuencia.Name = "txt_secuencia";
     this.txt_secuencia.Size = new System.Drawing.Size(41, 21);
     this.txt_secuencia.TabIndex = 321;
     //
     // labelControl37
     //
     this.labelControl37.Location = new System.Drawing.Point(6, 3);
     this.labelControl37.Name = "labelControl37";
     this.labelControl37.Size = new System.Drawing.Size(48, 13);
     this.labelControl37.TabIndex = 319;
     this.labelControl37.Text = "Secuencia";
     //
     // btn_new
     //
     this.btn_new.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_new.Image = ((System.Drawing.Image)(resources.GetObject("btn_new.Image")));
     this.btn_new.Location = new System.Drawing.Point(528, 121);
     this.btn_new.Name = "btn_new";
     this.btn_new.Size = new System.Drawing.Size(59, 23);
     this.btn_new.TabIndex = 447;
     this.btn_new.Text = "Nuevo";
     this.btn_new.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_new.Click += new System.EventHandler(this.btn_new_Click);
     //
     // btn_save
     //
     this.btn_save.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_save.Enabled = false;
     this.btn_save.Image = ((System.Drawing.Image)(resources.GetObject("btn_save.Image")));
     this.btn_save.Location = new System.Drawing.Point(650, 121);
     this.btn_save.Name = "btn_save";
     this.btn_save.Size = new System.Drawing.Size(59, 23);
     this.btn_save.TabIndex = 446;
     this.btn_save.Text = "Grabar";
     this.btn_save.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_save.Click += new System.EventHandler(this.btn_save_Click);
     //
     // line1
     //
     this.line1.Location = new System.Drawing.Point(8, 47);
     this.line1.Name = "line1";
     this.line1.Size = new System.Drawing.Size(827, 13);
     this.line1.TabIndex = 444;
     this.line1.Text = "line1";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(45, 7);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(30, 13);
     this.labelControl3.TabIndex = 443;
     this.labelControl3.Text = "SerOp";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(85, 7);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(35, 13);
     this.labelControl2.TabIndex = 441;
     this.labelControl2.Text = "NumOp";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(13, 7);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(28, 13);
     this.labelControl1.TabIndex = 440;
     this.labelControl1.Text = "TipOp";
     //
     // btn_cancel
     //
     this.btn_cancel.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_cancel.Enabled = false;
     this.btn_cancel.Image = ((System.Drawing.Image)(resources.GetObject("btn_cancel.Image")));
     this.btn_cancel.Location = new System.Drawing.Point(711, 121);
     this.btn_cancel.Name = "btn_cancel";
     this.btn_cancel.Size = new System.Drawing.Size(59, 23);
     this.btn_cancel.TabIndex = 437;
     this.btn_cancel.Text = "Cancel";
     this.btn_cancel.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_cancel.Click += new System.EventHandler(this.btn_cancel_Click);
     //
     // btn_delete
     //
     this.btn_delete.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_delete.Enabled = false;
     this.btn_delete.Image = ((System.Drawing.Image)(resources.GetObject("btn_delete.Image")));
     this.btn_delete.Location = new System.Drawing.Point(776, 121);
     this.btn_delete.Name = "btn_delete";
     this.btn_delete.Size = new System.Drawing.Size(59, 23);
     this.btn_delete.TabIndex = 436;
     this.btn_delete.Text = "Borrar";
     this.btn_delete.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_delete.Click += new System.EventHandler(this.btn_delete_Click);
     //
     // btn_edit
     //
     this.btn_edit.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_edit.Enabled = false;
     this.btn_edit.Image = ((System.Drawing.Image)(resources.GetObject("btn_edit.Image")));
     this.btn_edit.Location = new System.Drawing.Point(589, 121);
     this.btn_edit.Name = "btn_edit";
     this.btn_edit.Size = new System.Drawing.Size(59, 23);
     this.btn_edit.TabIndex = 434;
     this.btn_edit.Text = "Editar";
     this.btn_edit.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_edit.Click += new System.EventHandler(this.btn_edit_Click);
     //
     // dgv_ordenprodfase
     //
     this.dgv_ordenprodfase.AllowUserToAddRows = false;
     dataGridViewCellStyle89.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle89.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle89.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle89.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle89.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle89.SelectionForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle89.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgv_ordenprodfase.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle89;
     this.dgv_ordenprodfase.ColumnHeadersHeight = 20;
     this.dgv_ordenprodfase.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this._tipop,
     this._serop,
     this._numop,
     this.secuencia,
     this.faseid,
     this.fasename,
     this.ctacte,
     this.ctactename,
     this.fechprog_ini,
     this.fechprog_fin});
     dataGridViewCellStyle90.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle90.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle90.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle90.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle90.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle90.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     dataGridViewCellStyle90.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgv_ordenprodfase.DefaultCellStyle = dataGridViewCellStyle90;
     this.dgv_ordenprodfase.EnableHeadersVisualStyles = false;
     this.dgv_ordenprodfase.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgv_ordenprodfase.Location = new System.Drawing.Point(9, 150);
     this.dgv_ordenprodfase.Name = "dgv_ordenprodfase";
     this.dgv_ordenprodfase.ReadOnly = true;
     dataGridViewCellStyle91.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle91.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle91.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle91.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle91.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle91.SelectionForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle91.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgv_ordenprodfase.RowHeadersDefaultCellStyle = dataGridViewCellStyle91;
     this.dgv_ordenprodfase.RowHeadersVisible = false;
     this.dgv_ordenprodfase.Size = new System.Drawing.Size(826, 224);
     this.dgv_ordenprodfase.TabIndex = 432;
     this.dgv_ordenprodfase.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_ordenprodfase_CellClick);
     this.dgv_ordenprodfase.KeyUp += new System.Windows.Forms.KeyEventHandler(this.dgv_ordenprodfase_KeyUp);
     //
     // _tipop
     //
     this._tipop.DataPropertyName = "tipop";
     this._tipop.HeaderText = "tipop";
     this._tipop.Name = "_tipop";
     this._tipop.ReadOnly = true;
     this._tipop.Visible = false;
     //
     // _serop
     //
     this._serop.DataPropertyName = "serop";
     this._serop.HeaderText = "serop";
     this._serop.Name = "_serop";
     this._serop.ReadOnly = true;
     this._serop.Visible = false;
     //
     // _numop
     //
     this._numop.DataPropertyName = "numop";
     this._numop.HeaderText = "numop";
     this._numop.Name = "_numop";
     this._numop.ReadOnly = true;
     this._numop.Visible = false;
     //
     // secuencia
     //
     this.secuencia.DataPropertyName = "secuencia";
     this.secuencia.HeaderText = "Secuencia";
     this.secuencia.Name = "secuencia";
     this.secuencia.ReadOnly = true;
     this.secuencia.Width = 70;
     //
     // faseid
     //
     this.faseid.DataPropertyName = "faseid";
     this.faseid.HeaderText = "Codigo";
     this.faseid.Name = "faseid";
     this.faseid.ReadOnly = true;
     this.faseid.Width = 50;
     //
     // fasename
     //
     this.fasename.DataPropertyName = "fasename";
     this.fasename.HeaderText = "Proceso";
     this.fasename.Name = "fasename";
     this.fasename.ReadOnly = true;
     this.fasename.Width = 120;
     //
     // ctacte
     //
     this.ctacte.DataPropertyName = "ctacte";
     this.ctacte.HeaderText = "CtaCte";
     this.ctacte.Name = "ctacte";
     this.ctacte.ReadOnly = true;
     this.ctacte.Width = 80;
     //
     // ctactename
     //
     this.ctactename.DataPropertyName = "ctactename";
     this.ctactename.HeaderText = "Razón Social";
     this.ctactename.Name = "ctactename";
     this.ctactename.ReadOnly = true;
     this.ctactename.Width = 300;
     //
     // fechprog_ini
     //
     this.fechprog_ini.DataPropertyName = "fechprog_ini";
     this.fechprog_ini.HeaderText = "Fecha Inicio";
     this.fechprog_ini.Name = "fechprog_ini";
     this.fechprog_ini.ReadOnly = true;
     this.fechprog_ini.Width = 80;
     //
     // fechprog_fin
     //
     this.fechprog_fin.DataPropertyName = "fechprog_fin";
     this.fechprog_fin.HeaderText = "Fecha Entrega";
     this.fechprog_fin.Name = "fechprog_fin";
     this.fechprog_fin.ReadOnly = true;
     this.fechprog_fin.Width = 90;
     //
     // btn_add2
     //
     this.btn_add2.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_add2.Image = ((System.Drawing.Image)(resources.GetObject("btn_add2.Image")));
     this.btn_add2.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_add2.Location = new System.Drawing.Point(773, 183);
     this.btn_add2.Name = "btn_add2";
     this.btn_add2.Size = new System.Drawing.Size(45, 23);
     this.btn_add2.TabIndex = 430;
     this.btn_add2.Text = "Add";
     this.btn_add2.ToolTip = "Adicionar";
     this.btn_add2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_add2.Visible = false;
     this.btn_add2.Click += new System.EventHandler(this.btn_add2_Click);
     //
     // tab_04
     //
     this.tab_04.Controls.Add(this.panelControl6);
     this.tab_04.Name = "tab_04";
     this.tab_04.Size = new System.Drawing.Size(888, 506);
     this.tab_04.Text = "Materiales Telas";
     //
     // panelControl6
     //
     this.panelControl6.Controls.Add(this.btn_del);
     this.panelControl6.Controls.Add(this.txt_ltizado);
     this.panelControl6.Controls.Add(this.labelControl51);
     this.panelControl6.Controls.Add(this.labelControl50);
     this.panelControl6.Controls.Add(this.txt_parte);
     this.panelControl6.Controls.Add(this.txt_productname1);
     this.panelControl6.Controls.Add(this.btn_generar);
     this.panelControl6.Controls.Add(this.labelControl35);
     this.panelControl6.Controls.Add(this.txt_tolerancia);
     this.panelControl6.Controls.Add(this.labelControl33);
     this.panelControl6.Controls.Add(this.txt_numpanos);
     this.panelControl6.Controls.Add(this.labelControl32);
     this.panelControl6.Controls.Add(this.txt_prendpanos);
     this.panelControl6.Controls.Add(this.labelControl31);
     this.panelControl6.Controls.Add(this.xtraScrollableControl1);
     this.panelControl6.Controls.Add(this.pnl_edit2Ma);
     this.panelControl6.Controls.Add(this.txt_serop04);
     this.panelControl6.Controls.Add(this.txt_tipop04);
     this.panelControl6.Controls.Add(this.txt_numop04);
     this.panelControl6.Controls.Add(this.pnl_editMa);
     this.panelControl6.Controls.Add(this.btn_newMa);
     this.panelControl6.Controls.Add(this.btn_saveMa);
     this.panelControl6.Controls.Add(this.line2);
     this.panelControl6.Controls.Add(this.labelControl45);
     this.panelControl6.Controls.Add(this.labelControl46);
     this.panelControl6.Controls.Add(this.labelControl47);
     this.panelControl6.Controls.Add(this.btn_cancelMa);
     this.panelControl6.Controls.Add(this.btn_deleteMa);
     this.panelControl6.Controls.Add(this.btn_editMa);
     this.panelControl6.Controls.Add(this.dgv_ordenprodtela);
     this.panelControl6.Controls.Add(this.simpleButton6);
     this.panelControl6.Location = new System.Drawing.Point(3, 3);
     this.panelControl6.Name = "panelControl6";
     this.panelControl6.Size = new System.Drawing.Size(879, 582);
     this.panelControl6.TabIndex = 406;
     //
     // btn_del
     //
     this.btn_del.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_del.Image = ((System.Drawing.Image)(resources.GetObject("btn_del.Image")));
     this.btn_del.Location = new System.Drawing.Point(794, 258);
     this.btn_del.Name = "btn_del";
     this.btn_del.Size = new System.Drawing.Size(41, 32);
     this.btn_del.TabIndex = 526;
     this.btn_del.ToolTip = "Eliminar Calculo de Consumo";
     this.btn_del.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_del.Click += new System.EventHandler(this.btn_del_Click);
     //
     // txt_ltizado
     //
     this.txt_ltizado.EditValue = "0";
     this.txt_ltizado.Location = new System.Drawing.Point(384, 270);
     this.txt_ltizado.MenuManager = this.barManager1;
     this.txt_ltizado.Name = "txt_ltizado";
     this.txt_ltizado.Properties.Appearance.BackColor = System.Drawing.Color.Yellow;
     this.txt_ltizado.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_ltizado.Properties.Appearance.Options.UseBackColor = true;
     this.txt_ltizado.Properties.Appearance.Options.UseFont = true;
     this.txt_ltizado.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_ltizado.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_ltizado.Properties.Mask.EditMask = "n3";
     this.txt_ltizado.Size = new System.Drawing.Size(65, 20);
     this.txt_ltizado.TabIndex = 525;
     //
     // labelControl51
     //
     this.labelControl51.Location = new System.Drawing.Point(114, 253);
     this.labelControl51.Name = "labelControl51";
     this.labelControl51.Size = new System.Drawing.Size(58, 13);
     this.labelControl51.TabIndex = 524;
     this.labelControl51.Text = "Descripción:";
     //
     // labelControl50
     //
     this.labelControl50.Location = new System.Drawing.Point(11, 253);
     this.labelControl50.Name = "labelControl50";
     this.labelControl50.Size = new System.Drawing.Size(67, 13);
     this.labelControl50.TabIndex = 523;
     this.labelControl50.Text = "Parte Prenda:";
     //
     // txt_parte
     //
     this.txt_parte.BackColor = System.Drawing.SystemColors.Window;
     this.txt_parte.Enabled = false;
     this.txt_parte.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     this.txt_parte.Location = new System.Drawing.Point(9, 270);
     this.txt_parte.MaxLength = 10;
     this.txt_parte.Name = "txt_parte";
     this.txt_parte.Size = new System.Drawing.Size(101, 21);
     this.txt_parte.TabIndex = 522;
     this.txt_parte.TextChanged += new System.EventHandler(this.txt_parte_TextChanged);
     //
     // txt_productname1
     //
     this.txt_productname1.BackColor = System.Drawing.SystemColors.Window;
     this.txt_productname1.Enabled = false;
     this.txt_productname1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     this.txt_productname1.Location = new System.Drawing.Point(114, 270);
     this.txt_productname1.MaxLength = 10;
     this.txt_productname1.Name = "txt_productname1";
     this.txt_productname1.Size = new System.Drawing.Size(257, 21);
     this.txt_productname1.TabIndex = 521;
     this.txt_productname1.TextChanged += new System.EventHandler(this.txt_productname1_TextChanged);
     //
     // btn_generar
     //
     this.btn_generar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_generar.Enabled = false;
     this.btn_generar.Image = global::BapFormulariosNet.Properties.Resources.go_calc;
     this.btn_generar.Location = new System.Drawing.Point(706, 258);
     this.btn_generar.Name = "btn_generar";
     this.btn_generar.Size = new System.Drawing.Size(87, 32);
     this.btn_generar.TabIndex = 519;
     this.btn_generar.Text = "Calcular";
     this.btn_generar.ToolTip = "Calcular Consumos";
     this.btn_generar.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_generar.Click += new System.EventHandler(this.btn_generar_Click);
     //
     // labelControl35
     //
     this.labelControl35.Location = new System.Drawing.Point(633, 253);
     this.labelControl35.Name = "labelControl35";
     this.labelControl35.Size = new System.Drawing.Size(67, 13);
     this.labelControl35.TabIndex = 518;
     this.labelControl35.Text = "% Tolerancia:";
     //
     // txt_tolerancia
     //
     this.txt_tolerancia.EditValue = "0";
     this.txt_tolerancia.Location = new System.Drawing.Point(631, 270);
     this.txt_tolerancia.MenuManager = this.barManager1;
     this.txt_tolerancia.Name = "txt_tolerancia";
     this.txt_tolerancia.Properties.Appearance.BackColor = System.Drawing.Color.Yellow;
     this.txt_tolerancia.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_tolerancia.Properties.Appearance.Options.UseBackColor = true;
     this.txt_tolerancia.Properties.Appearance.Options.UseFont = true;
     this.txt_tolerancia.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_tolerancia.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_tolerancia.Properties.Mask.EditMask = "n3";
     this.txt_tolerancia.Size = new System.Drawing.Size(69, 20);
     this.txt_tolerancia.TabIndex = 517;
     //
     // labelControl33
     //
     this.labelControl33.Location = new System.Drawing.Point(547, 253);
     this.labelControl33.Name = "labelControl33";
     this.labelControl33.Size = new System.Drawing.Size(73, 13);
     this.labelControl33.TabIndex = 516;
     this.labelControl33.Text = "Numero Paños:";
     //
     // txt_numpanos
     //
     this.txt_numpanos.EditValue = "0";
     this.txt_numpanos.Location = new System.Drawing.Point(545, 270);
     this.txt_numpanos.MenuManager = this.barManager1;
     this.txt_numpanos.Name = "txt_numpanos";
     this.txt_numpanos.Properties.Appearance.BackColor = System.Drawing.Color.Yellow;
     this.txt_numpanos.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_numpanos.Properties.Appearance.Options.UseBackColor = true;
     this.txt_numpanos.Properties.Appearance.Options.UseFont = true;
     this.txt_numpanos.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_numpanos.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_numpanos.Properties.Mask.EditMask = "n3";
     this.txt_numpanos.Size = new System.Drawing.Size(75, 20);
     this.txt_numpanos.TabIndex = 515;
     //
     // labelControl32
     //
     this.labelControl32.Location = new System.Drawing.Point(461, 253);
     this.labelControl32.Name = "labelControl32";
     this.labelControl32.Size = new System.Drawing.Size(74, 13);
     this.labelControl32.TabIndex = 514;
     this.labelControl32.Text = "Prenda x Paño:";
     //
     // txt_prendpanos
     //
     this.txt_prendpanos.EditValue = "0";
     this.txt_prendpanos.Location = new System.Drawing.Point(459, 270);
     this.txt_prendpanos.MenuManager = this.barManager1;
     this.txt_prendpanos.Name = "txt_prendpanos";
     this.txt_prendpanos.Properties.Appearance.BackColor = System.Drawing.Color.Yellow;
     this.txt_prendpanos.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.txt_prendpanos.Properties.Appearance.Options.UseBackColor = true;
     this.txt_prendpanos.Properties.Appearance.Options.UseFont = true;
     this.txt_prendpanos.Properties.Appearance.Options.UseTextOptions = true;
     this.txt_prendpanos.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.txt_prendpanos.Properties.Mask.EditMask = "n3";
     this.txt_prendpanos.Size = new System.Drawing.Size(76, 20);
     this.txt_prendpanos.TabIndex = 513;
     //
     // labelControl31
     //
     this.labelControl31.Location = new System.Drawing.Point(384, 253);
     this.labelControl31.Name = "labelControl31";
     this.labelControl31.Size = new System.Drawing.Size(65, 13);
     this.labelControl31.TabIndex = 512;
     this.labelControl31.Text = "Largo Tizado:";
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Controls.Add(this.labelControl48);
     this.xtraScrollableControl1.Controls.Add(this.labelControl49);
     this.xtraScrollableControl1.Controls.Add(this.dgv_consumoreal);
     this.xtraScrollableControl1.Controls.Add(this.dgv_calconsumo);
     this.xtraScrollableControl1.Location = new System.Drawing.Point(8, 298);
     this.xtraScrollableControl1.Name = "xtraScrollableControl1";
     this.xtraScrollableControl1.Size = new System.Drawing.Size(862, 202);
     this.xtraScrollableControl1.TabIndex = 453;
     //
     // labelControl48
     //
     this.labelControl48.Appearance.Font = new System.Drawing.Font("Papyrus", 12F, System.Drawing.FontStyle.Bold);
     this.labelControl48.Appearance.ForeColor = System.Drawing.Color.Teal;
     this.labelControl48.LineColor = System.Drawing.SystemColors.ActiveBorder;
     this.labelControl48.Location = new System.Drawing.Point(3, 18);
     this.labelControl48.Name = "labelControl48";
     this.labelControl48.Size = new System.Drawing.Size(165, 25);
     this.labelControl48.TabIndex = 521;
     this.labelControl48.Text = "Calculo de Consumo";
     //
     // labelControl49
     //
     this.labelControl49.Appearance.Font = new System.Drawing.Font("Papyrus", 12F, System.Drawing.FontStyle.Bold);
     this.labelControl49.Appearance.ForeColor = System.Drawing.Color.Teal;
     this.labelControl49.LineColor = System.Drawing.SystemColors.ActiveBorder;
     this.labelControl49.Location = new System.Drawing.Point(2, 177);
     this.labelControl49.Name = "labelControl49";
     this.labelControl49.Size = new System.Drawing.Size(116, 25);
     this.labelControl49.TabIndex = 508;
     this.labelControl49.Text = "Consumo Real";
     //
     // dgv_consumoreal
     //
     this.dgv_consumoreal.AllowUserToAddRows = false;
     dataGridViewCellStyle92.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle92.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle92.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle92.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle92.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle92.SelectionForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle92.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgv_consumoreal.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle92;
     this.dgv_consumoreal.ColumnHeadersHeight = 20;
     this.dgv_consumoreal.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.partepdaid_det,
     this.partepdaname_det,
     this.productid_det,
     this.productname_det,
     this.canthabilitada,
     this.pdaproyectotal,
     this.cantreal,
     this.mermacalculada,
     this.porcenmerma,
     this.consumreal,
     this.umed_det});
     dataGridViewCellStyle100.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle100.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle100.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle100.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle100.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle100.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     dataGridViewCellStyle100.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgv_consumoreal.DefaultCellStyle = dataGridViewCellStyle100;
     this.dgv_consumoreal.EnableHeadersVisualStyles = false;
     this.dgv_consumoreal.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgv_consumoreal.Location = new System.Drawing.Point(0, 204);
     this.dgv_consumoreal.Name = "dgv_consumoreal";
     this.dgv_consumoreal.ReadOnly = true;
     dataGridViewCellStyle101.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle101.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle101.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle101.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle101.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle101.SelectionForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle101.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgv_consumoreal.RowHeadersDefaultCellStyle = dataGridViewCellStyle101;
     this.dgv_consumoreal.RowHeadersVisible = false;
     this.dgv_consumoreal.Size = new System.Drawing.Size(827, 135);
     this.dgv_consumoreal.TabIndex = 434;
     this.dgv_consumoreal.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_consumoreal_CellClick);
     //
     // partepdaid_det
     //
     this.partepdaid_det.DataPropertyName = "partepdaid_det";
     this.partepdaid_det.HeaderText = "partepdaid";
     this.partepdaid_det.Name = "partepdaid_det";
     this.partepdaid_det.ReadOnly = true;
     this.partepdaid_det.Visible = false;
     //
     // partepdaname_det
     //
     this.partepdaname_det.DataPropertyName = "partepdaname_det";
     this.partepdaname_det.HeaderText = "Parte Prenda";
     this.partepdaname_det.Name = "partepdaname_det";
     this.partepdaname_det.ReadOnly = true;
     //
     // productid_det
     //
     this.productid_det.DataPropertyName = "productid_det";
     this.productid_det.HeaderText = "Tela";
     this.productid_det.Name = "productid_det";
     this.productid_det.ReadOnly = true;
     //
     // productname_det
     //
     this.productname_det.DataPropertyName = "productname_det";
     this.productname_det.HeaderText = "Descripción";
     this.productname_det.Name = "productname_det";
     this.productname_det.ReadOnly = true;
     //
     // canthabilitada
     //
     this.canthabilitada.DataPropertyName = "canthabilitada";
     dataGridViewCellStyle93.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.canthabilitada.DefaultCellStyle = dataGridViewCellStyle93;
     this.canthabilitada.HeaderText = "Cant.Habilitada";
     this.canthabilitada.Name = "canthabilitada";
     this.canthabilitada.ReadOnly = true;
     //
     // pdaproyectotal
     //
     this.pdaproyectotal.DataPropertyName = "pdaproyectotal";
     dataGridViewCellStyle94.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.pdaproyectotal.DefaultCellStyle = dataGridViewCellStyle94;
     this.pdaproyectotal.HeaderText = "Pdas.Proyectada";
     this.pdaproyectotal.Name = "pdaproyectotal";
     this.pdaproyectotal.ReadOnly = true;
     //
     // cantreal
     //
     this.cantreal.DataPropertyName = "cantreal";
     dataGridViewCellStyle95.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.cantreal.DefaultCellStyle = dataGridViewCellStyle95;
     this.cantreal.HeaderText = "Pdas.Real";
     this.cantreal.Name = "cantreal";
     this.cantreal.ReadOnly = true;
     //
     // mermacalculada
     //
     this.mermacalculada.DataPropertyName = "mermacalculada";
     dataGridViewCellStyle96.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.mermacalculada.DefaultCellStyle = dataGridViewCellStyle96;
     this.mermacalculada.HeaderText = "Mts.Merma";
     this.mermacalculada.Name = "mermacalculada";
     this.mermacalculada.ReadOnly = true;
     //
     // porcenmerma
     //
     this.porcenmerma.DataPropertyName = "porcenmerma";
     dataGridViewCellStyle97.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.porcenmerma.DefaultCellStyle = dataGridViewCellStyle97;
     this.porcenmerma.HeaderText = "% Merma";
     this.porcenmerma.Name = "porcenmerma";
     this.porcenmerma.ReadOnly = true;
     //
     // consumreal
     //
     this.consumreal.DataPropertyName = "consumreal";
     dataGridViewCellStyle98.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.consumreal.DefaultCellStyle = dataGridViewCellStyle98;
     this.consumreal.HeaderText = "Cant. Real";
     this.consumreal.Name = "consumreal";
     this.consumreal.ReadOnly = true;
     //
     // umed_det
     //
     this.umed_det.DataPropertyName = "umed_det";
     dataGridViewCellStyle99.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.umed_det.DefaultCellStyle = dataGridViewCellStyle99;
     this.umed_det.HeaderText = "UnMed";
     this.umed_det.Name = "umed_det";
     this.umed_det.ReadOnly = true;
     //
     // dgv_calconsumo
     //
     this.dgv_calconsumo.AllowUserToAddRows = false;
     dataGridViewCellStyle102.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle102.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle102.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle102.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle102.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle102.SelectionForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle102.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgv_calconsumo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle102;
     this.dgv_calconsumo.ColumnHeadersHeight = 20;
     this.dgv_calconsumo.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.partepdaid_cpo,
     this.partepdaname_cpo,
     this.productid_cpo,
     this.productname_cpo,
     this.largtizado,
     this.pdasxpano,
     this.numpanos,
     this.porcentolerancia,
     this.consumprompano,
     this.pdatotal,
     this.cantrequerida,
     this.umed_cpo});
     dataGridViewCellStyle111.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle111.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle111.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle111.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle111.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle111.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     dataGridViewCellStyle111.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgv_calconsumo.DefaultCellStyle = dataGridViewCellStyle111;
     this.dgv_calconsumo.EnableHeadersVisualStyles = false;
     this.dgv_calconsumo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgv_calconsumo.Location = new System.Drawing.Point(1, 46);
     this.dgv_calconsumo.Name = "dgv_calconsumo";
     this.dgv_calconsumo.ReadOnly = true;
     dataGridViewCellStyle112.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle112.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle112.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle112.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle112.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle112.SelectionForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle112.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgv_calconsumo.RowHeadersDefaultCellStyle = dataGridViewCellStyle112;
     this.dgv_calconsumo.RowHeadersVisible = false;
     this.dgv_calconsumo.Size = new System.Drawing.Size(827, 123);
     this.dgv_calconsumo.TabIndex = 433;
     this.dgv_calconsumo.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_calconsumo_CellClick);
     this.dgv_calconsumo.KeyUp += new System.Windows.Forms.KeyEventHandler(this.dgv_calconsumo_KeyUp);
     //
     // partepdaid_cpo
     //
     this.partepdaid_cpo.DataPropertyName = "partepdaid_cpo";
     this.partepdaid_cpo.HeaderText = "partepdaid";
     this.partepdaid_cpo.Name = "partepdaid_cpo";
     this.partepdaid_cpo.ReadOnly = true;
     this.partepdaid_cpo.Visible = false;
     //
     // partepdaname_cpo
     //
     this.partepdaname_cpo.DataPropertyName = "partepdaname_cpo";
     this.partepdaname_cpo.HeaderText = "Parte Prenda";
     this.partepdaname_cpo.Name = "partepdaname_cpo";
     this.partepdaname_cpo.ReadOnly = true;
     //
     // productid_cpo
     //
     this.productid_cpo.DataPropertyName = "productid_cpo";
     this.productid_cpo.HeaderText = "Tela";
     this.productid_cpo.Name = "productid_cpo";
     this.productid_cpo.ReadOnly = true;
     //
     // productname_cpo
     //
     this.productname_cpo.DataPropertyName = "productname_cpo";
     this.productname_cpo.HeaderText = "Descripción";
     this.productname_cpo.Name = "productname_cpo";
     this.productname_cpo.ReadOnly = true;
     //
     // largtizado
     //
     this.largtizado.DataPropertyName = "largtizado";
     dataGridViewCellStyle103.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.largtizado.DefaultCellStyle = dataGridViewCellStyle103;
     this.largtizado.HeaderText = "Larg.Tizado";
     this.largtizado.Name = "largtizado";
     this.largtizado.ReadOnly = true;
     this.largtizado.Width = 80;
     //
     // pdasxpano
     //
     this.pdasxpano.DataPropertyName = "pdasxpano";
     dataGridViewCellStyle104.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.pdasxpano.DefaultCellStyle = dataGridViewCellStyle104;
     this.pdasxpano.HeaderText = "Pdas/Paños";
     this.pdasxpano.Name = "pdasxpano";
     this.pdasxpano.ReadOnly = true;
     this.pdasxpano.Width = 80;
     //
     // numpanos
     //
     this.numpanos.DataPropertyName = "numpanos";
     dataGridViewCellStyle105.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.numpanos.DefaultCellStyle = dataGridViewCellStyle105;
     this.numpanos.HeaderText = "N°-Paños";
     this.numpanos.Name = "numpanos";
     this.numpanos.ReadOnly = true;
     this.numpanos.Width = 80;
     //
     // porcentolerancia
     //
     this.porcentolerancia.DataPropertyName = "porcentolerancia";
     dataGridViewCellStyle106.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.porcentolerancia.DefaultCellStyle = dataGridViewCellStyle106;
     this.porcentolerancia.HeaderText = "Tolerancia";
     this.porcentolerancia.Name = "porcentolerancia";
     this.porcentolerancia.ReadOnly = true;
     this.porcentolerancia.Width = 80;
     //
     // consumprompano
     //
     this.consumprompano.DataPropertyName = "consumprompano";
     dataGridViewCellStyle107.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.consumprompano.DefaultCellStyle = dataGridViewCellStyle107;
     this.consumprompano.HeaderText = "Cons.Prom.Und";
     this.consumprompano.Name = "consumprompano";
     this.consumprompano.ReadOnly = true;
     this.consumprompano.Width = 90;
     //
     // pdatotal
     //
     this.pdatotal.DataPropertyName = "pdatotal";
     dataGridViewCellStyle108.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.pdatotal.DefaultCellStyle = dataGridViewCellStyle108;
     this.pdatotal.HeaderText = "Total.Pdas";
     this.pdatotal.Name = "pdatotal";
     this.pdatotal.ReadOnly = true;
     this.pdatotal.Width = 80;
     //
     // cantrequerida
     //
     this.cantrequerida.DataPropertyName = "cantrequerida";
     dataGridViewCellStyle109.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.cantrequerida.DefaultCellStyle = dataGridViewCellStyle109;
     this.cantrequerida.HeaderText = "Cant.Requer";
     this.cantrequerida.Name = "cantrequerida";
     this.cantrequerida.ReadOnly = true;
     this.cantrequerida.Width = 80;
     //
     // umed_cpo
     //
     this.umed_cpo.DataPropertyName = "umed_cpo";
     dataGridViewCellStyle110.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.umed_cpo.DefaultCellStyle = dataGridViewCellStyle110;
     this.umed_cpo.HeaderText = "UnMed";
     this.umed_cpo.Name = "umed_cpo";
     this.umed_cpo.ReadOnly = true;
     this.umed_cpo.Width = 45;
     //
     // pnl_edit2Ma
     //
     this.pnl_edit2Ma.Controls.Add(this.txt_gramaje);
     this.pnl_edit2Ma.Controls.Add(this.txt_ancho);
     this.pnl_edit2Ma.Controls.Add(this.labelControl11);
     this.pnl_edit2Ma.Controls.Add(this.labelControl12);
     this.pnl_edit2Ma.Enabled = false;
     this.pnl_edit2Ma.Location = new System.Drawing.Point(756, 5);
     this.pnl_edit2Ma.Name = "pnl_edit2Ma";
     this.pnl_edit2Ma.Size = new System.Drawing.Size(120, 49);
     this.pnl_edit2Ma.TabIndex = 452;
     //
     // txt_gramaje
     //
     this.txt_gramaje.Location = new System.Drawing.Point(62, 23);
     this.txt_gramaje.MaxLength = 10;
     this.txt_gramaje.Name = "txt_gramaje";
     this.txt_gramaje.Size = new System.Drawing.Size(52, 21);
     this.txt_gramaje.TabIndex = 332;
     //
     // txt_ancho
     //
     this.txt_ancho.Location = new System.Drawing.Point(5, 23);
     this.txt_ancho.MaxLength = 10;
     this.txt_ancho.Name = "txt_ancho";
     this.txt_ancho.Size = new System.Drawing.Size(53, 21);
     this.txt_ancho.TabIndex = 331;
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(7, 6);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(30, 13);
     this.labelControl11.TabIndex = 328;
     this.labelControl11.Text = "Ancho";
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(64, 6);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(40, 13);
     this.labelControl12.TabIndex = 330;
     this.labelControl12.Text = "Gramaje";
     //
     // txt_serop04
     //
     this.txt_serop04.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.txt_serop04.Appearance.ForeColor = System.Drawing.Color.Red;
     this.txt_serop04.Location = new System.Drawing.Point(45, 22);
     this.txt_serop04.Name = "txt_serop04";
     this.txt_serop04.Size = new System.Drawing.Size(33, 16);
     this.txt_serop04.TabIndex = 451;
     this.txt_serop04.Text = "____";
     //
     // txt_tipop04
     //
     this.txt_tipop04.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.txt_tipop04.Appearance.ForeColor = System.Drawing.Color.Red;
     this.txt_tipop04.Location = new System.Drawing.Point(18, 22);
     this.txt_tipop04.Name = "txt_tipop04";
     this.txt_tipop04.Size = new System.Drawing.Size(17, 16);
     this.txt_tipop04.TabIndex = 450;
     this.txt_tipop04.Text = "__";
     //
     // txt_numop04
     //
     this.txt_numop04.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.txt_numop04.Appearance.ForeColor = System.Drawing.Color.Red;
     this.txt_numop04.Location = new System.Drawing.Point(85, 22);
     this.txt_numop04.Name = "txt_numop04";
     this.txt_numop04.Size = new System.Drawing.Size(81, 16);
     this.txt_numop04.TabIndex = 449;
     this.txt_numop04.Text = "__________";
     //
     // pnl_editMa
     //
     this.pnl_editMa.Controls.Add(this.btn_actualizar);
     this.pnl_editMa.Controls.Add(this.productidtela);
     this.pnl_editMa.Controls.Add(this.cmb_partepda);
     this.pnl_editMa.Controls.Add(this.labelControl34);
     this.pnl_editMa.Controls.Add(this.productnametela);
     this.pnl_editMa.Controls.Add(this.labelControl9);
     this.pnl_editMa.Controls.Add(this.labelControl8);
     this.pnl_editMa.Enabled = false;
     this.pnl_editMa.Location = new System.Drawing.Point(172, 5);
     this.pnl_editMa.Name = "pnl_editMa";
     this.pnl_editMa.Size = new System.Drawing.Size(582, 49);
     this.pnl_editMa.TabIndex = 448;
     //
     // btn_actualizar
     //
     this.btn_actualizar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_actualizar.Image = ((System.Drawing.Image)(resources.GetObject("btn_actualizar.Image")));
     this.btn_actualizar.Location = new System.Drawing.Point(140, 20);
     this.btn_actualizar.Name = "btn_actualizar";
     this.btn_actualizar.Size = new System.Drawing.Size(24, 23);
     this.btn_actualizar.TabIndex = 454;
     this.btn_actualizar.Text = "Nuevo";
     this.btn_actualizar.ToolTip = "Actualizar Parte Prenda";
     this.btn_actualizar.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_actualizar.Click += new System.EventHandler(this.btn_actualizar_Click);
     //
     // productidtela
     //
     this.productidtela.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.productidtela.Location = new System.Drawing.Point(165, 22);
     this.productidtela.MaxLength = 13;
     this.productidtela.Name = "productidtela";
     this.productidtela.Size = new System.Drawing.Size(105, 20);
     this.productidtela.TabIndex = 333;
     this.productidtela.KeyDown += new System.Windows.Forms.KeyEventHandler(this.productidtela_KeyDown);
     //
     // cmb_partepda
     //
     this.cmb_partepda.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_partepda.FormattingEnabled = true;
     this.cmb_partepda.Location = new System.Drawing.Point(10, 20);
     this.cmb_partepda.Name = "cmb_partepda";
     this.cmb_partepda.Size = new System.Drawing.Size(129, 21);
     this.cmb_partepda.TabIndex = 320;
     //
     // labelControl34
     //
     this.labelControl34.Location = new System.Drawing.Point(10, 6);
     this.labelControl34.Name = "labelControl34";
     this.labelControl34.Size = new System.Drawing.Size(63, 13);
     this.labelControl34.TabIndex = 322;
     this.labelControl34.Text = "Parte Prenda";
     //
     // productnametela
     //
     this.productnametela.Enabled = false;
     this.productnametela.Location = new System.Drawing.Point(272, 22);
     this.productnametela.MaxLength = 10;
     this.productnametela.Name = "productnametela";
     this.productnametela.Size = new System.Drawing.Size(305, 21);
     this.productnametela.TabIndex = 325;
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(167, 5);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(56, 13);
     this.labelControl9.TabIndex = 323;
     this.labelControl9.Text = "Codigo Tela";
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(276, 5);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(60, 13);
     this.labelControl8.TabIndex = 326;
     this.labelControl8.Text = "Nombre Tela";
     //
     // btn_newMa
     //
     this.btn_newMa.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_newMa.Image = ((System.Drawing.Image)(resources.GetObject("btn_newMa.Image")));
     this.btn_newMa.Location = new System.Drawing.Point(564, 68);
     this.btn_newMa.Name = "btn_newMa";
     this.btn_newMa.Size = new System.Drawing.Size(59, 23);
     this.btn_newMa.TabIndex = 447;
     this.btn_newMa.Text = "Nuevo";
     this.btn_newMa.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_newMa.Click += new System.EventHandler(this.btn_newMa_Click);
     //
     // btn_saveMa
     //
     this.btn_saveMa.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_saveMa.Enabled = false;
     this.btn_saveMa.Image = ((System.Drawing.Image)(resources.GetObject("btn_saveMa.Image")));
     this.btn_saveMa.Location = new System.Drawing.Point(686, 68);
     this.btn_saveMa.Name = "btn_saveMa";
     this.btn_saveMa.Size = new System.Drawing.Size(59, 23);
     this.btn_saveMa.TabIndex = 446;
     this.btn_saveMa.Text = "Grabar";
     this.btn_saveMa.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_saveMa.Click += new System.EventHandler(this.btn_saveMa_Click);
     //
     // line2
     //
     this.line2.Location = new System.Drawing.Point(8, 56);
     this.line2.Name = "line2";
     this.line2.Size = new System.Drawing.Size(862, 15);
     this.line2.TabIndex = 444;
     this.line2.Text = "line2";
     //
     // labelControl45
     //
     this.labelControl45.Location = new System.Drawing.Point(45, 7);
     this.labelControl45.Name = "labelControl45";
     this.labelControl45.Size = new System.Drawing.Size(30, 13);
     this.labelControl45.TabIndex = 443;
     this.labelControl45.Text = "SerOp";
     //
     // labelControl46
     //
     this.labelControl46.Location = new System.Drawing.Point(85, 7);
     this.labelControl46.Name = "labelControl46";
     this.labelControl46.Size = new System.Drawing.Size(35, 13);
     this.labelControl46.TabIndex = 441;
     this.labelControl46.Text = "NumOp";
     //
     // labelControl47
     //
     this.labelControl47.Location = new System.Drawing.Point(13, 7);
     this.labelControl47.Name = "labelControl47";
     this.labelControl47.Size = new System.Drawing.Size(28, 13);
     this.labelControl47.TabIndex = 440;
     this.labelControl47.Text = "TipOp";
     //
     // btn_cancelMa
     //
     this.btn_cancelMa.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_cancelMa.Enabled = false;
     this.btn_cancelMa.Image = ((System.Drawing.Image)(resources.GetObject("btn_cancelMa.Image")));
     this.btn_cancelMa.Location = new System.Drawing.Point(747, 68);
     this.btn_cancelMa.Name = "btn_cancelMa";
     this.btn_cancelMa.Size = new System.Drawing.Size(59, 23);
     this.btn_cancelMa.TabIndex = 437;
     this.btn_cancelMa.Text = "Cancel";
     this.btn_cancelMa.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_cancelMa.Click += new System.EventHandler(this.btn_cancelMa_Click);
     //
     // btn_deleteMa
     //
     this.btn_deleteMa.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_deleteMa.Enabled = false;
     this.btn_deleteMa.Image = ((System.Drawing.Image)(resources.GetObject("btn_deleteMa.Image")));
     this.btn_deleteMa.Location = new System.Drawing.Point(812, 68);
     this.btn_deleteMa.Name = "btn_deleteMa";
     this.btn_deleteMa.Size = new System.Drawing.Size(59, 23);
     this.btn_deleteMa.TabIndex = 436;
     this.btn_deleteMa.Text = "Borrar";
     this.btn_deleteMa.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_deleteMa.Click += new System.EventHandler(this.btn_deleteMa_Click);
     //
     // btn_editMa
     //
     this.btn_editMa.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_editMa.Enabled = false;
     this.btn_editMa.Image = ((System.Drawing.Image)(resources.GetObject("btn_editMa.Image")));
     this.btn_editMa.Location = new System.Drawing.Point(625, 68);
     this.btn_editMa.Name = "btn_editMa";
     this.btn_editMa.Size = new System.Drawing.Size(59, 23);
     this.btn_editMa.TabIndex = 434;
     this.btn_editMa.Text = "Editar";
     this.btn_editMa.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_editMa.Click += new System.EventHandler(this.btn_editMa_Click);
     //
     // dgv_ordenprodtela
     //
     this.dgv_ordenprodtela.AllowUserToAddRows = false;
     dataGridViewCellStyle57.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle57.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle57.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle57.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle57.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle57.SelectionForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle57.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgv_ordenprodtela.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle57;
     this.dgv_ordenprodtela.ColumnHeadersHeight = 20;
     this.dgv_ordenprodtela.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.partepdaid,
     this.partepdaname,
     this.productid,
     this.productname,
     this.xcolorname,
     this.ancho,
     this.gramaje});
     dataGridViewCellStyle58.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle58.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle58.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle58.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle58.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle58.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     dataGridViewCellStyle58.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgv_ordenprodtela.DefaultCellStyle = dataGridViewCellStyle58;
     this.dgv_ordenprodtela.EnableHeadersVisualStyles = false;
     this.dgv_ordenprodtela.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgv_ordenprodtela.Location = new System.Drawing.Point(9, 97);
     this.dgv_ordenprodtela.Name = "dgv_ordenprodtela";
     this.dgv_ordenprodtela.ReadOnly = true;
     dataGridViewCellStyle59.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle59.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle59.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle59.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle59.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle59.SelectionForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle59.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgv_ordenprodtela.RowHeadersDefaultCellStyle = dataGridViewCellStyle59;
     this.dgv_ordenprodtela.RowHeadersVisible = false;
     this.dgv_ordenprodtela.Size = new System.Drawing.Size(826, 135);
     this.dgv_ordenprodtela.TabIndex = 432;
     this.dgv_ordenprodtela.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_ordenprodtela_CellClick);
     this.dgv_ordenprodtela.KeyUp += new System.Windows.Forms.KeyEventHandler(this.dgv_ordenprodtela_KeyUp);
     //
     // partepdaid
     //
     this.partepdaid.DataPropertyName = "partepdaid";
     this.partepdaid.HeaderText = "partepdaid";
     this.partepdaid.Name = "partepdaid";
     this.partepdaid.ReadOnly = true;
     this.partepdaid.Visible = false;
     //
     // partepdaname
     //
     this.partepdaname.DataPropertyName = "partepdaname";
     this.partepdaname.HeaderText = "Parte Prenda";
     this.partepdaname.Name = "partepdaname";
     this.partepdaname.ReadOnly = true;
     //
     // productid
     //
     this.productid.DataPropertyName = "productid";
     this.productid.HeaderText = "Tela";
     this.productid.Name = "productid";
     this.productid.ReadOnly = true;
     //
     // productname
     //
     this.productname.DataPropertyName = "productname";
     this.productname.HeaderText = "Descripción";
     this.productname.Name = "productname";
     this.productname.ReadOnly = true;
     this.productname.Width = 320;
     //
     // xcolorname
     //
     this.xcolorname.DataPropertyName = "colorname";
     this.xcolorname.HeaderText = "Color";
     this.xcolorname.Name = "xcolorname";
     this.xcolorname.ReadOnly = true;
     //
     // ancho
     //
     this.ancho.DataPropertyName = "ancho";
     this.ancho.HeaderText = "Ancho";
     this.ancho.Name = "ancho";
     this.ancho.ReadOnly = true;
     //
     // gramaje
     //
     this.gramaje.DataPropertyName = "gramaje";
     this.gramaje.HeaderText = "Gramaje";
     this.gramaje.Name = "gramaje";
     this.gramaje.ReadOnly = true;
     //
     // simpleButton6
     //
     this.simpleButton6.Cursor = System.Windows.Forms.Cursors.Hand;
     this.simpleButton6.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton6.Image")));
     this.simpleButton6.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton6.Location = new System.Drawing.Point(773, 183);
     this.simpleButton6.Name = "simpleButton6";
     this.simpleButton6.Size = new System.Drawing.Size(45, 23);
     this.simpleButton6.TabIndex = 430;
     this.simpleButton6.Text = "Add";
     this.simpleButton6.ToolTip = "Adicionar";
     this.simpleButton6.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.simpleButton6.Visible = false;
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(10, 13);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(19, 13);
     this.labelControl6.TabIndex = 408;
     this.labelControl6.Text = "Año";
     //
     // chk_estado01
     //
     this.chk_estado01.Cursor = System.Windows.Forms.Cursors.Hand;
     this.chk_estado01.Location = new System.Drawing.Point(11, 141);
     this.chk_estado01.Name = "chk_estado01";
     this.chk_estado01.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.5F);
     this.chk_estado01.Properties.Appearance.Options.UseFont = true;
     this.chk_estado01.Properties.Caption = "Estado";
     this.chk_estado01.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.chk_estado01.Size = new System.Drawing.Size(56, 19);
     this.chk_estado01.TabIndex = 407;
     this.chk_estado01.CheckedChanged += new System.EventHandler(this.chk_estado01_CheckedChanged);
     //
     // chk_linea01
     //
     this.chk_linea01.Cursor = System.Windows.Forms.Cursors.Hand;
     this.chk_linea01.Location = new System.Drawing.Point(10, 95);
     this.chk_linea01.Name = "chk_linea01";
     this.chk_linea01.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.5F);
     this.chk_linea01.Properties.Appearance.Options.UseFont = true;
     this.chk_linea01.Properties.Caption = "Linea";
     this.chk_linea01.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.chk_linea01.Size = new System.Drawing.Size(50, 19);
     this.chk_linea01.TabIndex = 406;
     this.chk_linea01.CheckedChanged += new System.EventHandler(this.chk_linea01_CheckedChanged);
     //
     // chk_marca01
     //
     this.chk_marca01.Cursor = System.Windows.Forms.Cursors.Hand;
     this.chk_marca01.Location = new System.Drawing.Point(9, 52);
     this.chk_marca01.Name = "chk_marca01";
     this.chk_marca01.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.5F);
     this.chk_marca01.Properties.Appearance.Options.UseFont = true;
     this.chk_marca01.Properties.Caption = "Marca";
     this.chk_marca01.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.chk_marca01.Size = new System.Drawing.Size(55, 19);
     this.chk_marca01.TabIndex = 405;
     this.chk_marca01.CheckedChanged += new System.EventHandler(this.chk_marca01_CheckedChanged);
     //
     // cmb_linea01
     //
     this.cmb_linea01.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_linea01.Enabled = false;
     this.cmb_linea01.FormattingEnabled = true;
     this.cmb_linea01.Location = new System.Drawing.Point(7, 117);
     this.cmb_linea01.Name = "cmb_linea01";
     this.cmb_linea01.Size = new System.Drawing.Size(107, 21);
     this.cmb_linea01.TabIndex = 401;
     this.cmb_linea01.SelectedIndexChanged += new System.EventHandler(this.cmb_linea01_SelectedIndexChanged);
     //
     // cmb_marca01
     //
     this.cmb_marca01.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_marca01.Enabled = false;
     this.cmb_marca01.FormattingEnabled = true;
     this.cmb_marca01.Location = new System.Drawing.Point(7, 74);
     this.cmb_marca01.Name = "cmb_marca01";
     this.cmb_marca01.Size = new System.Drawing.Size(107, 21);
     this.cmb_marca01.TabIndex = 400;
     this.cmb_marca01.SelectedIndexChanged += new System.EventHandler(this.cmb_marca01_SelectedIndexChanged);
     //
     // cmb_estado01
     //
     this.cmb_estado01.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_estado01.Enabled = false;
     this.cmb_estado01.FormattingEnabled = true;
     this.cmb_estado01.Location = new System.Drawing.Point(10, 163);
     this.cmb_estado01.Name = "cmb_estado01";
     this.cmb_estado01.Size = new System.Drawing.Size(93, 21);
     this.cmb_estado01.TabIndex = 217;
     this.cmb_estado01.SelectedIndexChanged += new System.EventHandler(this.cmb_estado01_SelectedIndexChanged);
     //
     // lblbusqueda
     //
     this.lblbusqueda.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.lblbusqueda.Location = new System.Drawing.Point(622, 9);
     this.lblbusqueda.Name = "lblbusqueda";
     this.lblbusqueda.Size = new System.Drawing.Size(51, 13);
     this.lblbusqueda.TabIndex = 210;
     this.lblbusqueda.Text = "Busqueda:";
     //
     // txt_articname01
     //
     this.txt_articname01.BackColor = System.Drawing.Color.Yellow;
     this.txt_articname01.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_articname01.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_articname01.Font = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Bold);
     this.txt_articname01.ForeColor = System.Drawing.Color.Black;
     this.txt_articname01.Location = new System.Drawing.Point(676, 6);
     this.txt_articname01.MaxLength = 10;
     this.txt_articname01.Name = "txt_articname01";
     this.txt_articname01.Size = new System.Drawing.Size(210, 19);
     this.txt_articname01.TabIndex = 208;
     this.txt_articname01.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_articname01_KeyUp);
     this.txt_articname01.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txt_articname01_MouseDown);
     //
     // cmb_anio01
     //
     this.cmb_anio01.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_anio01.Enabled = false;
     this.cmb_anio01.FormattingEnabled = true;
     this.cmb_anio01.Location = new System.Drawing.Point(7, 31);
     this.cmb_anio01.Name = "cmb_anio01";
     this.cmb_anio01.Size = new System.Drawing.Size(47, 21);
     this.cmb_anio01.TabIndex = 201;
     //
     // panelControl3
     //
     this.panelControl3.Controls.Add(this.txt_numop01);
     this.panelControl3.Controls.Add(this.labelControl7);
     this.panelControl3.Controls.Add(this.cmb_anio01);
     this.panelControl3.Controls.Add(this.cmb_serie01);
     this.panelControl3.Controls.Add(this.cmb_estado01);
     this.panelControl3.Controls.Add(this.chk_estado01);
     this.panelControl3.Controls.Add(this.chk_serie01);
     this.panelControl3.Controls.Add(this.labelControl6);
     this.panelControl3.Controls.Add(this.chk_linea01);
     this.panelControl3.Controls.Add(this.cmb_marca01);
     this.panelControl3.Controls.Add(this.cmb_linea01);
     this.panelControl3.Controls.Add(this.chk_marca01);
     this.panelControl3.Location = new System.Drawing.Point(900, 55);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(214, 189);
     this.panelControl3.TabIndex = 415;
     this.panelControl3.Visible = false;
     //
     // txt_numop01
     //
     this.txt_numop01.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_numop01.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.txt_numop01.Location = new System.Drawing.Point(116, 29);
     this.txt_numop01.Name = "txt_numop01";
     this.txt_numop01.Size = new System.Drawing.Size(90, 22);
     this.txt_numop01.TabIndex = 409;
     this.txt_numop01.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_numop01_KeyDown);
     this.txt_numop01.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txt_numop01_MouseDown);
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(120, 13);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(37, 13);
     this.labelControl7.TabIndex = 410;
     this.labelControl7.Text = "Número";
     //
     // cmb_serie01
     //
     this.cmb_serie01.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_serie01.Enabled = false;
     this.cmb_serie01.FormattingEnabled = true;
     this.cmb_serie01.Location = new System.Drawing.Point(58, 31);
     this.cmb_serie01.Name = "cmb_serie01";
     this.cmb_serie01.Size = new System.Drawing.Size(52, 21);
     this.cmb_serie01.TabIndex = 204;
     this.cmb_serie01.SelectedIndexChanged += new System.EventHandler(this.cmb_serie01_SelectedIndexChanged);
     //
     // chk_serie01
     //
     this.chk_serie01.Cursor = System.Windows.Forms.Cursors.Hand;
     this.chk_serie01.Location = new System.Drawing.Point(64, 7);
     this.chk_serie01.Name = "chk_serie01";
     this.chk_serie01.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.5F);
     this.chk_serie01.Properties.Appearance.Options.UseFont = true;
     this.chk_serie01.Properties.Caption = "Serie";
     this.chk_serie01.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.chk_serie01.Size = new System.Drawing.Size(50, 19);
     this.chk_serie01.TabIndex = 403;
     this.chk_serie01.CheckedChanged += new System.EventHandler(this.chk_serie01_CheckedChanged);
     //
     // styleManager2
     //
     this.styleManager2.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007VistaGlass;
     this.styleManager2.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(87)))), ((int)(((byte)(154))))));
     //
     // Frm_orden_produccion
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(890, 560);
     this.Controls.Add(this.panelControl3);
     this.Controls.Add(this.lblbusqueda);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.txt_articname01);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_orden_produccion";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "» Frm_Orden de Producción";
     this.Load += new System.EventHandler(this.Frm_orden_produccion_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_orden_produccion_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.tab_01.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_ordenproduccion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_ordenproduccion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit6)).EndInit();
     this.tab_02.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.panelControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco12.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco11.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco10.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco09.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco08.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco07.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco06.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco05.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco04.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco03.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco02.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_taco01.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
     this.panelControl5.ResumeLayout(false);
     this.panelControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_ordenprodcolor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_grilla)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechfin.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechfin.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechini.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechini.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechemi.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechemi.Properties)).EndInit();
     this.tab_03.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_edit2)).EndInit();
     this.pnl_edit2.ResumeLayout(false);
     this.pnl_edit2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechentrega03.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechentrega03.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechini03.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechini03.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_edit)).EndInit();
     this.pnl_edit.ResumeLayout(false);
     this.pnl_edit.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txt_secuencia)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_ordenprodfase)).EndInit();
     this.tab_04.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
     this.panelControl6.ResumeLayout(false);
     this.panelControl6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txt_ltizado.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_tolerancia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_numpanos.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_prendpanos.Properties)).EndInit();
     this.xtraScrollableControl1.ResumeLayout(false);
     this.xtraScrollableControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_consumoreal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_calconsumo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_edit2Ma)).EndInit();
     this.pnl_edit2Ma.ResumeLayout(false);
     this.pnl_edit2Ma.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_editMa)).EndInit();
     this.pnl_editMa.ResumeLayout(false);
     this.pnl_editMa.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_ordenprodtela)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_estado01.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_linea01.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_marca01.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.panelControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_serie01.Properties)).EndInit();
     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();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Tipo_Membresia));
     this.dataGridViewX1 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.superValidator1 = new DevComponents.DotNetBar.Validator.SuperValidator();
     this.requiredFieldValidator1 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Campo requerido");
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.highlighter1 = new DevComponents.DotNetBar.Validator.Highlighter();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // dataGridViewX1
     //
     this.dataGridViewX1.AllowUserToAddRows = false;
     this.dataGridViewX1.AllowUserToDeleteRows = false;
     this.dataGridViewX1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridViewX1.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewX1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.White;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewX1.DefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridViewX1.EnableHeadersVisualStyles = false;
     this.dataGridViewX1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
     this.dataGridViewX1.Location = new System.Drawing.Point(31, 203);
     this.dataGridViewX1.MultiSelect = false;
     this.dataGridViewX1.Name = "dataGridViewX1";
     this.dataGridViewX1.ReadOnly = true;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewX1.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.dataGridViewX1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridViewX1.Size = new System.Drawing.Size(431, 150);
     this.dataGridViewX1.TabIndex = 14;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(37, 95);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 23);
     this.labelX2.TabIndex = 13;
     this.labelX2.Text = "Descripcion :";
     //
     // textBoxX2
     //
     this.textBoxX2.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.textBoxX2.Border.Class = "TextBoxBorder";
     this.textBoxX2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX2.ForeColor = System.Drawing.Color.Black;
     this.textBoxX2.Location = new System.Drawing.Point(118, 94);
     this.textBoxX2.MaxLength = 3000;
     this.textBoxX2.Multiline = true;
     this.textBoxX2.Name = "textBoxX2";
     this.textBoxX2.ReadOnly = true;
     this.textBoxX2.Size = new System.Drawing.Size(271, 91);
     this.textBoxX2.TabIndex = 12;
     //
     // textBoxX1
     //
     this.textBoxX1.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.textBoxX1.Border.Class = "TextBoxBorder";
     this.textBoxX1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX1.ForeColor = System.Drawing.Color.Black;
     this.textBoxX1.Location = new System.Drawing.Point(118, 68);
     this.textBoxX1.MaxLength = 50;
     this.textBoxX1.Name = "textBoxX1";
     this.textBoxX1.ReadOnly = true;
     this.textBoxX1.Size = new System.Drawing.Size(141, 20);
     this.textBoxX1.TabIndex = 11;
     this.superValidator1.SetValidator1(this.textBoxX1, this.requiredFieldValidator1);
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(37, 65);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
     this.labelX1.TabIndex = 10;
     this.labelX1.Text = "Nombre :";
     //
     // superValidator1
     //
     this.superValidator1.ContainerControl = this;
     this.superValidator1.ErrorProvider = this.errorProvider1;
     this.superValidator1.Highlighter = this.highlighter1;
     //
     // requiredFieldValidator1
     //
     this.requiredFieldValidator1.ErrorMessage = "Campo requerido";
     this.requiredFieldValidator1.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // highlighter1
     //
     this.highlighter1.ContainerControl = this;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX3.Location = new System.Drawing.Point(162, 23);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(189, 23);
     this.labelX3.TabIndex = 15;
     this.labelX3.Text = "TIPOS DE MEMBRESIA";
     //
     // Tipo_Membresia
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.dataGridViewX1);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.textBoxX2);
     this.Controls.Add(this.textBoxX1);
     this.Controls.Add(this.labelX1);
     this.Name = "Tipo_Membresia";
     this.Size = new System.Drawing.Size(497, 380);
     this.Load += new System.EventHandler(this.Tipo_Membresia_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
示例#36
0
 /// <summary>
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器
 /// 修改這個方法的內容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
     this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
     this.btnTeacherAutoSchedule = new DevComponents.DotNetBar.ButtonItem();
     this.btnTeacherLock = new DevComponents.DotNetBar.ButtonItem();
     this.btnTeacherUnlock = new DevComponents.DotNetBar.ButtonItem();
     this.btnTeacherFree = new DevComponents.DotNetBar.ButtonItem();
     this.btnTeacherProperty = new DevComponents.DotNetBar.ButtonItem();
     this.btnTeacherPrint = new DevComponents.DotNetBar.ButtonItem();
     this.btnTeacherBusy = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanel2 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar3 = new DevComponents.DotNetBar.RibbonBar();
     this.btnClassAutoSchedule = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassLock = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassUnLock = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassFree = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassProperty = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassPrint = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassBusy = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanel3 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar4 = new DevComponents.DotNetBar.RibbonBar();
     this.btnClassroomAutoSchedule = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassroomLock = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassroomUnLock = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassroomFree = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassroomProperty = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassroomPrint = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassroomBusy = new DevComponents.DotNetBar.ButtonItem();
     this.office2007StartButton1 = new DevComponents.DotNetBar.Office2007StartButton();
     this.itemContainer1 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer2 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer3 = new DevComponents.DotNetBar.ItemContainer();
     this.btnOpen = new DevComponents.DotNetBar.ButtonItem();
     this.btnSave = new DevComponents.DotNetBar.ButtonItem();
     this.btnSaveAs = new DevComponents.DotNetBar.ButtonItem();
     this.btnDownload = new DevComponents.DotNetBar.ButtonItem();
     this.btnUpload = new DevComponents.DotNetBar.ButtonItem();
     this.btnClose = new DevComponents.DotNetBar.ButtonItem();
     this.btnExit = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonTabTeacher = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribbonTabClass = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribbonTabClassroom = new DevComponents.DotNetBar.RibbonTabItem();
     this.btnUndo = new DevComponents.DotNetBar.ButtonItem();
     this.btnRedo = new DevComponents.DotNetBar.ButtonItem();
     this.qatCustomizeItem1 = new DevComponents.DotNetBar.QatCustomizeItem();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.lblMemoryUsage = new DevComponents.DotNetBar.LabelX();
     this.progressBarX1 = new DevComponents.DotNetBar.Controls.ProgressBarX();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.panel4 = new System.Windows.Forms.Panel();
     this.tabContent = new DevComponents.DotNetBar.SuperTabControl();
     this.superTabControlPanel1 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.pnlWhoList = new System.Windows.Forms.Panel();
     this.grdTeacherEvent = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.colLock = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colSolutionCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWeekDay = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colPeriodNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colCourseName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colLength = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWhoName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWhomName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWhereName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWhatName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWhatAliasName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colCourseGroup = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWeekDayCondition = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colPeriodCondition = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colAllowLongBreak = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colAllowDuplicate = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colLimitNextDay = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWeekFlag = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colPriority = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colTimeTable = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colColorIndex = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEventID = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel5 = new System.Windows.Forms.Panel();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.lblTeacher = new DevComponents.DotNetBar.LabelX();
     this.btnTeacherEventExpand = new DevComponents.DotNetBar.ButtonX();
     this.splTeacher = new DevComponents.DotNetBar.ExpandableSplitter();
     this.pnlWhoLPView = new System.Windows.Forms.Panel();
     this.tabTeacherLPView = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabTeacher = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel2 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.splClass = new DevComponents.DotNetBar.ExpandableSplitter();
     this.pnlWhomLPView = new System.Windows.Forms.Panel();
     this.tabClassLPView = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabItem3 = new DevComponents.DotNetBar.TabItem(this.components);
     this.pnlWhomList = new System.Windows.Forms.Panel();
     this.panel10 = new System.Windows.Forms.Panel();
     this.grdClassEvent = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.dataGridViewTextBoxColumn69 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn70 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn71 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn72 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn78 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn80 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn73 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn74 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn75 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn76 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn77 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn79 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn81 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn82 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn83 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn84 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn85 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn86 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn87 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn88 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn89 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn90 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel3 = new System.Windows.Forms.Panel();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.lblClass = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.btnClassEventExpand = new DevComponents.DotNetBar.ButtonX();
     this.tabClass = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel3 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.pnlWhereList = new System.Windows.Forms.Panel();
     this.panel9 = new System.Windows.Forms.Panel();
     this.grdClassroomEvent = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.dataGridViewTextBoxColumn91 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn92 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn93 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn94 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn100 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn102 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn95 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn96 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn97 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn98 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn99 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn101 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn103 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn104 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn105 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn106 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn107 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn108 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn109 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn110 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn111 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn112 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel6 = new System.Windows.Forms.Panel();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.lblClassroom = new DevComponents.DotNetBar.LabelX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.btnClassroomEventExpand = new DevComponents.DotNetBar.ButtonX();
     this.splClassroom = new DevComponents.DotNetBar.ExpandableSplitter();
     this.pnlWhereLPView = new System.Windows.Forms.Panel();
     this.tabClassroomLPView = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabItem4 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabClassroom = new DevComponents.DotNetBar.SuperTabItem();
     this.expandableSplitter1 = new DevComponents.DotNetBar.ExpandableSplitter();
     this.LeftNavigationPanel = new DevComponents.DotNetBar.NavigationPane();
     this.pnlClassroom = new DevComponents.DotNetBar.NavigationPanePanel();
     this.btnClassroom = new DevComponents.DotNetBar.ButtonItem();
     this.pnlClass = new DevComponents.DotNetBar.NavigationPanePanel();
     this.btnClass = new DevComponents.DotNetBar.ButtonItem();
     this.pnlTeacher = new DevComponents.DotNetBar.NavigationPanePanel();
     this.btnTeacher = new DevComponents.DotNetBar.ButtonItem();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.panel7 = new System.Windows.Forms.Panel();
     this.buttonX2 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.panel8 = new System.Windows.Forms.Panel();
     this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn40 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn41 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn42 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn43 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn44 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn45 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn46 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn47 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn48 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn49 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn50 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn51 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn52 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn53 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn54 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn55 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn56 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn57 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn58 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn59 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn60 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn61 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn62 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn63 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn64 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn65 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn66 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn67 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn68 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ribbonControl1.SuspendLayout();
     this.ribbonPanel1.SuspendLayout();
     this.ribbonPanel2.SuspendLayout();
     this.ribbonPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.bar1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabContent)).BeginInit();
     this.tabContent.SuspendLayout();
     this.superTabControlPanel1.SuspendLayout();
     this.pnlWhoList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdTeacherEvent)).BeginInit();
     this.panel5.SuspendLayout();
     this.pnlWhoLPView.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabTeacherLPView)).BeginInit();
     this.tabTeacherLPView.SuspendLayout();
     this.superTabControlPanel2.SuspendLayout();
     this.pnlWhomLPView.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabClassLPView)).BeginInit();
     this.tabClassLPView.SuspendLayout();
     this.pnlWhomList.SuspendLayout();
     this.panel10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdClassEvent)).BeginInit();
     this.panel3.SuspendLayout();
     this.superTabControlPanel3.SuspendLayout();
     this.pnlWhereList.SuspendLayout();
     this.panel9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdClassroomEvent)).BeginInit();
     this.panel6.SuspendLayout();
     this.pnlWhereLPView.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabClassroomLPView)).BeginInit();
     this.tabClassroomLPView.SuspendLayout();
     this.LeftNavigationPanel.SuspendLayout();
     this.panel7.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonBar1
     //
     this.ribbonBar1.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar1.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar1.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.BackgroundStyle.Class = "";
     this.ribbonBar1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar1.ContainerControlProcessDialogKey = true;
     this.ribbonBar1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.ribbonBar1.Location = new System.Drawing.Point(190, 77);
     this.ribbonBar1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.ribbonBar1.Name = "ribbonBar1";
     this.ribbonBar1.Size = new System.Drawing.Size(87, 31);
     this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar1.TabIndex = 0;
     this.ribbonBar1.Text = "ribbonBar1";
     //
     //
     //
     this.ribbonBar1.TitleStyle.Class = "";
     this.ribbonBar1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.TitleStyleMouseOver.Class = "";
     this.ribbonBar1.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // ribbonControl1
     //
     //
     //
     //
     this.ribbonControl1.BackgroundStyle.Class = "";
     this.ribbonControl1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonControl1.CaptionVisible = true;
     this.ribbonControl1.Controls.Add(this.ribbonPanel1);
     this.ribbonControl1.Controls.Add(this.ribbonPanel3);
     this.ribbonControl1.Controls.Add(this.ribbonPanel2);
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.office2007StartButton1,
     this.ribbonTabTeacher,
     this.ribbonTabClass,
     this.ribbonTabClassroom});
     this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl1.Location = new System.Drawing.Point(5, 1);
     this.ribbonControl1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 3);
     this.ribbonControl1.QuickToolbarItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnUndo,
     this.btnRedo,
     this.qatCustomizeItem1});
     this.ribbonControl1.Size = new System.Drawing.Size(948, 140);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonControl1.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.ribbonControl1.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.ribbonControl1.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.ribbonControl1.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.ribbonControl1.SystemText.QatDialogAddButton = "&Add >>";
     this.ribbonControl1.SystemText.QatDialogCancelButton = "Cancel";
     this.ribbonControl1.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.ribbonControl1.SystemText.QatDialogOkButton = "OK";
     this.ribbonControl1.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatDialogRemoveButton = "&Remove";
     this.ribbonControl1.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.ribbonControl1.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex = 1;
     this.ribbonControl1.Text = "ribbonControl1";
     this.ribbonControl1.TitleText = "ischedule";
     //
     // ribbonPanel1
     //
     this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel1.Controls.Add(this.ribbonBar2);
     this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel1.Location = new System.Drawing.Point(0, 55);
     this.ribbonPanel1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.ribbonPanel1.Name = "ribbonPanel1";
     this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 4);
     this.ribbonPanel1.Size = new System.Drawing.Size(948, 82);
     //
     //
     //
     this.ribbonPanel1.Style.Class = "";
     this.ribbonPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel1.StyleMouseDown.Class = "";
     this.ribbonPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel1.StyleMouseOver.Class = "";
     this.ribbonPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel1.TabIndex = 1;
     //
     // ribbonBar2
     //
     this.ribbonBar2.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar2.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar2.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.BackgroundStyle.Class = "";
     this.ribbonBar2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar2.ContainerControlProcessDialogKey = true;
     this.ribbonBar2.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnTeacherAutoSchedule,
     this.btnTeacherLock,
     this.btnTeacherUnlock,
     this.btnTeacherFree,
     this.btnTeacherProperty,
     this.btnTeacherPrint,
     this.btnTeacherBusy});
     this.ribbonBar2.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.ribbonBar2.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.ribbonBar2.Name = "ribbonBar2";
     this.ribbonBar2.Size = new System.Drawing.Size(436, 78);
     this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar2.TabIndex = 0;
     //
     //
     //
     this.ribbonBar2.TitleStyle.Class = "";
     this.ribbonBar2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.TitleStyleMouseOver.Class = "";
     this.ribbonBar2.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btnTeacherAutoSchedule
     //
     this.btnTeacherAutoSchedule.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTeacherAutoSchedule.Enabled = false;
     this.btnTeacherAutoSchedule.Image = global::ischedule.Properties.Resources.自動排課;
     this.btnTeacherAutoSchedule.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherAutoSchedule.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherAutoSchedule.ImageSmall = global::ischedule.Properties.Resources.自動排課;
     this.btnTeacherAutoSchedule.Name = "btnTeacherAutoSchedule";
     this.btnTeacherAutoSchedule.SubItemsExpandWidth = 14;
     this.btnTeacherAutoSchedule.Text = "自動排課";
     this.btnTeacherAutoSchedule.Tooltip = "提醒您自動排課會重新安排未鎖定的已排分課!";
     //
     // btnTeacherLock
     //
     this.btnTeacherLock.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTeacherLock.Enabled = false;
     this.btnTeacherLock.Image = global::ischedule.Properties.Resources.鎖定;
     this.btnTeacherLock.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherLock.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherLock.Name = "btnTeacherLock";
     this.btnTeacherLock.SubItemsExpandWidth = 14;
     this.btnTeacherLock.Text = "鎖定";
     //
     // btnTeacherUnlock
     //
     this.btnTeacherUnlock.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTeacherUnlock.Enabled = false;
     this.btnTeacherUnlock.Image = global::ischedule.Properties.Resources.解除鎖定;
     this.btnTeacherUnlock.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherUnlock.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherUnlock.Name = "btnTeacherUnlock";
     this.btnTeacherUnlock.SubItemsExpandWidth = 14;
     this.btnTeacherUnlock.Text = "解除鎖定";
     //
     // btnTeacherFree
     //
     this.btnTeacherFree.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTeacherFree.Enabled = false;
     this.btnTeacherFree.Image = global::ischedule.Properties.Resources.回復至未排課72;
     this.btnTeacherFree.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherFree.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherFree.Name = "btnTeacherFree";
     this.btnTeacherFree.SubItemsExpandWidth = 14;
     this.btnTeacherFree.Text = "回復至未排課";
     //
     // btnTeacherProperty
     //
     this.btnTeacherProperty.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTeacherProperty.Enabled = false;
     this.btnTeacherProperty.Image = global::ischedule.Properties.Resources.查詢分課屬性72;
     this.btnTeacherProperty.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherProperty.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherProperty.Name = "btnTeacherProperty";
     this.btnTeacherProperty.SubItemsExpandWidth = 14;
     this.btnTeacherProperty.Text = "修改屬性";
     //
     // btnTeacherPrint
     //
     this.btnTeacherPrint.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTeacherPrint.Image = global::ischedule.Properties.Resources.列印;
     this.btnTeacherPrint.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherPrint.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherPrint.Name = "btnTeacherPrint";
     this.btnTeacherPrint.SubItemsExpandWidth = 14;
     this.btnTeacherPrint.Text = "列印";
     //
     // btnTeacherBusy
     //
     this.btnTeacherBusy.Enabled = false;
     this.btnTeacherBusy.Image = global::ischedule.Properties.Resources.biology_remove_128;
     this.btnTeacherBusy.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherBusy.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherBusy.Name = "btnTeacherBusy";
     this.btnTeacherBusy.SubItemsExpandWidth = 14;
     this.btnTeacherBusy.Text = "不排課時段";
     this.btnTeacherBusy.Click += new System.EventHandler(this.btnTeacherBusy_Click);
     //
     // ribbonPanel2
     //
     this.ribbonPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel2.Controls.Add(this.ribbonBar3);
     this.ribbonPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel2.Location = new System.Drawing.Point(0, 55);
     this.ribbonPanel2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.ribbonPanel2.Name = "ribbonPanel2";
     this.ribbonPanel2.Padding = new System.Windows.Forms.Padding(3, 0, 3, 4);
     this.ribbonPanel2.Size = new System.Drawing.Size(948, 82);
     //
     //
     //
     this.ribbonPanel2.Style.Class = "";
     this.ribbonPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel2.StyleMouseDown.Class = "";
     this.ribbonPanel2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel2.StyleMouseOver.Class = "";
     this.ribbonPanel2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel2.TabIndex = 2;
     this.ribbonPanel2.Visible = false;
     //
     // ribbonBar3
     //
     this.ribbonBar3.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar3.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar3.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.BackgroundStyle.Class = "";
     this.ribbonBar3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar3.ContainerControlProcessDialogKey = true;
     this.ribbonBar3.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar3.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnClassAutoSchedule,
     this.btnClassLock,
     this.btnClassUnLock,
     this.btnClassFree,
     this.btnClassProperty,
     this.btnClassPrint,
     this.btnClassBusy});
     this.ribbonBar3.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.ribbonBar3.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar3.Name = "ribbonBar3";
     this.ribbonBar3.Size = new System.Drawing.Size(436, 78);
     this.ribbonBar3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar3.TabIndex = 0;
     //
     //
     //
     this.ribbonBar3.TitleStyle.Class = "";
     this.ribbonBar3.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.TitleStyleMouseOver.Class = "";
     this.ribbonBar3.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btnClassAutoSchedule
     //
     this.btnClassAutoSchedule.Enabled = false;
     this.btnClassAutoSchedule.Image = global::ischedule.Properties.Resources.自動排課;
     this.btnClassAutoSchedule.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassAutoSchedule.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassAutoSchedule.Name = "btnClassAutoSchedule";
     this.btnClassAutoSchedule.SubItemsExpandWidth = 14;
     this.btnClassAutoSchedule.Text = "自動排課";
     //
     // btnClassLock
     //
     this.btnClassLock.Enabled = false;
     this.btnClassLock.Image = global::ischedule.Properties.Resources.鎖定;
     this.btnClassLock.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassLock.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassLock.Name = "btnClassLock";
     this.btnClassLock.SubItemsExpandWidth = 14;
     this.btnClassLock.Text = "鎖定";
     //
     // btnClassUnLock
     //
     this.btnClassUnLock.Enabled = false;
     this.btnClassUnLock.Image = global::ischedule.Properties.Resources.解除鎖定;
     this.btnClassUnLock.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassUnLock.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassUnLock.Name = "btnClassUnLock";
     this.btnClassUnLock.SubItemsExpandWidth = 14;
     this.btnClassUnLock.Text = "解除鎖定";
     //
     // btnClassFree
     //
     this.btnClassFree.Enabled = false;
     this.btnClassFree.Image = global::ischedule.Properties.Resources.回復至未排課72;
     this.btnClassFree.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassFree.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassFree.Name = "btnClassFree";
     this.btnClassFree.SubItemsExpandWidth = 14;
     this.btnClassFree.Text = "回復至未排課";
     //
     // btnClassProperty
     //
     this.btnClassProperty.Enabled = false;
     this.btnClassProperty.Image = global::ischedule.Properties.Resources.查詢分課屬性72;
     this.btnClassProperty.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassProperty.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassProperty.Name = "btnClassProperty";
     this.btnClassProperty.SubItemsExpandWidth = 14;
     this.btnClassProperty.Text = "修改屬性";
     //
     // btnClassPrint
     //
     this.btnClassPrint.Image = global::ischedule.Properties.Resources.列印;
     this.btnClassPrint.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassPrint.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassPrint.Name = "btnClassPrint";
     this.btnClassPrint.SubItemsExpandWidth = 14;
     this.btnClassPrint.Text = "列印";
     //
     // btnClassBusy
     //
     this.btnClassBusy.Enabled = false;
     this.btnClassBusy.Image = global::ischedule.Properties.Resources.biology_remove_128;
     this.btnClassBusy.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassBusy.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassBusy.Name = "btnClassBusy";
     this.btnClassBusy.SubItemsExpandWidth = 14;
     this.btnClassBusy.Text = "不排課時段";
     this.btnClassBusy.Click += new System.EventHandler(this.btnClassBusy_Click);
     //
     // ribbonPanel3
     //
     this.ribbonPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel3.Controls.Add(this.ribbonBar4);
     this.ribbonPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel3.Location = new System.Drawing.Point(0, 55);
     this.ribbonPanel3.Name = "ribbonPanel3";
     this.ribbonPanel3.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel3.Size = new System.Drawing.Size(948, 82);
     //
     //
     //
     this.ribbonPanel3.Style.Class = "";
     this.ribbonPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel3.StyleMouseDown.Class = "";
     this.ribbonPanel3.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel3.StyleMouseOver.Class = "";
     this.ribbonPanel3.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel3.TabIndex = 3;
     this.ribbonPanel3.Visible = false;
     //
     // ribbonBar4
     //
     this.ribbonBar4.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar4.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar4.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar4.BackgroundStyle.Class = "";
     this.ribbonBar4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar4.ContainerControlProcessDialogKey = true;
     this.ribbonBar4.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar4.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnClassroomAutoSchedule,
     this.btnClassroomLock,
     this.btnClassroomUnLock,
     this.btnClassroomFree,
     this.btnClassroomProperty,
     this.btnClassroomPrint,
     this.btnClassroomBusy});
     this.ribbonBar4.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.ribbonBar4.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar4.Name = "ribbonBar4";
     this.ribbonBar4.Size = new System.Drawing.Size(436, 79);
     this.ribbonBar4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar4.TabIndex = 0;
     //
     //
     //
     this.ribbonBar4.TitleStyle.Class = "";
     this.ribbonBar4.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar4.TitleStyleMouseOver.Class = "";
     this.ribbonBar4.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btnClassroomAutoSchedule
     //
     this.btnClassroomAutoSchedule.Enabled = false;
     this.btnClassroomAutoSchedule.Image = global::ischedule.Properties.Resources.自動排課;
     this.btnClassroomAutoSchedule.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomAutoSchedule.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomAutoSchedule.Name = "btnClassroomAutoSchedule";
     this.btnClassroomAutoSchedule.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2});
     this.btnClassroomAutoSchedule.SubItemsExpandWidth = 14;
     this.btnClassroomAutoSchedule.Text = "自動排課";
     //
     // buttonItem2
     //
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.Text = "buttonItem2";
     //
     // btnClassroomLock
     //
     this.btnClassroomLock.Enabled = false;
     this.btnClassroomLock.Image = global::ischedule.Properties.Resources.鎖定;
     this.btnClassroomLock.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomLock.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomLock.Name = "btnClassroomLock";
     this.btnClassroomLock.SubItemsExpandWidth = 14;
     this.btnClassroomLock.Text = "鎖定";
     //
     // btnClassroomUnLock
     //
     this.btnClassroomUnLock.Enabled = false;
     this.btnClassroomUnLock.Image = global::ischedule.Properties.Resources.解除鎖定;
     this.btnClassroomUnLock.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomUnLock.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomUnLock.Name = "btnClassroomUnLock";
     this.btnClassroomUnLock.SubItemsExpandWidth = 14;
     this.btnClassroomUnLock.Text = "解除鎖定";
     //
     // btnClassroomFree
     //
     this.btnClassroomFree.Enabled = false;
     this.btnClassroomFree.Image = global::ischedule.Properties.Resources.回復至未排課72;
     this.btnClassroomFree.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomFree.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomFree.Name = "btnClassroomFree";
     this.btnClassroomFree.SubItemsExpandWidth = 14;
     this.btnClassroomFree.Text = "回復至未排課";
     //
     // btnClassroomProperty
     //
     this.btnClassroomProperty.Enabled = false;
     this.btnClassroomProperty.Image = global::ischedule.Properties.Resources.查詢分課屬性72;
     this.btnClassroomProperty.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomProperty.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomProperty.Name = "btnClassroomProperty";
     this.btnClassroomProperty.SubItemsExpandWidth = 14;
     this.btnClassroomProperty.Text = "修改屬性";
     //
     // btnClassroomPrint
     //
     this.btnClassroomPrint.Image = global::ischedule.Properties.Resources.列印;
     this.btnClassroomPrint.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomPrint.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomPrint.Name = "btnClassroomPrint";
     this.btnClassroomPrint.SubItemsExpandWidth = 14;
     this.btnClassroomPrint.Text = "列印";
     //
     // btnClassroomBusy
     //
     this.btnClassroomBusy.Enabled = false;
     this.btnClassroomBusy.Image = global::ischedule.Properties.Resources.biology_remove_128;
     this.btnClassroomBusy.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomBusy.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomBusy.Name = "btnClassroomBusy";
     this.btnClassroomBusy.SubItemsExpandWidth = 14;
     this.btnClassroomBusy.Text = "不排課時段";
     this.btnClassroomBusy.Click += new System.EventHandler(this.btnClassroomBusy_Click);
     //
     // office2007StartButton1
     //
     this.office2007StartButton1.AutoExpandOnClick = true;
     this.office2007StartButton1.CanCustomize = false;
     this.office2007StartButton1.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.Image;
     this.office2007StartButton1.Image = ((System.Drawing.Image)(resources.GetObject("office2007StartButton1.Image")));
     this.office2007StartButton1.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.office2007StartButton1.ImagePaddingHorizontal = 0;
     this.office2007StartButton1.ImagePaddingVertical = 0;
     this.office2007StartButton1.Name = "office2007StartButton1";
     this.office2007StartButton1.ShowSubItems = false;
     this.office2007StartButton1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer1});
     this.office2007StartButton1.Text = "開始";
     this.office2007StartButton1.Click += new System.EventHandler(this.office2007StartButton1_Click);
     //
     // itemContainer1
     //
     //
     //
     //
     this.itemContainer1.BackgroundStyle.Class = "RibbonFileMenuContainer";
     this.itemContainer1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer1.Name = "itemContainer1";
     this.itemContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer2});
     //
     // itemContainer2
     //
     //
     //
     //
     this.itemContainer2.BackgroundStyle.Class = "RibbonFileMenuTwoColumnContainer";
     this.itemContainer2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer2.ItemSpacing = 0;
     this.itemContainer2.Name = "itemContainer2";
     this.itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer3});
     //
     // itemContainer3
     //
     //
     //
     //
     this.itemContainer3.BackgroundStyle.Class = "RibbonFileMenuColumnOneContainer";
     this.itemContainer3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer3.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer3.MinimumSize = new System.Drawing.Size(120, 0);
     this.itemContainer3.Name = "itemContainer3";
     this.itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnOpen,
     this.btnSave,
     this.btnSaveAs,
     this.btnDownload,
     this.btnUpload,
     this.btnClose,
     this.btnExit});
     //
     // btnOpen
     //
     this.btnOpen.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnOpen.Image = global::ischedule.Properties.Resources.開啟檔案;
     this.btnOpen.Name = "btnOpen";
     this.btnOpen.SubItemsExpandWidth = 24;
     this.btnOpen.Text = "開啟資料";
     this.btnOpen.Click += new System.EventHandler(this.btnOpen_Click);
     //
     // btnSave
     //
     this.btnSave.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnSave.Image = global::ischedule.Properties.Resources.儲存;
     this.btnSave.Name = "btnSave";
     this.btnSave.SubItemsExpandWidth = 24;
     this.btnSave.Text = "儲存資料";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnSaveAs
     //
     this.btnSaveAs.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnSaveAs.Image = global::ischedule.Properties.Resources.另存新檔;
     this.btnSaveAs.Name = "btnSaveAs";
     this.btnSaveAs.Text = "另存資料";
     this.btnSaveAs.Click += new System.EventHandler(this.btnSaveAs_Click);
     //
     // btnDownload
     //
     this.btnDownload.BeginGroup = true;
     this.btnDownload.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnDownload.Image = global::ischedule.Properties.Resources.下載;
     this.btnDownload.Name = "btnDownload";
     this.btnDownload.SubItemsExpandWidth = 24;
     this.btnDownload.Text = "下載資料";
     this.btnDownload.Click += new System.EventHandler(this.btnDownload_Click);
     //
     // btnUpload
     //
     this.btnUpload.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnUpload.Image = global::ischedule.Properties.Resources.上載;
     this.btnUpload.Name = "btnUpload";
     this.btnUpload.SubItemsExpandWidth = 24;
     this.btnUpload.Text = "上傳資料";
     this.btnUpload.Click += new System.EventHandler(this.btnUpload_Click);
     //
     // btnClose
     //
     this.btnClose.BeginGroup = true;
     this.btnClose.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnClose.Image = global::ischedule.Properties.Resources.關閉檔案;
     this.btnClose.Name = "btnClose";
     this.btnClose.SubItemsExpandWidth = 24;
     this.btnClose.Text = "關閉資料";
     this.btnClose.Visible = false;
     //
     // btnExit
     //
     this.btnExit.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnExit.Image = global::ischedule.Properties.Resources.刪除;
     this.btnExit.Name = "btnExit";
     this.btnExit.Text = "關閉系統";
     //
     // ribbonTabTeacher
     //
     this.ribbonTabTeacher.Checked = true;
     this.ribbonTabTeacher.Name = "ribbonTabTeacher";
     this.ribbonTabTeacher.Panel = this.ribbonPanel1;
     this.ribbonTabTeacher.Text = "教師";
     //
     // ribbonTabClass
     //
     this.ribbonTabClass.Name = "ribbonTabClass";
     this.ribbonTabClass.Panel = this.ribbonPanel2;
     this.ribbonTabClass.Text = "班級";
     //
     // ribbonTabClassroom
     //
     this.ribbonTabClassroom.Name = "ribbonTabClassroom";
     this.ribbonTabClassroom.Panel = this.ribbonPanel3;
     this.ribbonTabClassroom.Text = "場地";
     //
     // btnUndo
     //
     this.btnUndo.Enabled = false;
     this.btnUndo.Image = global::ischedule.Properties.Resources.Undo_icon;
     this.btnUndo.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.btnUndo.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.Default;
     this.btnUndo.Name = "btnUndo";
     this.btnUndo.Text = "buttonItem3";
     this.btnUndo.Tooltip = "回復";
     this.btnUndo.Visible = false;
     this.btnUndo.Click += new System.EventHandler(this.btnUndo_Click);
     //
     // btnRedo
     //
     this.btnRedo.Enabled = false;
     this.btnRedo.Image = global::ischedule.Properties.Resources.Redo_icon;
     this.btnRedo.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.btnRedo.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.Default;
     this.btnRedo.Name = "btnRedo";
     this.btnRedo.Text = "重做";
     this.btnRedo.Visible = false;
     this.btnRedo.Click += new System.EventHandler(this.btnRedo_Click);
     //
     // qatCustomizeItem1
     //
     this.qatCustomizeItem1.Name = "qatCustomizeItem1";
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2010Blue;
     //
     // bar1
     //
     this.bar1.AntiAlias = true;
     this.bar1.BarType = DevComponents.DotNetBar.eBarType.StatusBar;
     this.bar1.Controls.Add(this.lblMemoryUsage);
     this.bar1.Controls.Add(this.progressBarX1);
     this.bar1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.bar1.Location = new System.Drawing.Point(5, 715);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(948, 25);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.bar1.TabIndex = 7;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // lblMemoryUsage
     //
     this.lblMemoryUsage.AutoSize = true;
     this.lblMemoryUsage.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblMemoryUsage.BackgroundStyle.Class = "";
     this.lblMemoryUsage.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblMemoryUsage.Dock = System.Windows.Forms.DockStyle.Right;
     this.lblMemoryUsage.Location = new System.Drawing.Point(948, 0);
     this.lblMemoryUsage.Name = "lblMemoryUsage";
     this.lblMemoryUsage.SingleLineColor = System.Drawing.Color.Transparent;
     this.lblMemoryUsage.Size = new System.Drawing.Size(0, 0);
     this.lblMemoryUsage.TabIndex = 1;
     //
     // progressBarX1
     //
     //
     //
     //
     this.progressBarX1.BackgroundStyle.Class = "";
     this.progressBarX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.progressBarX1.Location = new System.Drawing.Point(50, 3);
     this.progressBarX1.Name = "progressBarX1";
     this.progressBarX1.Size = new System.Drawing.Size(348, 20);
     this.progressBarX1.TabIndex = 0;
     this.progressBarX1.Text = "progressBarX1";
     this.progressBarX1.Visible = false;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.panel1.Controls.Add(this.panel2);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(5, 141);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(948, 574);
     this.panel1.TabIndex = 9;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.panel4);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(948, 574);
     this.panel2.TabIndex = 0;
     //
     // panel4
     //
     this.panel4.Controls.Add(this.tabContent);
     this.panel4.Controls.Add(this.expandableSplitter1);
     this.panel4.Controls.Add(this.LeftNavigationPanel);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(0, 0);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(948, 574);
     this.panel4.TabIndex = 2;
     //
     // tabContent
     //
     //
     //
     //
     //
     //
     //
     this.tabContent.ControlBox.CloseBox.Name = "";
     //
     //
     //
     this.tabContent.ControlBox.MenuBox.Name = "";
     this.tabContent.ControlBox.Name = "";
     this.tabContent.ControlBox.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.tabContent.ControlBox.MenuBox,
     this.tabContent.ControlBox.CloseBox});
     this.tabContent.Controls.Add(this.superTabControlPanel1);
     this.tabContent.Controls.Add(this.superTabControlPanel2);
     this.tabContent.Controls.Add(this.superTabControlPanel3);
     this.tabContent.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabContent.Location = new System.Drawing.Point(209, 0);
     this.tabContent.Name = "tabContent";
     this.tabContent.ReorderTabsEnabled = true;
     this.tabContent.SelectedTabFont = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Bold);
     this.tabContent.SelectedTabIndex = 0;
     this.tabContent.Size = new System.Drawing.Size(739, 574);
     this.tabContent.TabFont = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.tabContent.TabIndex = 11;
     this.tabContent.Tabs.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.tabTeacher,
     this.tabClass,
     this.tabClassroom});
     this.tabContent.TabsVisible = false;
     this.tabContent.Text = "superTabControl1";
     //
     // superTabControlPanel1
     //
     this.superTabControlPanel1.Controls.Add(this.pnlWhoList);
     this.superTabControlPanel1.Controls.Add(this.splTeacher);
     this.superTabControlPanel1.Controls.Add(this.pnlWhoLPView);
     this.superTabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel1.Location = new System.Drawing.Point(0, 30);
     this.superTabControlPanel1.Name = "superTabControlPanel1";
     this.superTabControlPanel1.Size = new System.Drawing.Size(739, 544);
     this.superTabControlPanel1.TabIndex = 1;
     this.superTabControlPanel1.TabItem = this.tabTeacher;
     //
     // pnlWhoList
     //
     this.pnlWhoList.Controls.Add(this.grdTeacherEvent);
     this.pnlWhoList.Controls.Add(this.panel5);
     this.pnlWhoList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlWhoList.Location = new System.Drawing.Point(0, 0);
     this.pnlWhoList.Name = "pnlWhoList";
     this.pnlWhoList.Size = new System.Drawing.Size(136, 544);
     this.pnlWhoList.TabIndex = 6;
     //
     // grdTeacherEvent
     //
     this.grdTeacherEvent.AllowUserToAddRows = false;
     this.grdTeacherEvent.AllowUserToDeleteRows = false;
     this.grdTeacherEvent.AllowUserToOrderColumns = true;
     this.grdTeacherEvent.AllowUserToResizeRows = false;
     this.grdTeacherEvent.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.grdTeacherEvent.BackgroundColor = System.Drawing.Color.White;
     this.grdTeacherEvent.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdTeacherEvent.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colLock,
     this.colSolutionCount,
     this.colWeekDay,
     this.colPeriodNo,
     this.colCourseName,
     this.colLength,
     this.colWhoName,
     this.colWhomName,
     this.colWhereName,
     this.colWhatName,
     this.colWhatAliasName,
     this.colCourseGroup,
     this.colWeekDayCondition,
     this.colPeriodCondition,
     this.colAllowLongBreak,
     this.colAllowDuplicate,
     this.colLimitNextDay,
     this.colWeekFlag,
     this.colPriority,
     this.colTimeTable,
     this.colColorIndex,
     this.colEventID});
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle6.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle6.Font = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle6.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle6.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdTeacherEvent.DefaultCellStyle = dataGridViewCellStyle6;
     this.grdTeacherEvent.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdTeacherEvent.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     this.grdTeacherEvent.Location = new System.Drawing.Point(0, 35);
     this.grdTeacherEvent.Name = "grdTeacherEvent";
     this.grdTeacherEvent.ReadOnly = true;
     this.grdTeacherEvent.RowHeadersVisible = false;
     this.grdTeacherEvent.RowTemplate.Height = 24;
     this.grdTeacherEvent.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdTeacherEvent.Size = new System.Drawing.Size(136, 509);
     this.grdTeacherEvent.TabIndex = 9;
     this.grdTeacherEvent.VirtualMode = true;
     //
     // colLock
     //
     this.colLock.DataPropertyName = "DisplayManualLock";
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.colLock.DefaultCellStyle = dataGridViewCellStyle1;
     this.colLock.HeaderText = "鎖定";
     this.colLock.MinimumWidth = 40;
     this.colLock.Name = "colLock";
     this.colLock.ReadOnly = true;
     this.colLock.Width = 57;
     //
     // colSolutionCount
     //
     this.colSolutionCount.DataPropertyName = "DisplaySolutionCount";
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.colSolutionCount.DefaultCellStyle = dataGridViewCellStyle2;
     this.colSolutionCount.HeaderText = "方案";
     this.colSolutionCount.MinimumWidth = 40;
     this.colSolutionCount.Name = "colSolutionCount";
     this.colSolutionCount.ReadOnly = true;
     this.colSolutionCount.Width = 57;
     //
     // colWeekDay
     //
     this.colWeekDay.DataPropertyName = "WeekDay";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.colWeekDay.DefaultCellStyle = dataGridViewCellStyle3;
     this.colWeekDay.HeaderText = "星期";
     this.colWeekDay.MinimumWidth = 40;
     this.colWeekDay.Name = "colWeekDay";
     this.colWeekDay.ReadOnly = true;
     this.colWeekDay.Width = 57;
     //
     // colPeriodNo
     //
     this.colPeriodNo.DataPropertyName = "PeriodNo";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.colPeriodNo.DefaultCellStyle = dataGridViewCellStyle4;
     this.colPeriodNo.HeaderText = "節次";
     this.colPeriodNo.Name = "colPeriodNo";
     this.colPeriodNo.ReadOnly = true;
     this.colPeriodNo.Width = 57;
     //
     // colCourseName
     //
     this.colCourseName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colCourseName.DataPropertyName = "CourseName";
     this.colCourseName.HeaderText = "課程名稱";
     this.colCourseName.Name = "colCourseName";
     this.colCourseName.ReadOnly = true;
     this.colCourseName.Width = 81;
     //
     // colLength
     //
     this.colLength.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colLength.DataPropertyName = "Length";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.colLength.DefaultCellStyle = dataGridViewCellStyle5;
     this.colLength.HeaderText = "節數";
     this.colLength.Name = "colLength";
     this.colLength.ReadOnly = true;
     this.colLength.Width = 57;
     //
     // colWhoName
     //
     this.colWhoName.DataPropertyName = "DisplayTeacherName";
     this.colWhoName.HeaderText = "教師";
     this.colWhoName.Name = "colWhoName";
     this.colWhoName.ReadOnly = true;
     this.colWhoName.Width = 57;
     //
     // colWhomName
     //
     this.colWhomName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colWhomName.DataPropertyName = "DisplayClassName";
     this.colWhomName.HeaderText = "班級";
     this.colWhomName.Name = "colWhomName";
     this.colWhomName.ReadOnly = true;
     this.colWhomName.Width = 57;
     //
     // colWhereName
     //
     this.colWhereName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colWhereName.DataPropertyName = "DisplayClassroomName";
     this.colWhereName.HeaderText = "場地";
     this.colWhereName.Name = "colWhereName";
     this.colWhereName.ReadOnly = true;
     this.colWhereName.Width = 57;
     //
     // colWhatName
     //
     this.colWhatName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colWhatName.DataPropertyName = "DisplaySubjectName";
     this.colWhatName.HeaderText = "科目";
     this.colWhatName.Name = "colWhatName";
     this.colWhatName.ReadOnly = true;
     this.colWhatName.Width = 57;
     //
     // colWhatAliasName
     //
     this.colWhatAliasName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colWhatAliasName.DataPropertyName = "SubjectAlias";
     this.colWhatAliasName.HeaderText = "科目簡稱";
     this.colWhatAliasName.Name = "colWhatAliasName";
     this.colWhatAliasName.ReadOnly = true;
     this.colWhatAliasName.Width = 81;
     //
     // colCourseGroup
     //
     this.colCourseGroup.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colCourseGroup.DataPropertyName = "CourseGroup";
     this.colCourseGroup.HeaderText = "課程群組";
     this.colCourseGroup.Name = "colCourseGroup";
     this.colCourseGroup.ReadOnly = true;
     this.colCourseGroup.Width = 81;
     //
     // colWeekDayCondition
     //
     this.colWeekDayCondition.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colWeekDayCondition.DataPropertyName = "WeekDayCondition";
     this.colWeekDayCondition.HeaderText = "星期條件";
     this.colWeekDayCondition.Name = "colWeekDayCondition";
     this.colWeekDayCondition.ReadOnly = true;
     this.colWeekDayCondition.Width = 81;
     //
     // colPeriodCondition
     //
     this.colPeriodCondition.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colPeriodCondition.DataPropertyName = "PeriodCondition";
     this.colPeriodCondition.HeaderText = "節次條件";
     this.colPeriodCondition.Name = "colPeriodCondition";
     this.colPeriodCondition.ReadOnly = true;
     this.colPeriodCondition.Width = 81;
     //
     // colAllowLongBreak
     //
     this.colAllowLongBreak.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colAllowLongBreak.DataPropertyName = "DisplayAllowLongBreak";
     this.colAllowLongBreak.HeaderText = "跨中午";
     this.colAllowLongBreak.Name = "colAllowLongBreak";
     this.colAllowLongBreak.ReadOnly = true;
     this.colAllowLongBreak.Width = 69;
     //
     // colAllowDuplicate
     //
     this.colAllowDuplicate.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colAllowDuplicate.DataPropertyName = "DisplayAllowDuplicate";
     this.colAllowDuplicate.HeaderText = "可重複";
     this.colAllowDuplicate.Name = "colAllowDuplicate";
     this.colAllowDuplicate.ReadOnly = true;
     this.colAllowDuplicate.Width = 69;
     //
     // colLimitNextDay
     //
     this.colLimitNextDay.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colLimitNextDay.DataPropertyName = "DisplayLimitNextDay";
     this.colLimitNextDay.HeaderText = "不連天";
     this.colLimitNextDay.Name = "colLimitNextDay";
     this.colLimitNextDay.ReadOnly = true;
     this.colLimitNextDay.Width = 69;
     //
     // colWeekFlag
     //
     this.colWeekFlag.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colWeekFlag.DataPropertyName = "DisplayWeekFlag";
     this.colWeekFlag.HeaderText = "單雙週";
     this.colWeekFlag.Name = "colWeekFlag";
     this.colWeekFlag.ReadOnly = true;
     this.colWeekFlag.Width = 69;
     //
     // colPriority
     //
     this.colPriority.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colPriority.DataPropertyName = "Priority";
     this.colPriority.HeaderText = "優先";
     this.colPriority.Name = "colPriority";
     this.colPriority.ReadOnly = true;
     this.colPriority.Width = 57;
     //
     // colTimeTable
     //
     this.colTimeTable.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colTimeTable.DataPropertyName = "DispalyTimeTableName";
     this.colTimeTable.HeaderText = "時間表";
     this.colTimeTable.Name = "colTimeTable";
     this.colTimeTable.ReadOnly = true;
     this.colTimeTable.Width = 69;
     //
     // colColorIndex
     //
     this.colColorIndex.DataPropertyName = "ColorIndex";
     this.colColorIndex.HeaderText = "顏色";
     this.colColorIndex.Name = "colColorIndex";
     this.colColorIndex.ReadOnly = true;
     this.colColorIndex.Visible = false;
     this.colColorIndex.Width = 54;
     //
     // colEventID
     //
     this.colEventID.DataPropertyName = "EventID";
     this.colEventID.HeaderText = "分課編號";
     this.colEventID.Name = "colEventID";
     this.colEventID.ReadOnly = true;
     this.colEventID.Width = 81;
     //
     // panel5
     //
     this.panel5.Controls.Add(this.labelX2);
     this.panel5.Controls.Add(this.lblTeacher);
     this.panel5.Controls.Add(this.btnTeacherEventExpand);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel5.Location = new System.Drawing.Point(0, 0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(136, 35);
     this.panel5.TabIndex = 8;
     //
     // labelX2
     //
     this.labelX2.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.labelX2.AutoSize = true;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX2.Location = new System.Drawing.Point(-23, 3);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(123, 26);
     this.labelX2.TabIndex = 2;
     this.labelX2.Text = "黃色為未排分課";
     //
     // lblTeacher
     //
     this.lblTeacher.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblTeacher.AutoSize = true;
     //
     //
     //
     this.lblTeacher.BackgroundStyle.Class = "";
     this.lblTeacher.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblTeacher.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.lblTeacher.Location = new System.Drawing.Point(7, 4);
     this.lblTeacher.Name = "lblTeacher";
     this.lblTeacher.Size = new System.Drawing.Size(0, 0);
     this.lblTeacher.TabIndex = 1;
     //
     // btnTeacherEventExpand
     //
     this.btnTeacherEventExpand.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnTeacherEventExpand.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnTeacherEventExpand.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnTeacherEventExpand.Location = new System.Drawing.Point(102, 5);
     this.btnTeacherEventExpand.Name = "btnTeacherEventExpand";
     this.btnTeacherEventExpand.Size = new System.Drawing.Size(28, 23);
     this.btnTeacherEventExpand.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnTeacherEventExpand.TabIndex = 0;
     this.btnTeacherEventExpand.Text = ">>";
     //
     // splTeacher
     //
     this.splTeacher.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splTeacher.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splTeacher.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.splTeacher.Dock = System.Windows.Forms.DockStyle.Right;
     this.splTeacher.ExpandableControl = this.pnlWhoLPView;
     this.splTeacher.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splTeacher.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splTeacher.ExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splTeacher.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splTeacher.GripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splTeacher.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splTeacher.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.splTeacher.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.splTeacher.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(200)))), ((int)(((byte)(103)))));
     this.splTeacher.HotBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(226)))), ((int)(((byte)(135)))));
     this.splTeacher.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2;
     this.splTeacher.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.splTeacher.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splTeacher.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splTeacher.HotExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splTeacher.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splTeacher.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splTeacher.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splTeacher.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.splTeacher.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.splTeacher.Location = new System.Drawing.Point(136, 0);
     this.splTeacher.Name = "splTeacher";
     this.splTeacher.Size = new System.Drawing.Size(3, 544);
     this.splTeacher.Style = DevComponents.DotNetBar.eSplitterStyle.Office2007;
     this.splTeacher.TabIndex = 5;
     this.splTeacher.TabStop = false;
     //
     // pnlWhoLPView
     //
     this.pnlWhoLPView.Controls.Add(this.tabTeacherLPView);
     this.pnlWhoLPView.Dock = System.Windows.Forms.DockStyle.Right;
     this.pnlWhoLPView.Location = new System.Drawing.Point(139, 0);
     this.pnlWhoLPView.Name = "pnlWhoLPView";
     this.pnlWhoLPView.Size = new System.Drawing.Size(600, 544);
     this.pnlWhoLPView.TabIndex = 4;
     //
     // tabTeacherLPView
     //
     this.tabTeacherLPView.AutoCloseTabs = true;
     this.tabTeacherLPView.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabTeacherLPView.CanReorderTabs = true;
     this.tabTeacherLPView.CloseButtonOnTabsVisible = true;
     this.tabTeacherLPView.CloseButtonPosition = DevComponents.DotNetBar.eTabCloseButtonPosition.Right;
     this.tabTeacherLPView.Controls.Add(this.tabControlPanel1);
     this.tabTeacherLPView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabTeacherLPView.Location = new System.Drawing.Point(0, 0);
     this.tabTeacherLPView.Name = "tabTeacherLPView";
     this.tabTeacherLPView.SelectedTabFont = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Bold);
     this.tabTeacherLPView.SelectedTabIndex = -1;
     this.tabTeacherLPView.Size = new System.Drawing.Size(600, 544);
     this.tabTeacherLPView.TabIndex = 1;
     this.tabTeacherLPView.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabTeacherLPView.Tabs.Add(this.tabItem2);
     this.tabTeacherLPView.Text = "tabControl1";
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 28);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(600, 516);
     this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabControlPanel1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel1.Style.GradientAngle = 90;
     this.tabControlPanel1.TabIndex = 1;
     this.tabControlPanel1.TabItem = this.tabItem2;
     //
     // tabItem2
     //
     this.tabItem2.AttachedControl = this.tabControlPanel1;
     this.tabItem2.CloseButtonVisible = false;
     this.tabItem2.Name = "tabItem2";
     this.tabItem2.Text = "功課表";
     //
     // tabTeacher
     //
     this.tabTeacher.AttachedControl = this.superTabControlPanel1;
     this.tabTeacher.GlobalItem = false;
     this.tabTeacher.Name = "tabTeacher";
     this.tabTeacher.Text = "教師";
     //
     // superTabControlPanel2
     //
     this.superTabControlPanel2.Controls.Add(this.splClass);
     this.superTabControlPanel2.Controls.Add(this.pnlWhomList);
     this.superTabControlPanel2.Controls.Add(this.pnlWhomLPView);
     this.superTabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel2.Location = new System.Drawing.Point(0, 0);
     this.superTabControlPanel2.Name = "superTabControlPanel2";
     this.superTabControlPanel2.Size = new System.Drawing.Size(739, 574);
     this.superTabControlPanel2.TabIndex = 0;
     this.superTabControlPanel2.TabItem = this.tabClass;
     //
     // splClass
     //
     this.splClass.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClass.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClass.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.splClass.Dock = System.Windows.Forms.DockStyle.Right;
     this.splClass.ExpandableControl = this.pnlWhomLPView;
     this.splClass.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClass.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClass.ExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splClass.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splClass.GripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splClass.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splClass.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.splClass.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.splClass.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(200)))), ((int)(((byte)(103)))));
     this.splClass.HotBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(226)))), ((int)(((byte)(135)))));
     this.splClass.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2;
     this.splClass.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.splClass.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClass.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClass.HotExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splClass.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splClass.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClass.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClass.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.splClass.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.splClass.Location = new System.Drawing.Point(136, 0);
     this.splClass.Name = "splClass";
     this.splClass.Size = new System.Drawing.Size(3, 574);
     this.splClass.Style = DevComponents.DotNetBar.eSplitterStyle.Office2007;
     this.splClass.TabIndex = 2;
     this.splClass.TabStop = false;
     //
     // pnlWhomLPView
     //
     this.pnlWhomLPView.Controls.Add(this.tabClassLPView);
     this.pnlWhomLPView.Dock = System.Windows.Forms.DockStyle.Right;
     this.pnlWhomLPView.Location = new System.Drawing.Point(139, 0);
     this.pnlWhomLPView.Name = "pnlWhomLPView";
     this.pnlWhomLPView.Size = new System.Drawing.Size(600, 574);
     this.pnlWhomLPView.TabIndex = 0;
     //
     // tabClassLPView
     //
     this.tabClassLPView.AutoCloseTabs = true;
     this.tabClassLPView.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabClassLPView.CanReorderTabs = true;
     this.tabClassLPView.CloseButtonOnTabsVisible = true;
     this.tabClassLPView.CloseButtonPosition = DevComponents.DotNetBar.eTabCloseButtonPosition.Right;
     this.tabClassLPView.Controls.Add(this.tabControlPanel2);
     this.tabClassLPView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabClassLPView.Location = new System.Drawing.Point(0, 0);
     this.tabClassLPView.Name = "tabClassLPView";
     this.tabClassLPView.SelectedTabFont = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Bold);
     this.tabClassLPView.SelectedTabIndex = -1;
     this.tabClassLPView.Size = new System.Drawing.Size(600, 574);
     this.tabClassLPView.TabIndex = 2;
     this.tabClassLPView.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabClassLPView.Tabs.Add(this.tabItem3);
     this.tabClassLPView.Text = "tabControl1";
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 28);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(600, 546);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabControlPanel2.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.Style.GradientAngle = 90;
     this.tabControlPanel2.TabIndex = 1;
     this.tabControlPanel2.TabItem = this.tabItem3;
     //
     // tabItem3
     //
     this.tabItem3.AttachedControl = this.tabControlPanel2;
     this.tabItem3.CloseButtonVisible = false;
     this.tabItem3.Name = "tabItem3";
     this.tabItem3.Text = "功課表";
     //
     // pnlWhomList
     //
     this.pnlWhomList.Controls.Add(this.panel10);
     this.pnlWhomList.Controls.Add(this.panel3);
     this.pnlWhomList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlWhomList.Location = new System.Drawing.Point(0, 0);
     this.pnlWhomList.Name = "pnlWhomList";
     this.pnlWhomList.Size = new System.Drawing.Size(139, 574);
     this.pnlWhomList.TabIndex = 1;
     //
     // panel10
     //
     this.panel10.Controls.Add(this.grdClassEvent);
     this.panel10.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel10.Location = new System.Drawing.Point(0, 35);
     this.panel10.Name = "panel10";
     this.panel10.Size = new System.Drawing.Size(139, 539);
     this.panel10.TabIndex = 10;
     //
     // grdClassEvent
     //
     this.grdClassEvent.AllowUserToAddRows = false;
     this.grdClassEvent.AllowUserToDeleteRows = false;
     this.grdClassEvent.AllowUserToOrderColumns = true;
     this.grdClassEvent.AllowUserToResizeRows = false;
     this.grdClassEvent.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.grdClassEvent.BackgroundColor = System.Drawing.Color.White;
     this.grdClassEvent.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdClassEvent.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn69,
     this.dataGridViewTextBoxColumn70,
     this.dataGridViewTextBoxColumn71,
     this.dataGridViewTextBoxColumn72,
     this.dataGridViewTextBoxColumn78,
     this.dataGridViewTextBoxColumn80,
     this.dataGridViewTextBoxColumn73,
     this.dataGridViewTextBoxColumn74,
     this.dataGridViewTextBoxColumn75,
     this.dataGridViewTextBoxColumn76,
     this.dataGridViewTextBoxColumn77,
     this.dataGridViewTextBoxColumn79,
     this.dataGridViewTextBoxColumn81,
     this.dataGridViewTextBoxColumn82,
     this.dataGridViewTextBoxColumn83,
     this.dataGridViewTextBoxColumn84,
     this.dataGridViewTextBoxColumn85,
     this.dataGridViewTextBoxColumn86,
     this.dataGridViewTextBoxColumn87,
     this.dataGridViewTextBoxColumn88,
     this.dataGridViewTextBoxColumn89,
     this.dataGridViewTextBoxColumn90});
     dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle12.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle12.Font = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle12.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle12.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdClassEvent.DefaultCellStyle = dataGridViewCellStyle12;
     this.grdClassEvent.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdClassEvent.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     this.grdClassEvent.Location = new System.Drawing.Point(0, 0);
     this.grdClassEvent.Name = "grdClassEvent";
     this.grdClassEvent.ReadOnly = true;
     this.grdClassEvent.RowHeadersVisible = false;
     this.grdClassEvent.RowTemplate.Height = 24;
     this.grdClassEvent.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdClassEvent.Size = new System.Drawing.Size(139, 539);
     this.grdClassEvent.TabIndex = 10;
     this.grdClassEvent.VirtualMode = true;
     //
     // dataGridViewTextBoxColumn69
     //
     this.dataGridViewTextBoxColumn69.DataPropertyName = "DisplayManualLock";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn69.DefaultCellStyle = dataGridViewCellStyle7;
     this.dataGridViewTextBoxColumn69.HeaderText = "鎖定";
     this.dataGridViewTextBoxColumn69.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn69.Name = "dataGridViewTextBoxColumn69";
     this.dataGridViewTextBoxColumn69.ReadOnly = true;
     this.dataGridViewTextBoxColumn69.Width = 57;
     //
     // dataGridViewTextBoxColumn70
     //
     this.dataGridViewTextBoxColumn70.DataPropertyName = "DisplaySolutionCount";
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn70.DefaultCellStyle = dataGridViewCellStyle8;
     this.dataGridViewTextBoxColumn70.HeaderText = "方案";
     this.dataGridViewTextBoxColumn70.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn70.Name = "dataGridViewTextBoxColumn70";
     this.dataGridViewTextBoxColumn70.ReadOnly = true;
     this.dataGridViewTextBoxColumn70.Width = 57;
     //
     // dataGridViewTextBoxColumn71
     //
     this.dataGridViewTextBoxColumn71.DataPropertyName = "WeekDay";
     dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn71.DefaultCellStyle = dataGridViewCellStyle9;
     this.dataGridViewTextBoxColumn71.HeaderText = "星期";
     this.dataGridViewTextBoxColumn71.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn71.Name = "dataGridViewTextBoxColumn71";
     this.dataGridViewTextBoxColumn71.ReadOnly = true;
     this.dataGridViewTextBoxColumn71.Width = 57;
     //
     // dataGridViewTextBoxColumn72
     //
     this.dataGridViewTextBoxColumn72.DataPropertyName = "PeriodNo";
     dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn72.DefaultCellStyle = dataGridViewCellStyle10;
     this.dataGridViewTextBoxColumn72.HeaderText = "節次";
     this.dataGridViewTextBoxColumn72.Name = "dataGridViewTextBoxColumn72";
     this.dataGridViewTextBoxColumn72.ReadOnly = true;
     this.dataGridViewTextBoxColumn72.Width = 57;
     //
     // dataGridViewTextBoxColumn78
     //
     this.dataGridViewTextBoxColumn78.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn78.DataPropertyName = "CourseName";
     this.dataGridViewTextBoxColumn78.HeaderText = "課程名稱";
     this.dataGridViewTextBoxColumn78.Name = "dataGridViewTextBoxColumn78";
     this.dataGridViewTextBoxColumn78.ReadOnly = true;
     this.dataGridViewTextBoxColumn78.Width = 81;
     //
     // dataGridViewTextBoxColumn80
     //
     this.dataGridViewTextBoxColumn80.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn80.DataPropertyName = "Length";
     dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn80.DefaultCellStyle = dataGridViewCellStyle11;
     this.dataGridViewTextBoxColumn80.HeaderText = "節數";
     this.dataGridViewTextBoxColumn80.Name = "dataGridViewTextBoxColumn80";
     this.dataGridViewTextBoxColumn80.ReadOnly = true;
     this.dataGridViewTextBoxColumn80.Width = 57;
     //
     // dataGridViewTextBoxColumn73
     //
     this.dataGridViewTextBoxColumn73.DataPropertyName = "DisplayTeacherName";
     this.dataGridViewTextBoxColumn73.HeaderText = "教師";
     this.dataGridViewTextBoxColumn73.Name = "dataGridViewTextBoxColumn73";
     this.dataGridViewTextBoxColumn73.ReadOnly = true;
     this.dataGridViewTextBoxColumn73.Width = 57;
     //
     // dataGridViewTextBoxColumn74
     //
     this.dataGridViewTextBoxColumn74.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn74.DataPropertyName = "DisplayClassName";
     this.dataGridViewTextBoxColumn74.HeaderText = "班級";
     this.dataGridViewTextBoxColumn74.Name = "dataGridViewTextBoxColumn74";
     this.dataGridViewTextBoxColumn74.ReadOnly = true;
     this.dataGridViewTextBoxColumn74.Width = 57;
     //
     // dataGridViewTextBoxColumn75
     //
     this.dataGridViewTextBoxColumn75.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn75.DataPropertyName = "DisplayClassroomName";
     this.dataGridViewTextBoxColumn75.HeaderText = "場地";
     this.dataGridViewTextBoxColumn75.Name = "dataGridViewTextBoxColumn75";
     this.dataGridViewTextBoxColumn75.ReadOnly = true;
     this.dataGridViewTextBoxColumn75.Width = 57;
     //
     // dataGridViewTextBoxColumn76
     //
     this.dataGridViewTextBoxColumn76.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn76.DataPropertyName = "DisplaySubjectName";
     this.dataGridViewTextBoxColumn76.HeaderText = "科目";
     this.dataGridViewTextBoxColumn76.Name = "dataGridViewTextBoxColumn76";
     this.dataGridViewTextBoxColumn76.ReadOnly = true;
     this.dataGridViewTextBoxColumn76.Width = 57;
     //
     // dataGridViewTextBoxColumn77
     //
     this.dataGridViewTextBoxColumn77.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn77.DataPropertyName = "SubjectAlias";
     this.dataGridViewTextBoxColumn77.HeaderText = "科目簡稱";
     this.dataGridViewTextBoxColumn77.Name = "dataGridViewTextBoxColumn77";
     this.dataGridViewTextBoxColumn77.ReadOnly = true;
     this.dataGridViewTextBoxColumn77.Width = 81;
     //
     // dataGridViewTextBoxColumn79
     //
     this.dataGridViewTextBoxColumn79.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn79.DataPropertyName = "CourseGroup";
     this.dataGridViewTextBoxColumn79.HeaderText = "課程群組";
     this.dataGridViewTextBoxColumn79.Name = "dataGridViewTextBoxColumn79";
     this.dataGridViewTextBoxColumn79.ReadOnly = true;
     this.dataGridViewTextBoxColumn79.Width = 81;
     //
     // dataGridViewTextBoxColumn81
     //
     this.dataGridViewTextBoxColumn81.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn81.DataPropertyName = "WeekDayCondition";
     this.dataGridViewTextBoxColumn81.HeaderText = "星期條件";
     this.dataGridViewTextBoxColumn81.Name = "dataGridViewTextBoxColumn81";
     this.dataGridViewTextBoxColumn81.ReadOnly = true;
     this.dataGridViewTextBoxColumn81.Width = 81;
     //
     // dataGridViewTextBoxColumn82
     //
     this.dataGridViewTextBoxColumn82.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn82.DataPropertyName = "PeriodCondition";
     this.dataGridViewTextBoxColumn82.HeaderText = "節次條件";
     this.dataGridViewTextBoxColumn82.Name = "dataGridViewTextBoxColumn82";
     this.dataGridViewTextBoxColumn82.ReadOnly = true;
     this.dataGridViewTextBoxColumn82.Width = 81;
     //
     // dataGridViewTextBoxColumn83
     //
     this.dataGridViewTextBoxColumn83.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn83.DataPropertyName = "DisplayAllowLongBreak";
     this.dataGridViewTextBoxColumn83.HeaderText = "跨中午";
     this.dataGridViewTextBoxColumn83.Name = "dataGridViewTextBoxColumn83";
     this.dataGridViewTextBoxColumn83.ReadOnly = true;
     this.dataGridViewTextBoxColumn83.Width = 69;
     //
     // dataGridViewTextBoxColumn84
     //
     this.dataGridViewTextBoxColumn84.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn84.DataPropertyName = "DisplayAllowDuplicate";
     this.dataGridViewTextBoxColumn84.HeaderText = "可重複";
     this.dataGridViewTextBoxColumn84.Name = "dataGridViewTextBoxColumn84";
     this.dataGridViewTextBoxColumn84.ReadOnly = true;
     this.dataGridViewTextBoxColumn84.Width = 69;
     //
     // dataGridViewTextBoxColumn85
     //
     this.dataGridViewTextBoxColumn85.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn85.DataPropertyName = "DisplayLimitNextDay";
     this.dataGridViewTextBoxColumn85.HeaderText = "不連天";
     this.dataGridViewTextBoxColumn85.Name = "dataGridViewTextBoxColumn85";
     this.dataGridViewTextBoxColumn85.ReadOnly = true;
     this.dataGridViewTextBoxColumn85.Width = 69;
     //
     // dataGridViewTextBoxColumn86
     //
     this.dataGridViewTextBoxColumn86.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn86.DataPropertyName = "DisplayWeekFlag";
     this.dataGridViewTextBoxColumn86.HeaderText = "單雙週";
     this.dataGridViewTextBoxColumn86.Name = "dataGridViewTextBoxColumn86";
     this.dataGridViewTextBoxColumn86.ReadOnly = true;
     this.dataGridViewTextBoxColumn86.Width = 69;
     //
     // dataGridViewTextBoxColumn87
     //
     this.dataGridViewTextBoxColumn87.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn87.DataPropertyName = "Priority";
     this.dataGridViewTextBoxColumn87.HeaderText = "優先";
     this.dataGridViewTextBoxColumn87.Name = "dataGridViewTextBoxColumn87";
     this.dataGridViewTextBoxColumn87.ReadOnly = true;
     this.dataGridViewTextBoxColumn87.Width = 57;
     //
     // dataGridViewTextBoxColumn88
     //
     this.dataGridViewTextBoxColumn88.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn88.DataPropertyName = "DispalyTimeTableName";
     this.dataGridViewTextBoxColumn88.HeaderText = "時間表";
     this.dataGridViewTextBoxColumn88.Name = "dataGridViewTextBoxColumn88";
     this.dataGridViewTextBoxColumn88.ReadOnly = true;
     this.dataGridViewTextBoxColumn88.Width = 69;
     //
     // dataGridViewTextBoxColumn89
     //
     this.dataGridViewTextBoxColumn89.DataPropertyName = "ColorIndex";
     this.dataGridViewTextBoxColumn89.HeaderText = "顏色";
     this.dataGridViewTextBoxColumn89.Name = "dataGridViewTextBoxColumn89";
     this.dataGridViewTextBoxColumn89.ReadOnly = true;
     this.dataGridViewTextBoxColumn89.Visible = false;
     this.dataGridViewTextBoxColumn89.Width = 54;
     //
     // dataGridViewTextBoxColumn90
     //
     this.dataGridViewTextBoxColumn90.DataPropertyName = "EventID";
     this.dataGridViewTextBoxColumn90.HeaderText = "分課編號";
     this.dataGridViewTextBoxColumn90.Name = "dataGridViewTextBoxColumn90";
     this.dataGridViewTextBoxColumn90.ReadOnly = true;
     this.dataGridViewTextBoxColumn90.Width = 81;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.labelX6);
     this.panel3.Controls.Add(this.lblClass);
     this.panel3.Controls.Add(this.labelX3);
     this.panel3.Controls.Add(this.labelX1);
     this.panel3.Controls.Add(this.btnClassEventExpand);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel3.Location = new System.Drawing.Point(0, 0);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(139, 35);
     this.panel3.TabIndex = 9;
     //
     // labelX6
     //
     this.labelX6.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.labelX6.AutoSize = true;
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX6.Location = new System.Drawing.Point(-20, 4);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(123, 26);
     this.labelX6.TabIndex = 4;
     this.labelX6.Text = "黃色為未排分課";
     //
     // lblClass
     //
     this.lblClass.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblClass.AutoSize = true;
     //
     //
     //
     this.lblClass.BackgroundStyle.Class = "";
     this.lblClass.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblClass.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.lblClass.Location = new System.Drawing.Point(7, 4);
     this.lblClass.Name = "lblClass";
     this.lblClass.Size = new System.Drawing.Size(0, 0);
     this.lblClass.TabIndex = 3;
     //
     // labelX3
     //
     this.labelX3.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelX3.AutoSize = true;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX3.Location = new System.Drawing.Point(7, 4);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(0, 0);
     this.labelX3.TabIndex = 2;
     //
     // labelX1
     //
     this.labelX1.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelX1.AutoSize = true;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX1.Location = new System.Drawing.Point(7, 4);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(0, 0);
     this.labelX1.TabIndex = 1;
     //
     // btnClassEventExpand
     //
     this.btnClassEventExpand.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnClassEventExpand.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnClassEventExpand.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnClassEventExpand.Location = new System.Drawing.Point(105, 5);
     this.btnClassEventExpand.Name = "btnClassEventExpand";
     this.btnClassEventExpand.Size = new System.Drawing.Size(28, 23);
     this.btnClassEventExpand.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnClassEventExpand.TabIndex = 0;
     this.btnClassEventExpand.Text = ">>";
     //
     // tabClass
     //
     this.tabClass.AttachedControl = this.superTabControlPanel2;
     this.tabClass.GlobalItem = false;
     this.tabClass.Name = "tabClass";
     this.tabClass.Text = "班級";
     //
     // superTabControlPanel3
     //
     this.superTabControlPanel3.Controls.Add(this.pnlWhereList);
     this.superTabControlPanel3.Controls.Add(this.splClassroom);
     this.superTabControlPanel3.Controls.Add(this.pnlWhereLPView);
     this.superTabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel3.Location = new System.Drawing.Point(0, 0);
     this.superTabControlPanel3.Name = "superTabControlPanel3";
     this.superTabControlPanel3.Size = new System.Drawing.Size(739, 574);
     this.superTabControlPanel3.TabIndex = 0;
     this.superTabControlPanel3.TabItem = this.tabClassroom;
     //
     // pnlWhereList
     //
     this.pnlWhereList.Controls.Add(this.panel9);
     this.pnlWhereList.Controls.Add(this.panel6);
     this.pnlWhereList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlWhereList.Location = new System.Drawing.Point(0, 0);
     this.pnlWhereList.Name = "pnlWhereList";
     this.pnlWhereList.Size = new System.Drawing.Size(136, 574);
     this.pnlWhereList.TabIndex = 2;
     //
     // panel9
     //
     this.panel9.Controls.Add(this.grdClassroomEvent);
     this.panel9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel9.Location = new System.Drawing.Point(0, 35);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(136, 539);
     this.panel9.TabIndex = 11;
     //
     // grdClassroomEvent
     //
     this.grdClassroomEvent.AllowUserToAddRows = false;
     this.grdClassroomEvent.AllowUserToDeleteRows = false;
     this.grdClassroomEvent.AllowUserToOrderColumns = true;
     this.grdClassroomEvent.AllowUserToResizeRows = false;
     this.grdClassroomEvent.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.grdClassroomEvent.BackgroundColor = System.Drawing.Color.White;
     this.grdClassroomEvent.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdClassroomEvent.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn91,
     this.dataGridViewTextBoxColumn92,
     this.dataGridViewTextBoxColumn93,
     this.dataGridViewTextBoxColumn94,
     this.dataGridViewTextBoxColumn100,
     this.dataGridViewTextBoxColumn102,
     this.dataGridViewTextBoxColumn95,
     this.dataGridViewTextBoxColumn96,
     this.dataGridViewTextBoxColumn97,
     this.dataGridViewTextBoxColumn98,
     this.dataGridViewTextBoxColumn99,
     this.dataGridViewTextBoxColumn101,
     this.dataGridViewTextBoxColumn103,
     this.dataGridViewTextBoxColumn104,
     this.dataGridViewTextBoxColumn105,
     this.dataGridViewTextBoxColumn106,
     this.dataGridViewTextBoxColumn107,
     this.dataGridViewTextBoxColumn108,
     this.dataGridViewTextBoxColumn109,
     this.dataGridViewTextBoxColumn110,
     this.dataGridViewTextBoxColumn111,
     this.dataGridViewTextBoxColumn112});
     dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle18.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle18.Font = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle18.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle18.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle18.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle18.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdClassroomEvent.DefaultCellStyle = dataGridViewCellStyle18;
     this.grdClassroomEvent.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdClassroomEvent.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     this.grdClassroomEvent.Location = new System.Drawing.Point(0, 0);
     this.grdClassroomEvent.Name = "grdClassroomEvent";
     this.grdClassroomEvent.ReadOnly = true;
     this.grdClassroomEvent.RowHeadersVisible = false;
     this.grdClassroomEvent.RowTemplate.Height = 24;
     this.grdClassroomEvent.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdClassroomEvent.Size = new System.Drawing.Size(136, 539);
     this.grdClassroomEvent.TabIndex = 11;
     this.grdClassroomEvent.VirtualMode = true;
     //
     // dataGridViewTextBoxColumn91
     //
     this.dataGridViewTextBoxColumn91.DataPropertyName = "DisplayManualLock";
     dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn91.DefaultCellStyle = dataGridViewCellStyle13;
     this.dataGridViewTextBoxColumn91.HeaderText = "鎖定";
     this.dataGridViewTextBoxColumn91.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn91.Name = "dataGridViewTextBoxColumn91";
     this.dataGridViewTextBoxColumn91.ReadOnly = true;
     this.dataGridViewTextBoxColumn91.Width = 57;
     //
     // dataGridViewTextBoxColumn92
     //
     this.dataGridViewTextBoxColumn92.DataPropertyName = "DisplaySolutionCount";
     dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn92.DefaultCellStyle = dataGridViewCellStyle14;
     this.dataGridViewTextBoxColumn92.HeaderText = "方案";
     this.dataGridViewTextBoxColumn92.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn92.Name = "dataGridViewTextBoxColumn92";
     this.dataGridViewTextBoxColumn92.ReadOnly = true;
     this.dataGridViewTextBoxColumn92.Width = 57;
     //
     // dataGridViewTextBoxColumn93
     //
     this.dataGridViewTextBoxColumn93.DataPropertyName = "WeekDay";
     dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn93.DefaultCellStyle = dataGridViewCellStyle15;
     this.dataGridViewTextBoxColumn93.HeaderText = "星期";
     this.dataGridViewTextBoxColumn93.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn93.Name = "dataGridViewTextBoxColumn93";
     this.dataGridViewTextBoxColumn93.ReadOnly = true;
     this.dataGridViewTextBoxColumn93.Width = 57;
     //
     // dataGridViewTextBoxColumn94
     //
     this.dataGridViewTextBoxColumn94.DataPropertyName = "PeriodNo";
     dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn94.DefaultCellStyle = dataGridViewCellStyle16;
     this.dataGridViewTextBoxColumn94.HeaderText = "節次";
     this.dataGridViewTextBoxColumn94.Name = "dataGridViewTextBoxColumn94";
     this.dataGridViewTextBoxColumn94.ReadOnly = true;
     this.dataGridViewTextBoxColumn94.Width = 57;
     //
     // dataGridViewTextBoxColumn100
     //
     this.dataGridViewTextBoxColumn100.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn100.DataPropertyName = "CourseName";
     this.dataGridViewTextBoxColumn100.HeaderText = "課程名稱";
     this.dataGridViewTextBoxColumn100.Name = "dataGridViewTextBoxColumn100";
     this.dataGridViewTextBoxColumn100.ReadOnly = true;
     this.dataGridViewTextBoxColumn100.Width = 81;
     //
     // dataGridViewTextBoxColumn102
     //
     this.dataGridViewTextBoxColumn102.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn102.DataPropertyName = "Length";
     dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn102.DefaultCellStyle = dataGridViewCellStyle17;
     this.dataGridViewTextBoxColumn102.HeaderText = "節數";
     this.dataGridViewTextBoxColumn102.Name = "dataGridViewTextBoxColumn102";
     this.dataGridViewTextBoxColumn102.ReadOnly = true;
     this.dataGridViewTextBoxColumn102.Width = 57;
     //
     // dataGridViewTextBoxColumn95
     //
     this.dataGridViewTextBoxColumn95.DataPropertyName = "DisplayTeacherName";
     this.dataGridViewTextBoxColumn95.HeaderText = "教師";
     this.dataGridViewTextBoxColumn95.Name = "dataGridViewTextBoxColumn95";
     this.dataGridViewTextBoxColumn95.ReadOnly = true;
     this.dataGridViewTextBoxColumn95.Width = 57;
     //
     // dataGridViewTextBoxColumn96
     //
     this.dataGridViewTextBoxColumn96.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn96.DataPropertyName = "DisplayClassName";
     this.dataGridViewTextBoxColumn96.HeaderText = "班級";
     this.dataGridViewTextBoxColumn96.Name = "dataGridViewTextBoxColumn96";
     this.dataGridViewTextBoxColumn96.ReadOnly = true;
     this.dataGridViewTextBoxColumn96.Width = 57;
     //
     // dataGridViewTextBoxColumn97
     //
     this.dataGridViewTextBoxColumn97.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn97.DataPropertyName = "DisplayClassroomName";
     this.dataGridViewTextBoxColumn97.HeaderText = "場地";
     this.dataGridViewTextBoxColumn97.Name = "dataGridViewTextBoxColumn97";
     this.dataGridViewTextBoxColumn97.ReadOnly = true;
     this.dataGridViewTextBoxColumn97.Width = 57;
     //
     // dataGridViewTextBoxColumn98
     //
     this.dataGridViewTextBoxColumn98.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn98.DataPropertyName = "DisplaySubjectName";
     this.dataGridViewTextBoxColumn98.HeaderText = "科目";
     this.dataGridViewTextBoxColumn98.Name = "dataGridViewTextBoxColumn98";
     this.dataGridViewTextBoxColumn98.ReadOnly = true;
     this.dataGridViewTextBoxColumn98.Width = 57;
     //
     // dataGridViewTextBoxColumn99
     //
     this.dataGridViewTextBoxColumn99.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn99.DataPropertyName = "SubjectAlias";
     this.dataGridViewTextBoxColumn99.HeaderText = "科目簡稱";
     this.dataGridViewTextBoxColumn99.Name = "dataGridViewTextBoxColumn99";
     this.dataGridViewTextBoxColumn99.ReadOnly = true;
     this.dataGridViewTextBoxColumn99.Width = 81;
     //
     // dataGridViewTextBoxColumn101
     //
     this.dataGridViewTextBoxColumn101.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn101.DataPropertyName = "CourseGroup";
     this.dataGridViewTextBoxColumn101.HeaderText = "課程群組";
     this.dataGridViewTextBoxColumn101.Name = "dataGridViewTextBoxColumn101";
     this.dataGridViewTextBoxColumn101.ReadOnly = true;
     this.dataGridViewTextBoxColumn101.Width = 81;
     //
     // dataGridViewTextBoxColumn103
     //
     this.dataGridViewTextBoxColumn103.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn103.DataPropertyName = "WeekDayCondition";
     this.dataGridViewTextBoxColumn103.HeaderText = "星期條件";
     this.dataGridViewTextBoxColumn103.Name = "dataGridViewTextBoxColumn103";
     this.dataGridViewTextBoxColumn103.ReadOnly = true;
     this.dataGridViewTextBoxColumn103.Width = 81;
     //
     // dataGridViewTextBoxColumn104
     //
     this.dataGridViewTextBoxColumn104.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn104.DataPropertyName = "PeriodCondition";
     this.dataGridViewTextBoxColumn104.HeaderText = "節次條件";
     this.dataGridViewTextBoxColumn104.Name = "dataGridViewTextBoxColumn104";
     this.dataGridViewTextBoxColumn104.ReadOnly = true;
     this.dataGridViewTextBoxColumn104.Width = 81;
     //
     // dataGridViewTextBoxColumn105
     //
     this.dataGridViewTextBoxColumn105.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn105.DataPropertyName = "DisplayAllowLongBreak";
     this.dataGridViewTextBoxColumn105.HeaderText = "跨中午";
     this.dataGridViewTextBoxColumn105.Name = "dataGridViewTextBoxColumn105";
     this.dataGridViewTextBoxColumn105.ReadOnly = true;
     this.dataGridViewTextBoxColumn105.Width = 69;
     //
     // dataGridViewTextBoxColumn106
     //
     this.dataGridViewTextBoxColumn106.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn106.DataPropertyName = "DisplayAllowDuplicate";
     this.dataGridViewTextBoxColumn106.HeaderText = "可重複";
     this.dataGridViewTextBoxColumn106.Name = "dataGridViewTextBoxColumn106";
     this.dataGridViewTextBoxColumn106.ReadOnly = true;
     this.dataGridViewTextBoxColumn106.Width = 69;
     //
     // dataGridViewTextBoxColumn107
     //
     this.dataGridViewTextBoxColumn107.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn107.DataPropertyName = "DisplayLimitNextDay";
     this.dataGridViewTextBoxColumn107.HeaderText = "不連天";
     this.dataGridViewTextBoxColumn107.Name = "dataGridViewTextBoxColumn107";
     this.dataGridViewTextBoxColumn107.ReadOnly = true;
     this.dataGridViewTextBoxColumn107.Width = 69;
     //
     // dataGridViewTextBoxColumn108
     //
     this.dataGridViewTextBoxColumn108.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn108.DataPropertyName = "DisplayWeekFlag";
     this.dataGridViewTextBoxColumn108.HeaderText = "單雙週";
     this.dataGridViewTextBoxColumn108.Name = "dataGridViewTextBoxColumn108";
     this.dataGridViewTextBoxColumn108.ReadOnly = true;
     this.dataGridViewTextBoxColumn108.Width = 69;
     //
     // dataGridViewTextBoxColumn109
     //
     this.dataGridViewTextBoxColumn109.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn109.DataPropertyName = "Priority";
     this.dataGridViewTextBoxColumn109.HeaderText = "優先";
     this.dataGridViewTextBoxColumn109.Name = "dataGridViewTextBoxColumn109";
     this.dataGridViewTextBoxColumn109.ReadOnly = true;
     this.dataGridViewTextBoxColumn109.Width = 57;
     //
     // dataGridViewTextBoxColumn110
     //
     this.dataGridViewTextBoxColumn110.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn110.DataPropertyName = "DispalyTimeTableName";
     this.dataGridViewTextBoxColumn110.HeaderText = "時間表";
     this.dataGridViewTextBoxColumn110.Name = "dataGridViewTextBoxColumn110";
     this.dataGridViewTextBoxColumn110.ReadOnly = true;
     this.dataGridViewTextBoxColumn110.Width = 69;
     //
     // dataGridViewTextBoxColumn111
     //
     this.dataGridViewTextBoxColumn111.DataPropertyName = "ColorIndex";
     this.dataGridViewTextBoxColumn111.HeaderText = "顏色";
     this.dataGridViewTextBoxColumn111.Name = "dataGridViewTextBoxColumn111";
     this.dataGridViewTextBoxColumn111.ReadOnly = true;
     this.dataGridViewTextBoxColumn111.Visible = false;
     this.dataGridViewTextBoxColumn111.Width = 54;
     //
     // dataGridViewTextBoxColumn112
     //
     this.dataGridViewTextBoxColumn112.DataPropertyName = "EventID";
     this.dataGridViewTextBoxColumn112.HeaderText = "分課編號";
     this.dataGridViewTextBoxColumn112.Name = "dataGridViewTextBoxColumn112";
     this.dataGridViewTextBoxColumn112.ReadOnly = true;
     this.dataGridViewTextBoxColumn112.Width = 81;
     //
     // panel6
     //
     this.panel6.Controls.Add(this.labelX7);
     this.panel6.Controls.Add(this.lblClassroom);
     this.panel6.Controls.Add(this.labelX4);
     this.panel6.Controls.Add(this.labelX5);
     this.panel6.Controls.Add(this.btnClassroomEventExpand);
     this.panel6.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel6.Location = new System.Drawing.Point(0, 0);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(136, 35);
     this.panel6.TabIndex = 10;
     //
     // labelX7
     //
     this.labelX7.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.labelX7.AutoSize = true;
     //
     //
     //
     this.labelX7.BackgroundStyle.Class = "";
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX7.Location = new System.Drawing.Point(-23, 4);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(123, 26);
     this.labelX7.TabIndex = 5;
     this.labelX7.Text = "黃色為未排分課";
     //
     // lblClassroom
     //
     this.lblClassroom.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblClassroom.AutoSize = true;
     //
     //
     //
     this.lblClassroom.BackgroundStyle.Class = "";
     this.lblClassroom.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblClassroom.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.lblClassroom.Location = new System.Drawing.Point(7, 4);
     this.lblClassroom.Name = "lblClassroom";
     this.lblClassroom.Size = new System.Drawing.Size(0, 0);
     this.lblClassroom.TabIndex = 3;
     //
     // labelX4
     //
     this.labelX4.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelX4.AutoSize = true;
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX4.Location = new System.Drawing.Point(7, 4);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(0, 0);
     this.labelX4.TabIndex = 2;
     //
     // labelX5
     //
     this.labelX5.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelX5.AutoSize = true;
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX5.Location = new System.Drawing.Point(7, 4);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(0, 0);
     this.labelX5.TabIndex = 1;
     //
     // btnClassroomEventExpand
     //
     this.btnClassroomEventExpand.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnClassroomEventExpand.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnClassroomEventExpand.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnClassroomEventExpand.Location = new System.Drawing.Point(102, 5);
     this.btnClassroomEventExpand.Name = "btnClassroomEventExpand";
     this.btnClassroomEventExpand.Size = new System.Drawing.Size(28, 23);
     this.btnClassroomEventExpand.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnClassroomEventExpand.TabIndex = 0;
     this.btnClassroomEventExpand.Text = ">>";
     //
     // splClassroom
     //
     this.splClassroom.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClassroom.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClassroom.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.splClassroom.Dock = System.Windows.Forms.DockStyle.Right;
     this.splClassroom.ExpandableControl = this.pnlWhereLPView;
     this.splClassroom.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClassroom.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClassroom.ExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splClassroom.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splClassroom.GripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splClassroom.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splClassroom.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.splClassroom.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.splClassroom.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(200)))), ((int)(((byte)(103)))));
     this.splClassroom.HotBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(226)))), ((int)(((byte)(135)))));
     this.splClassroom.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2;
     this.splClassroom.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.splClassroom.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClassroom.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClassroom.HotExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splClassroom.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splClassroom.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClassroom.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClassroom.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.splClassroom.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.splClassroom.Location = new System.Drawing.Point(136, 0);
     this.splClassroom.Name = "splClassroom";
     this.splClassroom.Size = new System.Drawing.Size(3, 574);
     this.splClassroom.Style = DevComponents.DotNetBar.eSplitterStyle.Office2007;
     this.splClassroom.TabIndex = 1;
     this.splClassroom.TabStop = false;
     //
     // pnlWhereLPView
     //
     this.pnlWhereLPView.Controls.Add(this.tabClassroomLPView);
     this.pnlWhereLPView.Dock = System.Windows.Forms.DockStyle.Right;
     this.pnlWhereLPView.Location = new System.Drawing.Point(139, 0);
     this.pnlWhereLPView.Name = "pnlWhereLPView";
     this.pnlWhereLPView.Size = new System.Drawing.Size(600, 574);
     this.pnlWhereLPView.TabIndex = 0;
     //
     // tabClassroomLPView
     //
     this.tabClassroomLPView.AutoCloseTabs = true;
     this.tabClassroomLPView.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabClassroomLPView.CanReorderTabs = true;
     this.tabClassroomLPView.CloseButtonOnTabsVisible = true;
     this.tabClassroomLPView.CloseButtonPosition = DevComponents.DotNetBar.eTabCloseButtonPosition.Right;
     this.tabClassroomLPView.Controls.Add(this.tabControlPanel3);
     this.tabClassroomLPView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabClassroomLPView.Location = new System.Drawing.Point(0, 0);
     this.tabClassroomLPView.Name = "tabClassroomLPView";
     this.tabClassroomLPView.SelectedTabFont = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Bold);
     this.tabClassroomLPView.SelectedTabIndex = -1;
     this.tabClassroomLPView.Size = new System.Drawing.Size(600, 574);
     this.tabClassroomLPView.TabIndex = 3;
     this.tabClassroomLPView.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabClassroomLPView.Tabs.Add(this.tabItem4);
     this.tabClassroomLPView.Text = "tabControl1";
     //
     // tabControlPanel3
     //
     this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel3.Location = new System.Drawing.Point(0, 28);
     this.tabControlPanel3.Name = "tabControlPanel3";
     this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel3.Size = new System.Drawing.Size(600, 546);
     this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabControlPanel3.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel3.Style.GradientAngle = 90;
     this.tabControlPanel3.TabIndex = 1;
     this.tabControlPanel3.TabItem = this.tabItem4;
     //
     // tabItem4
     //
     this.tabItem4.AttachedControl = this.tabControlPanel3;
     this.tabItem4.CloseButtonVisible = false;
     this.tabItem4.Name = "tabItem4";
     this.tabItem4.Text = "功課表";
     //
     // tabClassroom
     //
     this.tabClassroom.AttachedControl = this.superTabControlPanel3;
     this.tabClassroom.GlobalItem = false;
     this.tabClassroom.Name = "tabClassroom";
     this.tabClassroom.Text = "場地";
     //
     // expandableSplitter1
     //
     this.expandableSplitter1.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.expandableSplitter1.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandableSplitter1.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.expandableSplitter1.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.ExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.expandableSplitter1.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter1.GripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.expandableSplitter1.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter1.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.expandableSplitter1.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.expandableSplitter1.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(200)))), ((int)(((byte)(103)))));
     this.expandableSplitter1.HotBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(226)))), ((int)(((byte)(135)))));
     this.expandableSplitter1.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2;
     this.expandableSplitter1.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.expandableSplitter1.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.expandableSplitter1.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.HotExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.expandableSplitter1.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter1.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.expandableSplitter1.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.expandableSplitter1.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.expandableSplitter1.Location = new System.Drawing.Point(206, 0);
     this.expandableSplitter1.Name = "expandableSplitter1";
     this.expandableSplitter1.Size = new System.Drawing.Size(3, 574);
     this.expandableSplitter1.Style = DevComponents.DotNetBar.eSplitterStyle.Office2007;
     this.expandableSplitter1.TabIndex = 10;
     this.expandableSplitter1.TabStop = false;
     //
     // LeftNavigationPanel
     //
     this.LeftNavigationPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.LeftNavigationPanel.CanCollapse = true;
     this.LeftNavigationPanel.Controls.Add(this.pnlClassroom);
     this.LeftNavigationPanel.Controls.Add(this.pnlClass);
     this.LeftNavigationPanel.Controls.Add(this.pnlTeacher);
     this.LeftNavigationPanel.Dock = System.Windows.Forms.DockStyle.Left;
     this.LeftNavigationPanel.ItemPaddingBottom = 2;
     this.LeftNavigationPanel.ItemPaddingTop = 2;
     this.LeftNavigationPanel.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnTeacher,
     this.btnClass,
     this.btnClassroom});
     this.LeftNavigationPanel.Location = new System.Drawing.Point(0, 0);
     this.LeftNavigationPanel.Name = "LeftNavigationPanel";
     this.LeftNavigationPanel.Padding = new System.Windows.Forms.Padding(1);
     this.LeftNavigationPanel.Size = new System.Drawing.Size(206, 574);
     this.LeftNavigationPanel.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.LeftNavigationPanel.TabIndex = 9;
     //
     //
     //
     this.LeftNavigationPanel.TitlePanel.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.LeftNavigationPanel.TitlePanel.Dock = System.Windows.Forms.DockStyle.Top;
     this.LeftNavigationPanel.TitlePanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LeftNavigationPanel.TitlePanel.Location = new System.Drawing.Point(1, 1);
     this.LeftNavigationPanel.TitlePanel.Name = "panelTitle";
     this.LeftNavigationPanel.TitlePanel.Size = new System.Drawing.Size(202, 24);
     this.LeftNavigationPanel.TitlePanel.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.LeftNavigationPanel.TitlePanel.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.LeftNavigationPanel.TitlePanel.Style.Border = DevComponents.DotNetBar.eBorderType.RaisedInner;
     this.LeftNavigationPanel.TitlePanel.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.LeftNavigationPanel.TitlePanel.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.LeftNavigationPanel.TitlePanel.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.LeftNavigationPanel.TitlePanel.Style.GradientAngle = 90;
     this.LeftNavigationPanel.TitlePanel.Style.MarginLeft = 4;
     this.LeftNavigationPanel.TitlePanel.TabIndex = 0;
     this.LeftNavigationPanel.TitlePanel.Text = "場地";
     //
     // pnlClassroom
     //
     this.pnlClassroom.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.pnlClassroom.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlClassroom.Location = new System.Drawing.Point(1, 25);
     this.pnlClassroom.Name = "pnlClassroom";
     this.pnlClassroom.ParentItem = this.btnClassroom;
     this.pnlClassroom.Size = new System.Drawing.Size(202, 514);
     this.pnlClassroom.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.pnlClassroom.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.pnlClassroom.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.pnlClassroom.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.pnlClassroom.Style.GradientAngle = 90;
     this.pnlClassroom.TabIndex = 4;
     //
     // btnClassroom
     //
     this.btnClassroom.Checked = true;
     this.btnClassroom.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.btnClassroom.Name = "btnClassroom";
     this.btnClassroom.OptionGroup = "navBar";
     this.btnClassroom.Text = "場地";
     this.btnClassroom.Visible = false;
     //
     // pnlClass
     //
     this.pnlClass.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.pnlClass.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlClass.Location = new System.Drawing.Point(1, 1);
     this.pnlClass.Name = "pnlClass";
     this.pnlClass.ParentItem = this.btnClass;
     this.pnlClass.Size = new System.Drawing.Size(202, 538);
     this.pnlClass.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.pnlClass.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.pnlClass.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.pnlClass.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.pnlClass.Style.GradientAngle = 90;
     this.pnlClass.TabIndex = 3;
     //
     // btnClass
     //
     this.btnClass.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.btnClass.Name = "btnClass";
     this.btnClass.OptionGroup = "navBar";
     this.btnClass.Text = "班級";
     this.btnClass.Visible = false;
     //
     // pnlTeacher
     //
     this.pnlTeacher.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.pnlTeacher.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlTeacher.Location = new System.Drawing.Point(1, 1);
     this.pnlTeacher.Name = "pnlTeacher";
     this.pnlTeacher.ParentItem = this.btnTeacher;
     this.pnlTeacher.Size = new System.Drawing.Size(202, 538);
     this.pnlTeacher.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.pnlTeacher.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.pnlTeacher.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.pnlTeacher.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.pnlTeacher.Style.GradientAngle = 90;
     this.pnlTeacher.TabIndex = 2;
     //
     // btnTeacher
     //
     this.btnTeacher.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.btnTeacher.Name = "btnTeacher";
     this.btnTeacher.OptionGroup = "navBar";
     this.btnTeacher.Text = "教師";
     this.btnTeacher.Visible = false;
     //
     // tabItem1
     //
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "tabItem1";
     //
     // buttonItem1
     //
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "buttonItem1";
     //
     // panel7
     //
     this.panel7.Controls.Add(this.buttonX2);
     this.panel7.Controls.Add(this.buttonX1);
     this.panel7.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel7.Location = new System.Drawing.Point(0, 412);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(208, 100);
     this.panel7.TabIndex = 0;
     //
     // buttonX2
     //
     this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX2.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX2.Dock = System.Windows.Forms.DockStyle.Top;
     this.buttonX2.Location = new System.Drawing.Point(0, 23);
     this.buttonX2.Name = "buttonX2";
     this.buttonX2.Size = new System.Drawing.Size(208, 23);
     this.buttonX2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX2.TabIndex = 1;
     this.buttonX2.Text = "待處理分課表";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Dock = System.Windows.Forms.DockStyle.Top;
     this.buttonX1.Location = new System.Drawing.Point(0, 0);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(208, 23);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 0;
     this.buttonX1.Text = "顯示所有分課";
     //
     // panel8
     //
     this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel8.Location = new System.Drawing.Point(0, 0);
     this.panel8.Name = "panel8";
     this.panel8.Size = new System.Drawing.Size(208, 412);
     this.panel8.TabIndex = 1;
     //
     // contextMenu
     //
     this.contextMenu.Name = "contextMenu";
     this.contextMenu.Size = new System.Drawing.Size(61, 4);
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn1.DataPropertyName = "Lock";
     dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn1.DefaultCellStyle = dataGridViewCellStyle19;
     this.dataGridViewTextBoxColumn1.HeaderText = "*";
     this.dataGridViewTextBoxColumn1.MinimumWidth = 30;
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn2.DataPropertyName = "SolutionCount";
     dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn2.DefaultCellStyle = dataGridViewCellStyle20;
     this.dataGridViewTextBoxColumn2.HeaderText = "教師";
     this.dataGridViewTextBoxColumn2.MinimumWidth = 30;
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     this.dataGridViewTextBoxColumn2.ReadOnly = true;
     this.dataGridViewTextBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn3.DataPropertyName = "WhoName";
     dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn3.DefaultCellStyle = dataGridViewCellStyle21;
     this.dataGridViewTextBoxColumn3.HeaderText = "課程";
     this.dataGridViewTextBoxColumn3.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
     this.dataGridViewTextBoxColumn3.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn4
     //
     this.dataGridViewTextBoxColumn4.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn4.DataPropertyName = "WhomName";
     dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn4.DefaultCellStyle = dataGridViewCellStyle22;
     this.dataGridViewTextBoxColumn4.HeaderText = "星期";
     this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
     this.dataGridViewTextBoxColumn4.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn5
     //
     this.dataGridViewTextBoxColumn5.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn5.DataPropertyName = "WhereName";
     dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn5.DefaultCellStyle = dataGridViewCellStyle23;
     this.dataGridViewTextBoxColumn5.HeaderText = "場地";
     this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
     this.dataGridViewTextBoxColumn5.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn6
     //
     this.dataGridViewTextBoxColumn6.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn6.DataPropertyName = "WhatName";
     dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn6.DefaultCellStyle = dataGridViewCellStyle24;
     this.dataGridViewTextBoxColumn6.HeaderText = "科目";
     this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
     this.dataGridViewTextBoxColumn6.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn7
     //
     this.dataGridViewTextBoxColumn7.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn7.DataPropertyName = "WhatAliasName";
     this.dataGridViewTextBoxColumn7.HeaderText = "科目簡稱";
     this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
     this.dataGridViewTextBoxColumn7.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn8
     //
     this.dataGridViewTextBoxColumn8.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn8.DataPropertyName = "CourseName";
     this.dataGridViewTextBoxColumn8.HeaderText = "課程名稱";
     this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
     this.dataGridViewTextBoxColumn8.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn9
     //
     this.dataGridViewTextBoxColumn9.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn9.DataPropertyName = "CourseGroup";
     this.dataGridViewTextBoxColumn9.HeaderText = "課程群組";
     this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
     this.dataGridViewTextBoxColumn9.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn10
     //
     this.dataGridViewTextBoxColumn10.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn10.DataPropertyName = "WeekDay";
     this.dataGridViewTextBoxColumn10.HeaderText = "星期";
     this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
     this.dataGridViewTextBoxColumn10.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn11
     //
     this.dataGridViewTextBoxColumn11.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn11.DataPropertyName = "PeriodNo";
     this.dataGridViewTextBoxColumn11.HeaderText = "節次";
     this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
     this.dataGridViewTextBoxColumn11.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn12
     //
     this.dataGridViewTextBoxColumn12.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn12.DataPropertyName = "Length";
     this.dataGridViewTextBoxColumn12.HeaderText = "節數";
     this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
     this.dataGridViewTextBoxColumn12.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn13
     //
     this.dataGridViewTextBoxColumn13.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn13.DataPropertyName = "WeekDayCondition";
     this.dataGridViewTextBoxColumn13.HeaderText = "星期條件";
     this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
     this.dataGridViewTextBoxColumn13.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn14
     //
     this.dataGridViewTextBoxColumn14.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn14.DataPropertyName = "PeriodCondition";
     this.dataGridViewTextBoxColumn14.HeaderText = "節次條件";
     this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
     this.dataGridViewTextBoxColumn14.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn15
     //
     this.dataGridViewTextBoxColumn15.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn15.DataPropertyName = "AllowLongBreak";
     this.dataGridViewTextBoxColumn15.HeaderText = "跨中午";
     this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
     this.dataGridViewTextBoxColumn15.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn16
     //
     this.dataGridViewTextBoxColumn16.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn16.DataPropertyName = "AllowDuplicate";
     this.dataGridViewTextBoxColumn16.HeaderText = "可重複";
     this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
     this.dataGridViewTextBoxColumn16.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn17
     //
     this.dataGridViewTextBoxColumn17.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn17.DataPropertyName = "LimitNextDay";
     this.dataGridViewTextBoxColumn17.HeaderText = "不連天";
     this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
     this.dataGridViewTextBoxColumn17.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn18
     //
     this.dataGridViewTextBoxColumn18.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn18.DataPropertyName = "WeekFlag";
     this.dataGridViewTextBoxColumn18.HeaderText = "單雙週";
     this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
     this.dataGridViewTextBoxColumn18.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn19
     //
     this.dataGridViewTextBoxColumn19.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn19.DataPropertyName = "Priority";
     this.dataGridViewTextBoxColumn19.HeaderText = "優先";
     this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
     this.dataGridViewTextBoxColumn19.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn20
     //
     this.dataGridViewTextBoxColumn20.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn20.DataPropertyName = "TimeTableName";
     this.dataGridViewTextBoxColumn20.HeaderText = "時間表";
     this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
     this.dataGridViewTextBoxColumn20.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn21
     //
     this.dataGridViewTextBoxColumn21.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn21.DataPropertyName = "ColorIndex";
     this.dataGridViewTextBoxColumn21.HeaderText = "分課編號";
     this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
     this.dataGridViewTextBoxColumn21.ReadOnly = true;
     this.dataGridViewTextBoxColumn21.Visible = false;
     //
     // dataGridViewTextBoxColumn22
     //
     this.dataGridViewTextBoxColumn22.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn22.DataPropertyName = "EventID";
     this.dataGridViewTextBoxColumn22.HeaderText = "姓名";
     this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
     this.dataGridViewTextBoxColumn22.ReadOnly = true;
     this.dataGridViewTextBoxColumn22.Visible = false;
     //
     // dataGridViewTextBoxColumn23
     //
     this.dataGridViewTextBoxColumn23.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn23.DataPropertyName = "Lock";
     dataGridViewCellStyle25.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn23.DefaultCellStyle = dataGridViewCellStyle25;
     this.dataGridViewTextBoxColumn23.HeaderText = "總時數";
     this.dataGridViewTextBoxColumn23.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
     this.dataGridViewTextBoxColumn23.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn24
     //
     this.dataGridViewTextBoxColumn24.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn24.DataPropertyName = "SolutionCount";
     dataGridViewCellStyle26.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn24.DefaultCellStyle = dataGridViewCellStyle26;
     this.dataGridViewTextBoxColumn24.HeaderText = "未排時數";
     this.dataGridViewTextBoxColumn24.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
     this.dataGridViewTextBoxColumn24.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn25
     //
     this.dataGridViewTextBoxColumn25.DataPropertyName = "Lock";
     dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn25.DefaultCellStyle = dataGridViewCellStyle27;
     this.dataGridViewTextBoxColumn25.HeaderText = "鎖定";
     this.dataGridViewTextBoxColumn25.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25";
     this.dataGridViewTextBoxColumn25.ReadOnly = true;
     this.dataGridViewTextBoxColumn25.Width = 57;
     //
     // dataGridViewTextBoxColumn26
     //
     this.dataGridViewTextBoxColumn26.DataPropertyName = "SolutionCount";
     dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn26.DefaultCellStyle = dataGridViewCellStyle28;
     this.dataGridViewTextBoxColumn26.HeaderText = "方案";
     this.dataGridViewTextBoxColumn26.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26";
     this.dataGridViewTextBoxColumn26.ReadOnly = true;
     this.dataGridViewTextBoxColumn26.Width = 57;
     //
     // dataGridViewTextBoxColumn27
     //
     this.dataGridViewTextBoxColumn27.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn27.DataPropertyName = "WeekDay";
     dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn27.DefaultCellStyle = dataGridViewCellStyle29;
     this.dataGridViewTextBoxColumn27.HeaderText = "星期";
     this.dataGridViewTextBoxColumn27.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27";
     this.dataGridViewTextBoxColumn27.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn28
     //
     this.dataGridViewTextBoxColumn28.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn28.DataPropertyName = "PeriodNo";
     dataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn28.DefaultCellStyle = dataGridViewCellStyle30;
     this.dataGridViewTextBoxColumn28.HeaderText = "節次";
     this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
     this.dataGridViewTextBoxColumn28.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn29
     //
     this.dataGridViewTextBoxColumn29.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn29.DataPropertyName = "WhoName";
     this.dataGridViewTextBoxColumn29.HeaderText = "教師";
     this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29";
     this.dataGridViewTextBoxColumn29.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn30
     //
     this.dataGridViewTextBoxColumn30.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn30.DataPropertyName = "WhomName";
     this.dataGridViewTextBoxColumn30.HeaderText = "班級";
     this.dataGridViewTextBoxColumn30.Name = "dataGridViewTextBoxColumn30";
     this.dataGridViewTextBoxColumn30.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn31
     //
     this.dataGridViewTextBoxColumn31.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn31.DataPropertyName = "WhereName";
     this.dataGridViewTextBoxColumn31.HeaderText = "場地";
     this.dataGridViewTextBoxColumn31.Name = "dataGridViewTextBoxColumn31";
     this.dataGridViewTextBoxColumn31.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn32
     //
     this.dataGridViewTextBoxColumn32.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn32.DataPropertyName = "WhatName";
     this.dataGridViewTextBoxColumn32.HeaderText = "科目";
     this.dataGridViewTextBoxColumn32.Name = "dataGridViewTextBoxColumn32";
     this.dataGridViewTextBoxColumn32.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn33
     //
     this.dataGridViewTextBoxColumn33.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn33.DataPropertyName = "WhatAliasName";
     this.dataGridViewTextBoxColumn33.HeaderText = "科目簡稱";
     this.dataGridViewTextBoxColumn33.Name = "dataGridViewTextBoxColumn33";
     this.dataGridViewTextBoxColumn33.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn34
     //
     this.dataGridViewTextBoxColumn34.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn34.DataPropertyName = "CourseName";
     this.dataGridViewTextBoxColumn34.HeaderText = "課程名稱";
     this.dataGridViewTextBoxColumn34.Name = "dataGridViewTextBoxColumn34";
     this.dataGridViewTextBoxColumn34.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn35
     //
     this.dataGridViewTextBoxColumn35.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn35.DataPropertyName = "CourseGroup";
     this.dataGridViewTextBoxColumn35.HeaderText = "課程群組";
     this.dataGridViewTextBoxColumn35.Name = "dataGridViewTextBoxColumn35";
     this.dataGridViewTextBoxColumn35.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn36
     //
     this.dataGridViewTextBoxColumn36.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn36.DataPropertyName = "Length";
     this.dataGridViewTextBoxColumn36.HeaderText = "節數";
     this.dataGridViewTextBoxColumn36.Name = "dataGridViewTextBoxColumn36";
     this.dataGridViewTextBoxColumn36.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn37
     //
     this.dataGridViewTextBoxColumn37.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn37.DataPropertyName = "WeekDayCondition";
     this.dataGridViewTextBoxColumn37.HeaderText = "星期條件";
     this.dataGridViewTextBoxColumn37.Name = "dataGridViewTextBoxColumn37";
     this.dataGridViewTextBoxColumn37.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn38
     //
     this.dataGridViewTextBoxColumn38.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn38.DataPropertyName = "PeriodCondition";
     this.dataGridViewTextBoxColumn38.HeaderText = "節次條件";
     this.dataGridViewTextBoxColumn38.Name = "dataGridViewTextBoxColumn38";
     this.dataGridViewTextBoxColumn38.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn39
     //
     this.dataGridViewTextBoxColumn39.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn39.DataPropertyName = "AllowLongBreak";
     this.dataGridViewTextBoxColumn39.HeaderText = "跨中午";
     this.dataGridViewTextBoxColumn39.Name = "dataGridViewTextBoxColumn39";
     this.dataGridViewTextBoxColumn39.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn40
     //
     this.dataGridViewTextBoxColumn40.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn40.DataPropertyName = "AllowDuplicate";
     this.dataGridViewTextBoxColumn40.HeaderText = "可重複";
     this.dataGridViewTextBoxColumn40.Name = "dataGridViewTextBoxColumn40";
     this.dataGridViewTextBoxColumn40.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn41
     //
     this.dataGridViewTextBoxColumn41.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn41.DataPropertyName = "LimitNextDay";
     this.dataGridViewTextBoxColumn41.HeaderText = "不連天";
     this.dataGridViewTextBoxColumn41.Name = "dataGridViewTextBoxColumn41";
     this.dataGridViewTextBoxColumn41.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn42
     //
     this.dataGridViewTextBoxColumn42.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn42.DataPropertyName = "WeekFlag";
     this.dataGridViewTextBoxColumn42.HeaderText = "單雙週";
     this.dataGridViewTextBoxColumn42.Name = "dataGridViewTextBoxColumn42";
     this.dataGridViewTextBoxColumn42.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn43
     //
     this.dataGridViewTextBoxColumn43.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn43.DataPropertyName = "Priority";
     this.dataGridViewTextBoxColumn43.HeaderText = "優先";
     this.dataGridViewTextBoxColumn43.Name = "dataGridViewTextBoxColumn43";
     this.dataGridViewTextBoxColumn43.ReadOnly = true;
     this.dataGridViewTextBoxColumn43.Visible = false;
     //
     // dataGridViewTextBoxColumn44
     //
     this.dataGridViewTextBoxColumn44.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn44.DataPropertyName = "TimeTableName";
     this.dataGridViewTextBoxColumn44.HeaderText = "時間表";
     this.dataGridViewTextBoxColumn44.Name = "dataGridViewTextBoxColumn44";
     this.dataGridViewTextBoxColumn44.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn45
     //
     this.dataGridViewTextBoxColumn45.DataPropertyName = "ColorIndex";
     dataGridViewCellStyle31.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn45.DefaultCellStyle = dataGridViewCellStyle31;
     this.dataGridViewTextBoxColumn45.HeaderText = "顏色";
     this.dataGridViewTextBoxColumn45.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn45.Name = "dataGridViewTextBoxColumn45";
     this.dataGridViewTextBoxColumn45.ReadOnly = true;
     this.dataGridViewTextBoxColumn45.Visible = false;
     this.dataGridViewTextBoxColumn45.Width = 57;
     //
     // dataGridViewTextBoxColumn46
     //
     this.dataGridViewTextBoxColumn46.DataPropertyName = "EventID";
     dataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn46.DefaultCellStyle = dataGridViewCellStyle32;
     this.dataGridViewTextBoxColumn46.HeaderText = "分課編號";
     this.dataGridViewTextBoxColumn46.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn46.Name = "dataGridViewTextBoxColumn46";
     this.dataGridViewTextBoxColumn46.ReadOnly = true;
     this.dataGridViewTextBoxColumn46.Width = 78;
     //
     // dataGridViewTextBoxColumn47
     //
     this.dataGridViewTextBoxColumn47.DataPropertyName = "Lock";
     dataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn47.DefaultCellStyle = dataGridViewCellStyle33;
     this.dataGridViewTextBoxColumn47.HeaderText = "鎖定";
     this.dataGridViewTextBoxColumn47.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn47.Name = "dataGridViewTextBoxColumn47";
     this.dataGridViewTextBoxColumn47.ReadOnly = true;
     this.dataGridViewTextBoxColumn47.Width = 54;
     //
     // dataGridViewTextBoxColumn48
     //
     this.dataGridViewTextBoxColumn48.DataPropertyName = "SolutionCount";
     dataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn48.DefaultCellStyle = dataGridViewCellStyle34;
     this.dataGridViewTextBoxColumn48.HeaderText = "方案";
     this.dataGridViewTextBoxColumn48.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn48.Name = "dataGridViewTextBoxColumn48";
     this.dataGridViewTextBoxColumn48.ReadOnly = true;
     this.dataGridViewTextBoxColumn48.Width = 54;
     //
     // dataGridViewTextBoxColumn49
     //
     this.dataGridViewTextBoxColumn49.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn49.DataPropertyName = "WeekDay";
     dataGridViewCellStyle35.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn49.DefaultCellStyle = dataGridViewCellStyle35;
     this.dataGridViewTextBoxColumn49.HeaderText = "星期";
     this.dataGridViewTextBoxColumn49.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn49.Name = "dataGridViewTextBoxColumn49";
     this.dataGridViewTextBoxColumn49.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn50
     //
     this.dataGridViewTextBoxColumn50.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn50.DataPropertyName = "PeriodNo";
     dataGridViewCellStyle36.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn50.DefaultCellStyle = dataGridViewCellStyle36;
     this.dataGridViewTextBoxColumn50.HeaderText = "節次";
     this.dataGridViewTextBoxColumn50.Name = "dataGridViewTextBoxColumn50";
     this.dataGridViewTextBoxColumn50.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn51
     //
     this.dataGridViewTextBoxColumn51.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn51.DataPropertyName = "WhoName";
     this.dataGridViewTextBoxColumn51.HeaderText = "教師";
     this.dataGridViewTextBoxColumn51.Name = "dataGridViewTextBoxColumn51";
     this.dataGridViewTextBoxColumn51.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn52
     //
     this.dataGridViewTextBoxColumn52.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn52.DataPropertyName = "WhomName";
     this.dataGridViewTextBoxColumn52.HeaderText = "班級";
     this.dataGridViewTextBoxColumn52.Name = "dataGridViewTextBoxColumn52";
     this.dataGridViewTextBoxColumn52.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn53
     //
     this.dataGridViewTextBoxColumn53.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn53.DataPropertyName = "WhereName";
     this.dataGridViewTextBoxColumn53.HeaderText = "場地";
     this.dataGridViewTextBoxColumn53.Name = "dataGridViewTextBoxColumn53";
     this.dataGridViewTextBoxColumn53.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn54
     //
     this.dataGridViewTextBoxColumn54.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn54.DataPropertyName = "WhatName";
     this.dataGridViewTextBoxColumn54.HeaderText = "科目";
     this.dataGridViewTextBoxColumn54.Name = "dataGridViewTextBoxColumn54";
     this.dataGridViewTextBoxColumn54.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn55
     //
     this.dataGridViewTextBoxColumn55.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn55.DataPropertyName = "WhatAliasName";
     this.dataGridViewTextBoxColumn55.HeaderText = "科目簡稱";
     this.dataGridViewTextBoxColumn55.Name = "dataGridViewTextBoxColumn55";
     this.dataGridViewTextBoxColumn55.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn56
     //
     this.dataGridViewTextBoxColumn56.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn56.DataPropertyName = "CourseName";
     this.dataGridViewTextBoxColumn56.HeaderText = "課程名稱";
     this.dataGridViewTextBoxColumn56.Name = "dataGridViewTextBoxColumn56";
     this.dataGridViewTextBoxColumn56.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn57
     //
     this.dataGridViewTextBoxColumn57.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn57.DataPropertyName = "CourseGroup";
     this.dataGridViewTextBoxColumn57.HeaderText = "課程群組";
     this.dataGridViewTextBoxColumn57.Name = "dataGridViewTextBoxColumn57";
     this.dataGridViewTextBoxColumn57.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn58
     //
     this.dataGridViewTextBoxColumn58.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn58.DataPropertyName = "Length";
     this.dataGridViewTextBoxColumn58.HeaderText = "節數";
     this.dataGridViewTextBoxColumn58.Name = "dataGridViewTextBoxColumn58";
     this.dataGridViewTextBoxColumn58.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn59
     //
     this.dataGridViewTextBoxColumn59.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn59.DataPropertyName = "WeekDayCondition";
     this.dataGridViewTextBoxColumn59.HeaderText = "星期條件";
     this.dataGridViewTextBoxColumn59.Name = "dataGridViewTextBoxColumn59";
     this.dataGridViewTextBoxColumn59.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn60
     //
     this.dataGridViewTextBoxColumn60.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn60.DataPropertyName = "PeriodCondition";
     this.dataGridViewTextBoxColumn60.HeaderText = "節次條件";
     this.dataGridViewTextBoxColumn60.Name = "dataGridViewTextBoxColumn60";
     this.dataGridViewTextBoxColumn60.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn61
     //
     this.dataGridViewTextBoxColumn61.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn61.DataPropertyName = "AllowLongBreak";
     this.dataGridViewTextBoxColumn61.HeaderText = "跨中午";
     this.dataGridViewTextBoxColumn61.Name = "dataGridViewTextBoxColumn61";
     this.dataGridViewTextBoxColumn61.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn62
     //
     this.dataGridViewTextBoxColumn62.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn62.DataPropertyName = "AllowDuplicate";
     this.dataGridViewTextBoxColumn62.HeaderText = "可重複";
     this.dataGridViewTextBoxColumn62.Name = "dataGridViewTextBoxColumn62";
     this.dataGridViewTextBoxColumn62.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn63
     //
     this.dataGridViewTextBoxColumn63.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn63.DataPropertyName = "LimitNextDay";
     this.dataGridViewTextBoxColumn63.HeaderText = "不連天";
     this.dataGridViewTextBoxColumn63.Name = "dataGridViewTextBoxColumn63";
     this.dataGridViewTextBoxColumn63.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn64
     //
     this.dataGridViewTextBoxColumn64.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn64.DataPropertyName = "WeekFlag";
     this.dataGridViewTextBoxColumn64.HeaderText = "單雙週";
     this.dataGridViewTextBoxColumn64.Name = "dataGridViewTextBoxColumn64";
     this.dataGridViewTextBoxColumn64.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn65
     //
     this.dataGridViewTextBoxColumn65.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn65.DataPropertyName = "Priority";
     this.dataGridViewTextBoxColumn65.HeaderText = "優先";
     this.dataGridViewTextBoxColumn65.Name = "dataGridViewTextBoxColumn65";
     this.dataGridViewTextBoxColumn65.ReadOnly = true;
     this.dataGridViewTextBoxColumn65.Visible = false;
     //
     // dataGridViewTextBoxColumn66
     //
     this.dataGridViewTextBoxColumn66.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn66.DataPropertyName = "TimeTableName";
     this.dataGridViewTextBoxColumn66.HeaderText = "時間表";
     this.dataGridViewTextBoxColumn66.Name = "dataGridViewTextBoxColumn66";
     this.dataGridViewTextBoxColumn66.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn67
     //
     this.dataGridViewTextBoxColumn67.DataPropertyName = "ColorIndex";
     this.dataGridViewTextBoxColumn67.HeaderText = "顏色";
     this.dataGridViewTextBoxColumn67.Name = "dataGridViewTextBoxColumn67";
     this.dataGridViewTextBoxColumn67.ReadOnly = true;
     this.dataGridViewTextBoxColumn67.Visible = false;
     this.dataGridViewTextBoxColumn67.Width = 54;
     //
     // dataGridViewTextBoxColumn68
     //
     this.dataGridViewTextBoxColumn68.DataPropertyName = "EventID";
     this.dataGridViewTextBoxColumn68.HeaderText = "分課編號";
     this.dataGridViewTextBoxColumn68.Name = "dataGridViewTextBoxColumn68";
     this.dataGridViewTextBoxColumn68.ReadOnly = true;
     this.dataGridViewTextBoxColumn68.Width = 81;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(958, 742);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.bar1);
     this.Controls.Add(this.ribbonControl1);
     this.Controls.Add(this.ribbonBar1);
     this.Font = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "MainForm";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
     this.Load += new System.EventHandler(this.Form1_Load);
     this.ribbonControl1.ResumeLayout(false);
     this.ribbonControl1.PerformLayout();
     this.ribbonPanel1.ResumeLayout(false);
     this.ribbonPanel2.ResumeLayout(false);
     this.ribbonPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.bar1.ResumeLayout(false);
     this.bar1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabContent)).EndInit();
     this.tabContent.ResumeLayout(false);
     this.superTabControlPanel1.ResumeLayout(false);
     this.pnlWhoList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdTeacherEvent)).EndInit();
     this.panel5.ResumeLayout(false);
     this.panel5.PerformLayout();
     this.pnlWhoLPView.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabTeacherLPView)).EndInit();
     this.tabTeacherLPView.ResumeLayout(false);
     this.superTabControlPanel2.ResumeLayout(false);
     this.pnlWhomLPView.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabClassLPView)).EndInit();
     this.tabClassLPView.ResumeLayout(false);
     this.pnlWhomList.ResumeLayout(false);
     this.panel10.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdClassEvent)).EndInit();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.superTabControlPanel3.ResumeLayout(false);
     this.pnlWhereList.ResumeLayout(false);
     this.panel9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdClassroomEvent)).EndInit();
     this.panel6.ResumeLayout(false);
     this.panel6.PerformLayout();
     this.pnlWhereLPView.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabClassroomLPView)).EndInit();
     this.tabClassroomLPView.ResumeLayout(false);
     this.LeftNavigationPanel.ResumeLayout(false);
     this.panel7.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#37
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.dataGridViewX1 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.label1 = new System.Windows.Forms.Label();
     this.radioTodos = new System.Windows.Forms.RadioButton();
     this.radioSinCancelar = new System.Windows.Forms.RadioButton();
     this.panel1 = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // dataGridViewX1
     //
     this.dataGridViewX1.AllowUserToAddRows = false;
     this.dataGridViewX1.AllowUserToDeleteRows = false;
     this.dataGridViewX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewX1.DefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewX1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(214)))), ((int)(((byte)(221)))));
     this.dataGridViewX1.Location = new System.Drawing.Point(2, 46);
     this.dataGridViewX1.MultiSelect = false;
     this.dataGridViewX1.Name = "dataGridViewX1";
     this.dataGridViewX1.ReadOnly = true;
     this.dataGridViewX1.RowHeadersVisible = false;
     this.dataGridViewX1.Size = new System.Drawing.Size(604, 201);
     this.dataGridViewX1.TabIndex = 0;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(181, 250);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(279, 13);
     this.label1.TabIndex = 1;
     this.label1.Text = "Doble click sobre el caso deseado para obtener el codigo";
     //
     // radioTodos
     //
     this.radioTodos.AutoSize = true;
     this.radioTodos.Location = new System.Drawing.Point(23, 12);
     this.radioTodos.Name = "radioTodos";
     this.radioTodos.Size = new System.Drawing.Size(58, 17);
     this.radioTodos.TabIndex = 2;
     this.radioTodos.TabStop = true;
     this.radioTodos.Text = "Todos ";
     this.radioTodos.UseVisualStyleBackColor = true;
     this.radioTodos.CheckedChanged += new System.EventHandler(this.radioTodos_CheckedChanged);
     //
     // radioSinCancelar
     //
     this.radioSinCancelar.AutoSize = true;
     this.radioSinCancelar.Location = new System.Drawing.Point(114, 12);
     this.radioSinCancelar.Name = "radioSinCancelar";
     this.radioSinCancelar.Size = new System.Drawing.Size(71, 17);
     this.radioSinCancelar.TabIndex = 3;
     this.radioSinCancelar.TabStop = true;
     this.radioSinCancelar.Text = "Sin Pagar";
     this.radioSinCancelar.UseVisualStyleBackColor = true;
     this.radioSinCancelar.CheckedChanged += new System.EventHandler(this.radioSinCancelar_CheckedChanged);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Transparent;
     this.panel1.Controls.Add(this.radioTodos);
     this.panel1.Controls.Add(this.radioSinCancelar);
     this.panel1.Location = new System.Drawing.Point(196, 2);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(216, 38);
     this.panel1.TabIndex = 4;
     //
     // Casos_View
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(607, 285);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.dataGridViewX1);
     this.Name = "Casos_View";
     this.Text = "Casos_View";
     this.Load += new System.EventHandler(this.Casos_View_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.cmdDelete = new DevComponents.DotNetBar.ButtonX();
     this.cmdUpdate = new DevComponents.DotNetBar.ButtonX();
     this.cmdAdd = new DevComponents.DotNetBar.ButtonX();
     this.cmdSelect = new DevComponents.DotNetBar.ButtonX();
     this.dataGridView1 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.DepartmentGroupName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DepartmentGroupEnglishName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DepartmentGroupCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Order = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.SuspendLayout();
     //
     // cmdDelete
     //
     this.cmdDelete.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdDelete.AutoSize = true;
     this.cmdDelete.BackColor = System.Drawing.Color.Transparent;
     this.cmdDelete.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.cmdDelete.Location = new System.Drawing.Point(452, 336);
     this.cmdDelete.Name = "cmdDelete";
     this.cmdDelete.Size = new System.Drawing.Size(75, 25);
     this.cmdDelete.TabIndex = 6;
     this.cmdDelete.Text = "刪除";
     //
     // cmdUpdate
     //
     this.cmdUpdate.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdUpdate.AutoSize = true;
     this.cmdUpdate.BackColor = System.Drawing.Color.Transparent;
     this.cmdUpdate.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.cmdUpdate.Location = new System.Drawing.Point(366, 336);
     this.cmdUpdate.Name = "cmdUpdate";
     this.cmdUpdate.Size = new System.Drawing.Size(75, 25);
     this.cmdUpdate.TabIndex = 7;
     this.cmdUpdate.Text = "修改";
     //
     // cmdAdd
     //
     this.cmdAdd.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdAdd.AutoSize = true;
     this.cmdAdd.BackColor = System.Drawing.Color.Transparent;
     this.cmdAdd.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.cmdAdd.Location = new System.Drawing.Point(280, 336);
     this.cmdAdd.Name = "cmdAdd";
     this.cmdAdd.Size = new System.Drawing.Size(75, 25);
     this.cmdAdd.TabIndex = 8;
     this.cmdAdd.Text = "新增";
     //
     // cmdSelect
     //
     this.cmdSelect.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdSelect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdSelect.AutoSize = true;
     this.cmdSelect.BackColor = System.Drawing.Color.Transparent;
     this.cmdSelect.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.cmdSelect.Location = new System.Drawing.Point(12, 336);
     this.cmdSelect.Name = "cmdSelect";
     this.cmdSelect.Size = new System.Drawing.Size(75, 25);
     this.cmdSelect.TabIndex = 9;
     this.cmdSelect.Text = "確定";
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows = false;
     this.dataGridView1.AllowUserToDeleteRows = false;
     this.dataGridView1.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.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.dataGridView1.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
     this.dataGridView1.BackgroundColor = System.Drawing.Color.White;
     this.dataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.DepartmentGroupName,
     this.DepartmentGroupEnglishName,
     this.DepartmentGroupCode,
     this.Order});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridView1.DefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridView1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridView1.Location = new System.Drawing.Point(12, 13);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.ReadOnly = true;
     this.dataGridView1.RowHeadersWidth = 25;
     this.dataGridView1.RowTemplate.Height = 24;
     this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridView1.Size = new System.Drawing.Size(515, 314);
     this.dataGridView1.TabIndex = 1;
     //
     // DepartmentGroupName
     //
     this.DepartmentGroupName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.DepartmentGroupName.HeaderText = "系所組別中文名稱";
     this.DepartmentGroupName.Name = "DepartmentGroupName";
     this.DepartmentGroupName.ReadOnly = true;
     this.DepartmentGroupName.Width = 137;
     //
     // DepartmentGroupEnglishName
     //
     this.DepartmentGroupEnglishName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.DepartmentGroupEnglishName.HeaderText = "系所組別英文名稱";
     this.DepartmentGroupEnglishName.Name = "DepartmentGroupEnglishName";
     this.DepartmentGroupEnglishName.ReadOnly = true;
     this.DepartmentGroupEnglishName.Width = 137;
     //
     // DepartmentGroupCode
     //
     this.DepartmentGroupCode.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.DepartmentGroupCode.HeaderText = "系所組別代碼";
     this.DepartmentGroupCode.Name = "DepartmentGroupCode";
     this.DepartmentGroupCode.ReadOnly = true;
     this.DepartmentGroupCode.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.DepartmentGroupCode.Width = 111;
     //
     // Order
     //
     this.Order.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.Order.HeaderText = "排列順序";
     this.Order.Name = "Order";
     this.Order.ReadOnly = true;
     this.Order.Width = 85;
     //
     // DepartmentGroupForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(537, 366);
     this.Controls.Add(this.cmdSelect);
     this.Controls.Add(this.cmdAdd);
     this.Controls.Add(this.cmdUpdate);
     this.Controls.Add(this.cmdDelete);
     this.Controls.Add(this.dataGridView1);
     this.DoubleBuffered = true;
     this.Name = "DepartmentGroupForm";
     this.Text = "系所組別";
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#39
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(MainForm));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar3 = new DevComponents.DotNetBar.RibbonBar();
     this.labelItem2 = new DevComponents.DotNetBar.LabelItem();
     this.labelItem3 = new DevComponents.DotNetBar.LabelItem();
     this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
     this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
     this.buttonItem16 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem32 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem33 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem34 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem35 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem36 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonTabItem1 = new DevComponents.DotNetBar.RibbonTabItem();
     this.buttonItem46 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem47 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem49 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem50 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem51 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem48 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem52 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem53 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem54 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem55 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem58 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem57 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem59 = new DevComponents.DotNetBar.ButtonItem();
     this.office2007StartButton1 = new DevComponents.DotNetBar.Office2007StartButton();
     this.itemContainer1 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer2 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer3 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem3 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem4 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem5 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem6 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem7 = new DevComponents.DotNetBar.ButtonItem();
     this.galleryContainer1 = new DevComponents.DotNetBar.GalleryContainer();
     this.labelItem8 = new DevComponents.DotNetBar.LabelItem();
     this.buttonItem8 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem9 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem10 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem11 = new DevComponents.DotNetBar.ButtonItem();
     this.itemContainer4 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem12 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem13 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem37 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem38 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem39 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem40 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem14 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem41 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem42 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem43 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem15 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem17 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem44 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem45 = new DevComponents.DotNetBar.ButtonItem();
     this.qatCustomizeItem1 = new DevComponents.DotNetBar.QatCustomizeItem();
     this.sideBar1 = new DevComponents.DotNetBar.SideBar();
     this.sideBarPanelItem3 = new DevComponents.DotNetBar.SideBarPanelItem();
     this.buttonItem27 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem28 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem29 = new DevComponents.DotNetBar.ButtonItem();
     this.sideBarPanelItem2 = new DevComponents.DotNetBar.SideBarPanelItem();
     this.buttonItem23 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem24 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem25 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem26 = new DevComponents.DotNetBar.ButtonItem();
     this.sideBarPanelItem4 = new DevComponents.DotNetBar.SideBarPanelItem();
     this.sideBarPanelItem5 = new DevComponents.DotNetBar.SideBarPanelItem();
     this.buttonItem30 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem31 = new DevComponents.DotNetBar.ButtonItem();
     this.sideBarPanelItem1 = new DevComponents.DotNetBar.SideBarPanelItem();
     this.buttonItem18 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem19 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem20 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem21 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem22 = new DevComponents.DotNetBar.ButtonItem();
     this.tabControl2 = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupPanel6 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.buttonX5 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX3 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX2 = new DevComponents.DotNetBar.ButtonX();
     this.dataGridViewX1 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.groupPanel5 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.rez_danlz = new System.Windows.Forms.Label();
     this.rez_medic = new System.Windows.Forms.Label();
     this.rez_dn = new System.Windows.Forms.Label();
     this.rez_cnp = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.groupPanel4 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.buttonX4 = new DevComponents.DotNetBar.ButtonX();
     this.label1 = new System.Windows.Forms.Label();
     this.textBox6 = new System.Windows.Forms.TextBox();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupPanel3 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.buttonX6 = new DevComponents.DotNetBar.ButtonX();
     this.textBox12 = new System.Windows.Forms.TextBox();
     this.label28 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.textBox11 = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.checkedListBox4 = new System.Windows.Forms.CheckedListBox();
     this.checkedListBox3 = new System.Windows.Forms.CheckedListBox();
     this.checkedListBox2 = new System.Windows.Forms.CheckedListBox();
     this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
     this.label11 = new System.Windows.Forms.Label();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBox9 = new System.Windows.Forms.TextBox();
     this.textBox10 = new System.Windows.Forms.TextBox();
     this.textBox8 = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.label15 = new System.Windows.Forms.Label();
     this.textBox7 = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.textBox4 = new System.Windows.Forms.TextBox();
     this.textBox5 = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.textBox3 = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.tabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabItem3 = new DevComponents.DotNetBar.TabItem(this.components);
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.reflectionImage2 = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.reflectionLabel1 = new DevComponents.DotNetBar.Controls.ReflectionLabel();
     this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip();
     this.balloonTip1 = new DevComponents.DotNetBar.BalloonTip();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.ribbonControl1.SuspendLayout();
     this.ribbonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl2)).BeginInit();
     this.tabControl2.SuspendLayout();
     this.tabControlPanel1.SuspendLayout();
     this.groupPanel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
     this.groupPanel5.SuspendLayout();
     this.groupPanel4.SuspendLayout();
     this.tabControlPanel2.SuspendLayout();
     this.groupPanel3.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.groupPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     this.ribbonControl1.AutoScroll = true;
     this.ribbonControl1.CaptionVisible = true;
     this.ribbonControl1.Controls.Add(this.ribbonPanel1);
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.ribbonTabItem1});
     this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Office2007ColorTable = DevComponents.DotNetBar.Rendering.eOffice2007ColorScheme.VistaGlass;
     this.ribbonControl1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 2);
     this.ribbonControl1.QuickToolbarItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem46,
     this.buttonItem48,
     this.buttonItem55,
     this.buttonItem58});
     this.ribbonControl1.Size = new System.Drawing.Size(1284, 137);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex = 0;
     this.ribbonControl1.Text = "ribbonControl1";
     //
     // ribbonPanel1
     //
     this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonPanel1.Controls.Add(this.ribbonBar3);
     this.ribbonPanel1.Controls.Add(this.ribbonBar2);
     this.ribbonPanel1.Controls.Add(this.ribbonBar1);
     this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel1.Location = new System.Drawing.Point(0, 55);
     this.ribbonPanel1.Name = "ribbonPanel1";
     this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel1.Size = new System.Drawing.Size(1284, 80);
     this.ribbonPanel1.TabIndex = 1;
     this.ribbonPanel1.Click += new System.EventHandler(this.ribbonPanel1_Click);
     //
     // ribbonBar3
     //
     this.ribbonBar3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.ribbonBar3.AutoOverflowEnabled = true;
     this.ribbonBar3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribbonBar3.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem2,
     this.labelItem3});
     this.ribbonBar3.Location = new System.Drawing.Point(990, 0);
     this.ribbonBar3.Name = "ribbonBar3";
     this.ribbonBar3.Size = new System.Drawing.Size(290, 77);
     this.ribbonBar3.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBar3.TabIndex = 2;
     this.ribbonBar3.Text = "Data  operarii";
     this.ribbonBar3.ItemClick += new System.EventHandler(this.ribbonBar3_ItemClick);
     //
     // labelItem2
     //
     this.labelItem2.Name = "labelItem2";
     this.labelItem2.Text = "                                                 ";
     //
     // labelItem3
     //
     this.labelItem3.Image = global::MedLab2.Properties.Resources.icon_time_to_market;
     this.labelItem3.Name = "labelItem3";
     //
     // ribbonBar2
     //
     this.ribbonBar2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.ribbonBar2.AutoOverflowEnabled = true;
     this.ribbonBar2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem1,
     this.buttonItem16});
     this.ribbonBar2.Location = new System.Drawing.Point(236, 0);
     this.ribbonBar2.Name = "ribbonBar2";
     this.ribbonBar2.Size = new System.Drawing.Size(286, 77);
     this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBar2.TabIndex = 1;
     this.ribbonBar2.Text = "Utilizator curent";
     //
     // labelItem1
     //
     this.labelItem1.Name = "labelItem1";
     this.labelItem1.Text = "                                                         ";
     //
     // buttonItem16
     //
     this.buttonItem16.ImagePaddingHorizontal = 8;
     this.buttonItem16.Name = "buttonItem16";
     this.buttonItem16.SubItemsExpandWidth = 14;
     this.buttonItem16.Text = "Sign out";
     this.buttonItem16.Click += new System.EventHandler(this.buttonItem16_Click);
     //
     // ribbonBar1
     //
     this.ribbonBar1.AutoOverflowEnabled = true;
     this.ribbonBar1.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem32,
     this.buttonItem33,
     this.buttonItem34,
     this.buttonItem35,
     this.buttonItem36});
     this.ribbonBar1.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar1.Name = "ribbonBar1";
     this.ribbonBar1.Size = new System.Drawing.Size(282, 77);
     this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBar1.TabIndex = 0;
     //
     // buttonItem32
     //
     this.buttonItem32.Image = global::MedLab2.Properties.Resources.Word;
     this.buttonItem32.ImagePaddingHorizontal = 8;
     this.buttonItem32.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem32.Name = "buttonItem32";
     this.buttonItem32.SubItemsExpandWidth = 14;
     this.buttonItem32.Text = "Word";
     this.buttonItem32.Click += new System.EventHandler(this.buttonItem32_Click);
     //
     // buttonItem33
     //
     this.buttonItem33.Image = global::MedLab2.Properties.Resources.Excel;
     this.buttonItem33.ImagePaddingHorizontal = 8;
     this.buttonItem33.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem33.Name = "buttonItem33";
     this.buttonItem33.SubItemsExpandWidth = 14;
     this.buttonItem33.Text = "Excel";
     this.buttonItem33.Click += new System.EventHandler(this.buttonItem33_Click);
     //
     // buttonItem34
     //
     this.buttonItem34.Image = global::MedLab2.Properties.Resources.OutLook;
     this.buttonItem34.ImagePaddingHorizontal = 8;
     this.buttonItem34.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem34.Name = "buttonItem34";
     this.buttonItem34.SubItemsExpandWidth = 14;
     this.buttonItem34.Text = "Outlook";
     this.buttonItem34.Click += new System.EventHandler(this.buttonItem34_Click);
     //
     // buttonItem35
     //
     this.buttonItem35.Image = global::MedLab2.Properties.Resources.PowerPoint;
     this.buttonItem35.ImagePaddingHorizontal = 8;
     this.buttonItem35.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem35.Name = "buttonItem35";
     this.buttonItem35.SubItemsExpandWidth = 14;
     this.buttonItem35.Text = "PowerPoint";
     this.buttonItem35.Click += new System.EventHandler(this.buttonItem35_Click);
     //
     // buttonItem36
     //
     this.buttonItem36.Image = global::MedLab2.Properties.Resources.Calc;
     this.buttonItem36.ImagePaddingHorizontal = 8;
     this.buttonItem36.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem36.Name = "buttonItem36";
     this.buttonItem36.SubItemsExpandWidth = 14;
     this.buttonItem36.Text = "Calculator";
     this.buttonItem36.Click += new System.EventHandler(this.buttonItem36_Click);
     //
     // ribbonTabItem1
     //
     this.ribbonTabItem1.Checked = true;
     this.ribbonTabItem1.ImagePaddingHorizontal = 8;
     this.ribbonTabItem1.Name = "ribbonTabItem1";
     this.ribbonTabItem1.Panel = this.ribbonPanel1;
     this.ribbonTabItem1.Text = "Instrumente";
     //
     // buttonItem46
     //
     this.buttonItem46.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem46.ImagePaddingHorizontal = 8;
     this.buttonItem46.Name = "buttonItem46";
     this.buttonItem46.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.Slide;
     this.buttonItem46.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(5);
     this.buttonItem46.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem47,
     this.buttonItem49,
     this.buttonItem50,
     this.buttonItem51});
     this.buttonItem46.Text = "Pacineti";
     this.buttonItem46.Click += new System.EventHandler(this.buttonItem46_Click);
     //
     // buttonItem47
     //
     this.buttonItem47.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem47.ImagePaddingHorizontal = 8;
     this.buttonItem47.Name = "buttonItem47";
     this.buttonItem47.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlN);
     this.buttonItem47.Text = "Cautare dupa &nume";
     this.buttonItem47.Click += new System.EventHandler(this.buttonItem47_Click);
     //
     // buttonItem49
     //
     this.buttonItem49.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem49.ImagePaddingHorizontal = 8;
     this.buttonItem49.Name = "buttonItem49";
     this.buttonItem49.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.buttonItem49.Text = "Cautare dupa &cnp";
     this.buttonItem49.Click += new System.EventHandler(this.buttonItem49_Click);
     //
     // buttonItem50
     //
     this.buttonItem50.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem50.ImagePaddingHorizontal = 8;
     this.buttonItem50.Name = "buttonItem50";
     this.buttonItem50.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlI);
     this.buttonItem50.Text = "Cautare dupa cod &inregistrare";
     this.buttonItem50.Click += new System.EventHandler(this.buttonItem50_Click);
     //
     // buttonItem51
     //
     this.buttonItem51.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem51.ImagePaddingHorizontal = 8;
     this.buttonItem51.Name = "buttonItem51";
     this.buttonItem51.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlS);
     this.buttonItem51.Text = "&Stergere din baza de date";
     this.buttonItem51.Click += new System.EventHandler(this.buttonItem51_Click);
     //
     // buttonItem48
     //
     this.buttonItem48.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem48.ImagePaddingHorizontal = 8;
     this.buttonItem48.Name = "buttonItem48";
     this.buttonItem48.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.Slide;
     this.buttonItem48.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(5);
     this.buttonItem48.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem52,
     this.buttonItem53,
     this.buttonItem54});
     this.buttonItem48.Text = "Utilizatori";
     //
     // buttonItem52
     //
     this.buttonItem52.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem52.ImagePaddingHorizontal = 8;
     this.buttonItem52.Name = "buttonItem52";
     this.buttonItem52.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.buttonItem52.Text = "&Adaugare utilizator";
     this.buttonItem52.Click += new System.EventHandler(this.buttonItem52_Click);
     //
     // buttonItem53
     //
     this.buttonItem53.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem53.ImagePaddingHorizontal = 8;
     this.buttonItem53.Name = "buttonItem53";
     this.buttonItem53.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlDel);
     this.buttonItem53.Text = "Stergere utilizator";
     this.buttonItem53.Click += new System.EventHandler(this.buttonItem53_Click);
     //
     // buttonItem54
     //
     this.buttonItem54.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem54.ImagePaddingHorizontal = 8;
     this.buttonItem54.Name = "buttonItem54";
     this.buttonItem54.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlP);
     this.buttonItem54.Text = "Schimbare parola utilizator";
     this.buttonItem54.Click += new System.EventHandler(this.buttonItem54_Click);
     //
     // buttonItem55
     //
     this.buttonItem55.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem55.ImagePaddingHorizontal = 8;
     this.buttonItem55.Name = "buttonItem55";
     this.buttonItem55.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.Slide;
     this.buttonItem55.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(5);
     this.buttonItem55.Text = "Setari";
     //
     // buttonItem58
     //
     this.buttonItem58.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem58.ImagePaddingHorizontal = 8;
     this.buttonItem58.Name = "buttonItem58";
     this.buttonItem58.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.Slide;
     this.buttonItem58.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(5);
     this.buttonItem58.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem57,
     this.buttonItem59});
     this.buttonItem58.Text = "Ajutor";
     //
     // buttonItem57
     //
     this.buttonItem57.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem57.ImagePaddingHorizontal = 8;
     this.buttonItem57.Name = "buttonItem57";
     this.buttonItem57.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.buttonItem57.Text = "Suport tehnic";
     this.buttonItem57.Click += new System.EventHandler(this.buttonItem57_Click);
     //
     // buttonItem59
     //
     this.buttonItem59.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem59.ImagePaddingHorizontal = 8;
     this.buttonItem59.Name = "buttonItem59";
     this.buttonItem59.Text = "Despre MedLAB...";
     this.buttonItem59.Click += new System.EventHandler(this.buttonItem59_Click);
     //
     // office2007StartButton1
     //
     this.office2007StartButton1.AutoExpandOnClick = true;
     this.office2007StartButton1.CanCustomize = false;
     this.office2007StartButton1.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.Image;
     this.office2007StartButton1.Image = ((System.Drawing.Image)(resources.GetObject("office2007StartButton1.Image")));
     this.office2007StartButton1.ImagePaddingHorizontal = 2;
     this.office2007StartButton1.ImagePaddingVertical = 2;
     this.office2007StartButton1.Name = "office2007StartButton1";
     this.office2007StartButton1.ShowSubItems = false;
     this.office2007StartButton1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer1});
     this.office2007StartButton1.Text = "&File";
     //
     // itemContainer1
     //
     //
     //
     //
     this.itemContainer1.BackgroundStyle.Class = "RibbonFileMenuContainer";
     this.itemContainer1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer1.Name = "itemContainer1";
     this.itemContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer2,
     this.itemContainer4});
     //
     // itemContainer2
     //
     //
     //
     //
     this.itemContainer2.BackgroundStyle.Class = "RibbonFileMenuTwoColumnContainer";
     this.itemContainer2.ItemSpacing = 0;
     this.itemContainer2.Name = "itemContainer2";
     this.itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer3,
     this.galleryContainer1});
     //
     // itemContainer3
     //
     //
     //
     //
     this.itemContainer3.BackgroundStyle.Class = "RibbonFileMenuColumnOneContainer";
     this.itemContainer3.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer3.MinimumSize = new System.Drawing.Size(120, 0);
     this.itemContainer3.Name = "itemContainer3";
     this.itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2,
     this.buttonItem3,
     this.buttonItem4,
     this.buttonItem5,
     this.buttonItem6,
     this.buttonItem7});
     //
     // buttonItem2
     //
     this.buttonItem2.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.ImagePaddingHorizontal = 8;
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.SubItemsExpandWidth = 24;
     this.buttonItem2.Text = "&New";
     //
     // buttonItem3
     //
     this.buttonItem3.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem3.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem3.Image")));
     this.buttonItem3.ImagePaddingHorizontal = 8;
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.SubItemsExpandWidth = 24;
     this.buttonItem3.Text = "&Open...";
     //
     // buttonItem4
     //
     this.buttonItem4.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem4.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem4.Image")));
     this.buttonItem4.ImagePaddingHorizontal = 8;
     this.buttonItem4.Name = "buttonItem4";
     this.buttonItem4.SubItemsExpandWidth = 24;
     this.buttonItem4.Text = "&Save...";
     //
     // buttonItem5
     //
     this.buttonItem5.BeginGroup = true;
     this.buttonItem5.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem5.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem5.Image")));
     this.buttonItem5.ImagePaddingHorizontal = 8;
     this.buttonItem5.Name = "buttonItem5";
     this.buttonItem5.SubItemsExpandWidth = 24;
     this.buttonItem5.Text = "S&hare...";
     //
     // buttonItem6
     //
     this.buttonItem6.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem6.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem6.Image")));
     this.buttonItem6.ImagePaddingHorizontal = 8;
     this.buttonItem6.Name = "buttonItem6";
     this.buttonItem6.SubItemsExpandWidth = 24;
     this.buttonItem6.Text = "&Print...";
     //
     // buttonItem7
     //
     this.buttonItem7.BeginGroup = true;
     this.buttonItem7.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem7.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem7.Image")));
     this.buttonItem7.ImagePaddingHorizontal = 8;
     this.buttonItem7.Name = "buttonItem7";
     this.buttonItem7.SubItemsExpandWidth = 24;
     this.buttonItem7.Text = "&Close";
     //
     // galleryContainer1
     //
     //
     //
     //
     this.galleryContainer1.BackgroundStyle.Class = "RibbonFileMenuColumnTwoContainer";
     this.galleryContainer1.EnableGalleryPopup = false;
     this.galleryContainer1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.galleryContainer1.MinimumSize = new System.Drawing.Size(180, 240);
     this.galleryContainer1.MultiLine = false;
     this.galleryContainer1.Name = "galleryContainer1";
     this.galleryContainer1.PopupUsesStandardScrollbars = false;
     this.galleryContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem8,
     this.buttonItem8,
     this.buttonItem9,
     this.buttonItem10,
     this.buttonItem11});
     //
     // labelItem8
     //
     this.labelItem8.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem8.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
     this.labelItem8.CanCustomize = false;
     this.labelItem8.Name = "labelItem8";
     this.labelItem8.PaddingBottom = 2;
     this.labelItem8.PaddingTop = 2;
     this.labelItem8.Stretch = true;
     this.labelItem8.Text = "Recent Documents";
     //
     // buttonItem8
     //
     this.buttonItem8.ImagePaddingHorizontal = 8;
     this.buttonItem8.Name = "buttonItem8";
     this.buttonItem8.Text = "&1. Short News 5-7.rtf";
     //
     // buttonItem9
     //
     this.buttonItem9.ImagePaddingHorizontal = 8;
     this.buttonItem9.Name = "buttonItem9";
     this.buttonItem9.Text = "&2. Prospect Email.rtf";
     //
     // buttonItem10
     //
     this.buttonItem10.ImagePaddingHorizontal = 8;
     this.buttonItem10.Name = "buttonItem10";
     this.buttonItem10.Text = "&3. Customer Email.rtf";
     //
     // buttonItem11
     //
     this.buttonItem11.ImagePaddingHorizontal = 8;
     this.buttonItem11.Name = "buttonItem11";
     this.buttonItem11.Text = "&4. example.rtf";
     //
     // itemContainer4
     //
     //
     //
     //
     this.itemContainer4.BackgroundStyle.Class = "RibbonFileMenuBottomContainer";
     this.itemContainer4.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Right;
     this.itemContainer4.Name = "itemContainer4";
     this.itemContainer4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem12,
     this.buttonItem13});
     //
     // buttonItem12
     //
     this.buttonItem12.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem12.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem12.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem12.Image")));
     this.buttonItem12.ImagePaddingHorizontal = 8;
     this.buttonItem12.Name = "buttonItem12";
     this.buttonItem12.SubItemsExpandWidth = 24;
     this.buttonItem12.Text = "Opt&ions";
     //
     // buttonItem13
     //
     this.buttonItem13.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem13.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem13.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem13.Image")));
     this.buttonItem13.ImagePaddingHorizontal = 8;
     this.buttonItem13.Name = "buttonItem13";
     this.buttonItem13.SubItemsExpandWidth = 24;
     this.buttonItem13.Text = "E&xit";
     //
     // buttonItem1
     //
     this.buttonItem1.ImagePaddingHorizontal = 8;
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem37,
     this.buttonItem38,
     this.buttonItem39,
     this.buttonItem40});
     this.buttonItem1.Text = "Pacienti";
     //
     // buttonItem37
     //
     this.buttonItem37.ImagePaddingHorizontal = 8;
     this.buttonItem37.Name = "buttonItem37";
     this.buttonItem37.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlN);
     this.buttonItem37.Text = "Cautare dupa &nume";
     this.buttonItem37.Click += new System.EventHandler(this.buttonItem37_Click);
     //
     // buttonItem38
     //
     this.buttonItem38.ImagePaddingHorizontal = 8;
     this.buttonItem38.Name = "buttonItem38";
     this.buttonItem38.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(2, 7, 2, 5);
     this.buttonItem38.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.buttonItem38.Text = "Cautare dupa &cnp";
     this.buttonItem38.Click += new System.EventHandler(this.buttonItem38_Click);
     //
     // buttonItem39
     //
     this.buttonItem39.ImagePaddingHorizontal = 8;
     this.buttonItem39.Name = "buttonItem39";
     this.buttonItem39.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlI);
     this.buttonItem39.Text = "Cautare dupa cod &inregistrare";
     this.buttonItem39.Click += new System.EventHandler(this.buttonItem39_Click);
     //
     // buttonItem40
     //
     this.buttonItem40.ImagePaddingHorizontal = 8;
     this.buttonItem40.Name = "buttonItem40";
     this.buttonItem40.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlS);
     this.buttonItem40.Text = "&Stergere din baza de date";
     this.buttonItem40.Click += new System.EventHandler(this.buttonItem40_Click);
     //
     // buttonItem14
     //
     this.buttonItem14.ImagePaddingHorizontal = 8;
     this.buttonItem14.Name = "buttonItem14";
     this.buttonItem14.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem41,
     this.buttonItem42,
     this.buttonItem43});
     this.buttonItem14.Text = "Utilizatori";
     //
     // buttonItem41
     //
     this.buttonItem41.ImagePaddingHorizontal = 8;
     this.buttonItem41.Name = "buttonItem41";
     this.buttonItem41.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.buttonItem41.Text = "&Adaugare utilizator nou";
     //
     // buttonItem42
     //
     this.buttonItem42.ImagePaddingHorizontal = 8;
     this.buttonItem42.Name = "buttonItem42";
     this.buttonItem42.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlR);
     this.buttonItem42.Text = "Ste&rgere utilizator";
     //
     // buttonItem43
     //
     this.buttonItem43.ImagePaddingHorizontal = 8;
     this.buttonItem43.Name = "buttonItem43";
     this.buttonItem43.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlP);
     this.buttonItem43.Text = "Schimbare &parola administrator";
     //
     // buttonItem15
     //
     this.buttonItem15.ImagePaddingHorizontal = 8;
     this.buttonItem15.Name = "buttonItem15";
     this.buttonItem15.Text = "Setari";
     //
     // buttonItem17
     //
     this.buttonItem17.ImagePaddingHorizontal = 8;
     this.buttonItem17.Name = "buttonItem17";
     this.buttonItem17.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem44,
     this.buttonItem45});
     this.buttonItem17.Text = "Ajutor";
     //
     // buttonItem44
     //
     this.buttonItem44.ImagePaddingHorizontal = 8;
     this.buttonItem44.Name = "buttonItem44";
     this.buttonItem44.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(2, 3, 2, 3);
     this.buttonItem44.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.buttonItem44.Text = "Suport tehnic";
     this.buttonItem44.Click += new System.EventHandler(this.buttonItem44_Click);
     //
     // buttonItem45
     //
     this.buttonItem45.ImagePaddingHorizontal = 8;
     this.buttonItem45.Name = "buttonItem45";
     this.buttonItem45.Text = "Despre MedLab...";
     //
     // qatCustomizeItem1
     //
     this.qatCustomizeItem1.Name = "qatCustomizeItem1";
     //
     // sideBar1
     //
     this.sideBar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.sideBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.sideBar1.Appearance = DevComponents.DotNetBar.eSideBarAppearance.Flat;
     this.sideBar1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(243)))), ((int)(((byte)(250)))));
     this.sideBar1.BorderStyle = DevComponents.DotNetBar.eBorderType.Etched;
     this.sideBar1.ExpandedPanel = this.sideBarPanelItem3;
     this.sideBar1.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.sideBar1.Location = new System.Drawing.Point(32, 139);
     this.sideBar1.Name = "sideBar1";
     this.sideBar1.Panels.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.sideBarPanelItem2,
     this.sideBarPanelItem3,
     this.sideBarPanelItem4,
     this.sideBarPanelItem5,
     this.sideBarPanelItem1});
     this.sideBar1.Size = new System.Drawing.Size(242, 523);
     this.sideBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.sideBar1.TabIndex = 2;
     this.sideBar1.Text = "sideBar1";
     //
     // sideBarPanelItem3
     //
     this.sideBarPanelItem3.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem3.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem3.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem3.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem3.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem3.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem3.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem3.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem3.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem3.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem3.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem3.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem3.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem3.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem3.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem3.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem3.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem3.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem3.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem3.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem3.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem3.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem3.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem3.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem3.Name = "sideBarPanelItem3";
     this.sideBarPanelItem3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem27,
     this.buttonItem28,
     this.buttonItem29});
     this.sideBarPanelItem3.Text = "Utilizator";
     //
     // buttonItem27
     //
     this.buttonItem27.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem27.FontBold = true;
     this.buttonItem27.ForeColor = System.Drawing.Color.Black;
     this.buttonItem27.Image = global::MedLab2.Properties.Resources.add_user___Copy;
     this.buttonItem27.ImagePaddingHorizontal = 8;
     this.buttonItem27.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem27.Name = "buttonItem27";
     this.buttonItem27.Text = "Adaugare utilizator nou";
     this.buttonItem27.Click += new System.EventHandler(this.buttonItem27_Click);
     //
     // buttonItem28
     //
     this.buttonItem28.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem28.FontBold = true;
     this.buttonItem28.ForeColor = System.Drawing.Color.Black;
     this.buttonItem28.Image = global::MedLab2.Properties.Resources.remove_user_2;
     this.buttonItem28.ImagePaddingHorizontal = 8;
     this.buttonItem28.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem28.Name = "buttonItem28";
     this.buttonItem28.Text = "Stergere utilizator din baza de date";
     this.buttonItem28.Click += new System.EventHandler(this.buttonItem28_Click);
     //
     // buttonItem29
     //
     this.buttonItem29.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem29.FontBold = true;
     this.buttonItem29.ForeColor = System.Drawing.Color.Black;
     this.buttonItem29.Image = global::MedLab2.Properties.Resources.edit_user_2;
     this.buttonItem29.ImagePaddingHorizontal = 8;
     this.buttonItem29.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem29.Name = "buttonItem29";
     this.buttonItem29.Text = "Schimbare parola utilizator";
     this.buttonItem29.Click += new System.EventHandler(this.buttonItem29_Click);
     //
     // sideBarPanelItem2
     //
     this.sideBarPanelItem2.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem2.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem2.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem2.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem2.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem2.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem2.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem2.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem2.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem2.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem2.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem2.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem2.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem2.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem2.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem2.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem2.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem2.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem2.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem2.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem2.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem2.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem2.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem2.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem2.Name = "sideBarPanelItem2";
     this.sideBarPanelItem2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem23,
     this.buttonItem24,
     this.buttonItem25,
     this.buttonItem26});
     this.sideBarPanelItem2.Text = "Pacienti";
     this.sideBarPanelItem2.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Far;
     //
     // buttonItem23
     //
     this.buttonItem23.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem23.FontBold = true;
     this.buttonItem23.ForeColor = System.Drawing.Color.Black;
     this.buttonItem23.Image = global::MedLab2.Properties.Resources.Find2;
     this.buttonItem23.ImagePaddingHorizontal = 8;
     this.buttonItem23.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem23.Name = "buttonItem23";
     this.buttonItem23.Text = "Cautare dupa nume";
     this.buttonItem23.Click += new System.EventHandler(this.buttonItem23_Click);
     //
     // buttonItem24
     //
     this.buttonItem24.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem24.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem24.FontBold = true;
     this.buttonItem24.ForeColor = System.Drawing.Color.Black;
     this.buttonItem24.Image = global::MedLab2.Properties.Resources.Find2;
     this.buttonItem24.ImagePaddingHorizontal = 8;
     this.buttonItem24.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem24.ImageSmall = ((System.Drawing.Image)(resources.GetObject("buttonItem24.ImageSmall")));
     this.buttonItem24.Name = "buttonItem24";
     this.buttonItem24.Text = "Cautare dupa cnp";
     this.buttonItem24.Click += new System.EventHandler(this.buttonItem24_Click);
     //
     // buttonItem25
     //
     this.buttonItem25.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem25.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem25.FontBold = true;
     this.buttonItem25.ForeColor = System.Drawing.Color.Black;
     this.buttonItem25.Image = global::MedLab2.Properties.Resources.Find2;
     this.buttonItem25.ImagePaddingHorizontal = 8;
     this.buttonItem25.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem25.Name = "buttonItem25";
     this.buttonItem25.Text = "Cautare dupa cod inregistrare";
     this.buttonItem25.Click += new System.EventHandler(this.buttonItem25_Click);
     //
     // buttonItem26
     //
     this.buttonItem26.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem26.FontBold = true;
     this.buttonItem26.ForeColor = System.Drawing.Color.Black;
     this.buttonItem26.Image = global::MedLab2.Properties.Resources.remove_user_2;
     this.buttonItem26.ImagePaddingHorizontal = 8;
     this.buttonItem26.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem26.Name = "buttonItem26";
     this.buttonItem26.Text = "Stergere din baza de date";
     this.buttonItem26.Click += new System.EventHandler(this.buttonItem26_Click);
     //
     // sideBarPanelItem4
     //
     this.sideBarPanelItem4.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem4.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem4.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem4.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem4.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem4.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem4.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem4.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem4.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem4.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem4.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem4.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem4.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem4.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem4.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem4.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem4.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem4.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem4.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem4.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem4.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem4.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem4.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem4.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem4.Name = "sideBarPanelItem4";
     this.sideBarPanelItem4.Text = "Setari";
     //
     // sideBarPanelItem5
     //
     this.sideBarPanelItem5.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem5.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem5.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem5.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem5.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem5.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem5.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem5.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem5.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem5.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem5.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem5.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem5.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem5.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem5.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem5.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem5.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem5.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem5.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem5.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem5.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem5.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem5.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem5.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem5.Name = "sideBarPanelItem5";
     this.sideBarPanelItem5.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem30,
     this.buttonItem31});
     this.sideBarPanelItem5.Text = "Ajutor";
     //
     // buttonItem30
     //
     this.buttonItem30.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem30.FontBold = true;
     this.buttonItem30.ForeColor = System.Drawing.Color.Black;
     this.buttonItem30.Image = global::MedLab2.Properties.Resources.HelpIcon_2;
     this.buttonItem30.ImagePaddingHorizontal = 8;
     this.buttonItem30.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem30.Name = "buttonItem30";
     this.buttonItem30.Text = "Suport tehnic";
     this.buttonItem30.Click += new System.EventHandler(this.buttonItem30_Click);
     //
     // buttonItem31
     //
     this.buttonItem31.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem31.FontBold = true;
     this.buttonItem31.ForeColor = System.Drawing.Color.Black;
     this.buttonItem31.Image = global::MedLab2.Properties.Resources.ReflectionImage2;
     this.buttonItem31.ImagePaddingHorizontal = 8;
     this.buttonItem31.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem31.Name = "buttonItem31";
     this.buttonItem31.Text = "Despre MedLAB...";
     this.buttonItem31.Click += new System.EventHandler(this.buttonItem31_Click);
     //
     // sideBarPanelItem1
     //
     this.sideBarPanelItem1.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem1.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem1.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem1.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem1.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem1.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem1.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem1.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem1.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem1.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem1.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem1.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem1.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem1.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem1.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem1.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem1.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem1.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem1.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem1.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem1.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem1.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem1.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem1.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem1.Name = "sideBarPanelItem1";
     this.sideBarPanelItem1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem18,
     this.buttonItem19,
     this.buttonItem20,
     this.buttonItem21,
     this.buttonItem22});
     this.sideBarPanelItem1.Text = "Instrumente";
     //
     // buttonItem18
     //
     this.buttonItem18.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem18.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem18.FontBold = true;
     this.buttonItem18.ForeColor = System.Drawing.Color.Black;
     this.buttonItem18.Image = global::MedLab2.Properties.Resources.Word;
     this.buttonItem18.ImagePaddingHorizontal = 8;
     this.buttonItem18.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem18.Name = "buttonItem18";
     this.buttonItem18.Text = "Word";
     this.buttonItem18.Click += new System.EventHandler(this.buttonItem18_Click);
     //
     // buttonItem19
     //
     this.buttonItem19.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem19.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem19.FontBold = true;
     this.buttonItem19.ForeColor = System.Drawing.Color.Black;
     this.buttonItem19.Image = global::MedLab2.Properties.Resources.Excel;
     this.buttonItem19.ImagePaddingHorizontal = 8;
     this.buttonItem19.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem19.Name = "buttonItem19";
     this.buttonItem19.Text = "Excel";
     this.buttonItem19.Click += new System.EventHandler(this.buttonItem19_Click);
     //
     // buttonItem20
     //
     this.buttonItem20.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem20.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem20.FontBold = true;
     this.buttonItem20.ForeColor = System.Drawing.Color.Black;
     this.buttonItem20.Image = global::MedLab2.Properties.Resources.OutLook;
     this.buttonItem20.ImagePaddingHorizontal = 8;
     this.buttonItem20.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem20.Name = "buttonItem20";
     this.buttonItem20.Text = "Outlook";
     this.buttonItem20.Click += new System.EventHandler(this.buttonItem20_Click);
     //
     // buttonItem21
     //
     this.buttonItem21.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem21.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem21.FontBold = true;
     this.buttonItem21.ForeColor = System.Drawing.Color.Black;
     this.buttonItem21.Image = global::MedLab2.Properties.Resources.PowerPoint;
     this.buttonItem21.ImagePaddingHorizontal = 8;
     this.buttonItem21.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem21.Name = "buttonItem21";
     this.buttonItem21.Text = "PowerPoint";
     this.buttonItem21.Click += new System.EventHandler(this.buttonItem21_Click);
     //
     // buttonItem22
     //
     this.buttonItem22.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem22.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem22.FontBold = true;
     this.buttonItem22.ForeColor = System.Drawing.Color.Black;
     this.buttonItem22.Image = global::MedLab2.Properties.Resources.Calc;
     this.buttonItem22.ImagePaddingHorizontal = 8;
     this.buttonItem22.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem22.Name = "buttonItem22";
     this.buttonItem22.Text = "Calculator";
     this.buttonItem22.Click += new System.EventHandler(this.buttonItem22_Click);
     //
     // tabControl2
     //
     this.tabControl2.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.tabControl2.BackColor = System.Drawing.Color.Transparent;
     this.tabControl2.CanReorderTabs = true;
     this.tabControl2.Controls.Add(this.tabControlPanel1);
     this.tabControl2.Controls.Add(this.tabControlPanel2);
     this.tabControl2.Controls.Add(this.tabControlPanel3);
     this.tabControl2.Location = new System.Drawing.Point(303, 139);
     this.tabControl2.Name = "tabControl2";
     this.tabControl2.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
     this.tabControl2.SelectedTabIndex = 0;
     this.tabControl2.Size = new System.Drawing.Size(592, 601);
     this.tabControl2.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Document;
     this.tabControl2.TabIndex = 4;
     this.tabControl2.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.MultilineWithNavigationBox;
     this.tabControl2.Tabs.Add(this.tabItem2);
     this.tabControl2.Tabs.Add(this.tabItem1);
     this.tabControl2.Tabs.Add(this.tabItem3);
     this.tabControl2.TabScrollAutoRepeat = true;
     this.tabControl2.TabStripTabStop = true;
     this.tabControl2.Text = "tabControl2";
     this.tabControl2.Click += new System.EventHandler(this.tabControl2_Click);
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.groupPanel6);
     this.tabControlPanel1.Controls.Add(this.groupPanel5);
     this.tabControlPanel1.Controls.Add(this.groupPanel4);
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 22);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(592, 579);
     this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel1.Style.GradientAngle = 90;
     this.tabControlPanel1.TabIndex = 2;
     this.tabControlPanel1.TabItem = this.tabItem1;
     //
     // groupPanel6
     //
     this.groupPanel6.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel6.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel6.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel6.Controls.Add(this.buttonX5);
     this.groupPanel6.Controls.Add(this.buttonX3);
     this.groupPanel6.Controls.Add(this.buttonX2);
     this.groupPanel6.Controls.Add(this.dataGridViewX1);
     this.groupPanel6.DrawTitleBox = false;
     this.groupPanel6.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel6.Location = new System.Drawing.Point(21, 212);
     this.groupPanel6.Name = "groupPanel6";
     this.groupPanel6.Size = new System.Drawing.Size(645, 469);
     //
     //
     //
     this.groupPanel6.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel6.Style.BackColorGradientAngle = 90;
     this.groupPanel6.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel6.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderBottomWidth = 1;
     this.groupPanel6.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel6.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderLeftWidth = 1;
     this.groupPanel6.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderRightWidth = 1;
     this.groupPanel6.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderTopWidth = 1;
     this.groupPanel6.Style.CornerDiameter = 4;
     this.groupPanel6.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel6.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel6.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel6.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel6.TabIndex = 12;
     this.groupPanel6.Text = "Introducere rezultate analize";
     //
     // buttonX5
     //
     this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX5.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX5.Location = new System.Drawing.Point(26, 289);
     this.buttonX5.Name = "buttonX5";
     this.buttonX5.Size = new System.Drawing.Size(137, 56);
     this.buttonX5.TabIndex = 6;
     this.buttonX5.Text = "Adauga in baza de date";
     //
     // buttonX3
     //
     this.buttonX3.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX3.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX3.Location = new System.Drawing.Point(343, 289);
     this.buttonX3.Name = "buttonX3";
     this.buttonX3.Size = new System.Drawing.Size(137, 56);
     this.buttonX3.TabIndex = 5;
     this.buttonX3.Text = "E-mail";
     this.buttonX3.Click += new System.EventHandler(this.buttonX3_Click);
     //
     // buttonX2
     //
     this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX2.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX2.Location = new System.Drawing.Point(182, 290);
     this.buttonX2.Name = "buttonX2";
     this.buttonX2.Size = new System.Drawing.Size(137, 56);
     this.buttonX2.TabIndex = 4;
     this.buttonX2.Text = "Printare";
     this.buttonX2.Click += new System.EventHandler(this.buttonX2_Click);
     //
     // dataGridViewX1
     //
     this.dataGridViewX1.AllowUserToAddRows = false;
     this.dataGridViewX1.AllowUserToDeleteRows = false;
     this.dataGridViewX1.AllowUserToOrderColumns = true;
     this.dataGridViewX1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridViewX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewX1.DefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewX1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridViewX1.Location = new System.Drawing.Point(3, 12);
     this.dataGridViewX1.Name = "dataGridViewX1";
     this.dataGridViewX1.Size = new System.Drawing.Size(562, 260);
     this.dataGridViewX1.TabIndex = 2;
     //
     // groupPanel5
     //
     this.groupPanel5.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel5.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel5.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel5.Controls.Add(this.rez_danlz);
     this.groupPanel5.Controls.Add(this.rez_medic);
     this.groupPanel5.Controls.Add(this.rez_dn);
     this.groupPanel5.Controls.Add(this.rez_cnp);
     this.groupPanel5.Controls.Add(this.label21);
     this.groupPanel5.Controls.Add(this.label20);
     this.groupPanel5.Controls.Add(this.label19);
     this.groupPanel5.Controls.Add(this.label18);
     this.groupPanel5.Controls.Add(this.label17);
     this.groupPanel5.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel5.Location = new System.Drawing.Point(21, 83);
     this.groupPanel5.Name = "groupPanel5";
     this.groupPanel5.Size = new System.Drawing.Size(624, 125);
     //
     //
     //
     this.groupPanel5.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel5.Style.BackColorGradientAngle = 90;
     this.groupPanel5.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel5.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel5.Style.BorderBottomWidth = 1;
     this.groupPanel5.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel5.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel5.Style.BorderLeftWidth = 1;
     this.groupPanel5.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel5.Style.BorderRightWidth = 1;
     this.groupPanel5.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel5.Style.BorderTopWidth = 1;
     this.groupPanel5.Style.CornerDiameter = 4;
     this.groupPanel5.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel5.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel5.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel5.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel5.TabIndex = 1;
     this.groupPanel5.Text = "Rezultatele cautarii";
     this.groupPanel5.Click += new System.EventHandler(this.groupPanel5_Click);
     //
     // rez_danlz
     //
     this.rez_danlz.AutoSize = true;
     this.rez_danlz.BackColor = System.Drawing.Color.Transparent;
     this.rez_danlz.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rez_danlz.Location = new System.Drawing.Point(270, 78);
     this.rez_danlz.Name = "rez_danlz";
     this.rez_danlz.Size = new System.Drawing.Size(0, 16);
     this.rez_danlz.TabIndex = 26;
     //
     // rez_medic
     //
     this.rez_medic.AutoSize = true;
     this.rez_medic.BackColor = System.Drawing.Color.Transparent;
     this.rez_medic.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rez_medic.Location = new System.Drawing.Point(270, 53);
     this.rez_medic.Name = "rez_medic";
     this.rez_medic.Size = new System.Drawing.Size(0, 16);
     this.rez_medic.TabIndex = 25;
     //
     // rez_dn
     //
     this.rez_dn.AutoSize = true;
     this.rez_dn.BackColor = System.Drawing.Color.Transparent;
     this.rez_dn.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rez_dn.Location = new System.Drawing.Point(270, 27);
     this.rez_dn.Name = "rez_dn";
     this.rez_dn.Size = new System.Drawing.Size(0, 16);
     this.rez_dn.TabIndex = 24;
     //
     // rez_cnp
     //
     this.rez_cnp.AutoSize = true;
     this.rez_cnp.BackColor = System.Drawing.Color.Transparent;
     this.rez_cnp.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rez_cnp.Location = new System.Drawing.Point(270, 0);
     this.rez_cnp.Name = "rez_cnp";
     this.rez_cnp.Size = new System.Drawing.Size(0, 16);
     this.rez_cnp.TabIndex = 23;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.BackColor = System.Drawing.Color.Transparent;
     this.label21.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.Location = new System.Drawing.Point(23, 78);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(181, 16);
     this.label21.TabIndex = 22;
     this.label21.Text = "Data efectuarii analizelor";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.BackColor = System.Drawing.Color.Transparent;
     this.label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.Location = new System.Drawing.Point(23, 53);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(94, 16);
     this.label20.TabIndex = 21;
     this.label20.Text = "Nume medic";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.BackColor = System.Drawing.Color.Transparent;
     this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.Location = new System.Drawing.Point(23, 27);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(96, 16);
     this.label19.TabIndex = 20;
     this.label19.Text = "Data nasterii";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.Location = new System.Drawing.Point(23, 0);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(39, 16);
     this.label18.TabIndex = 19;
     this.label18.Text = "CNP";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.Location = new System.Drawing.Point(178, -21);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(48, 16);
     this.label17.TabIndex = 18;
     this.label17.Text = "Nume";
     //
     // groupPanel4
     //
     this.groupPanel4.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel4.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel4.Controls.Add(this.buttonX4);
     this.groupPanel4.Controls.Add(this.label1);
     this.groupPanel4.Controls.Add(this.textBox6);
     this.groupPanel4.Location = new System.Drawing.Point(21, 15);
     this.groupPanel4.Name = "groupPanel4";
     this.groupPanel4.Size = new System.Drawing.Size(624, 62);
     //
     //
     //
     this.groupPanel4.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel4.Style.BackColorGradientAngle = 90;
     this.groupPanel4.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel4.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderBottomWidth = 1;
     this.groupPanel4.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel4.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderLeftWidth = 1;
     this.groupPanel4.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderRightWidth = 1;
     this.groupPanel4.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderTopWidth = 1;
     this.groupPanel4.Style.CornerDiameter = 4;
     this.groupPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel4.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel4.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel4.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel4.TabIndex = 0;
     //
     // buttonX4
     //
     this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX4.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX4.Location = new System.Drawing.Point(443, 3);
     this.buttonX4.Name = "buttonX4";
     this.buttonX4.Size = new System.Drawing.Size(112, 37);
     this.buttonX4.TabIndex = 6;
     this.buttonX4.Text = "Ok";
     this.buttonX4.Click += new System.EventHandler(this.buttonX4_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(23, 23);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(117, 16);
     this.label1.TabIndex = 3;
     this.label1.Text = "Cautare pacient";
     //
     // textBox6
     //
     this.textBox6.Location = new System.Drawing.Point(197, 17);
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new System.Drawing.Size(206, 20);
     this.textBox6.TabIndex = 2;
     //
     // tabItem1
     //
     this.tabItem1.AttachedControl = this.tabControlPanel1;
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "Introducere rezultate analize";
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.AutoScroll = true;
     this.tabControlPanel2.Controls.Add(this.groupPanel3);
     this.tabControlPanel2.Controls.Add(this.groupPanel2);
     this.tabControlPanel2.Controls.Add(this.groupPanel1);
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 22);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(592, 579);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.Style.GradientAngle = 90;
     this.tabControlPanel2.TabIndex = 1;
     this.tabControlPanel2.TabItem = this.tabItem2;
     this.tabControlPanel2.Click += new System.EventHandler(this.tabControlPanel2_Click);
     //
     // groupPanel3
     //
     this.groupPanel3.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel3.CanvasColor = System.Drawing.SystemColors.ActiveCaption;
     this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel3.Controls.Add(this.buttonX6);
     this.groupPanel3.Controls.Add(this.textBox12);
     this.groupPanel3.Controls.Add(this.label28);
     this.groupPanel3.Controls.Add(this.label16);
     this.groupPanel3.Controls.Add(this.textBox11);
     this.groupPanel3.Controls.Add(this.label14);
     this.groupPanel3.Controls.Add(this.label13);
     this.groupPanel3.Controls.Add(this.label12);
     this.groupPanel3.Controls.Add(this.checkedListBox4);
     this.groupPanel3.Controls.Add(this.checkedListBox3);
     this.groupPanel3.Controls.Add(this.checkedListBox2);
     this.groupPanel3.Controls.Add(this.checkedListBox1);
     this.groupPanel3.Controls.Add(this.label11);
     this.groupPanel3.DrawTitleBox = false;
     this.groupPanel3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel3.IsShadowEnabled = true;
     this.groupPanel3.Location = new System.Drawing.Point(15, 346);
     this.groupPanel3.Name = "groupPanel3";
     this.groupPanel3.Size = new System.Drawing.Size(616, 336);
     //
     //
     //
     this.groupPanel3.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel3.Style.BackColorGradientAngle = 90;
     this.groupPanel3.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel3.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderBottomWidth = 1;
     this.groupPanel3.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel3.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderLeftWidth = 1;
     this.groupPanel3.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderRightWidth = 1;
     this.groupPanel3.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderTopWidth = 1;
     this.groupPanel3.Style.CornerDiameter = 4;
     this.groupPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel3.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel3.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel3.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel3.TabIndex = 24;
     this.groupPanel3.Text = "Analize Solicitate";
     //
     // buttonX6
     //
     this.buttonX6.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX6.BackColor = System.Drawing.Color.Maroon;
     this.buttonX6.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX6.Location = new System.Drawing.Point(325, 248);
     this.buttonX6.Name = "buttonX6";
     this.buttonX6.Size = new System.Drawing.Size(137, 56);
     this.buttonX6.TabIndex = 25;
     this.buttonX6.Text = "Adauga in baza de date";
     this.buttonX6.Click += new System.EventHandler(this.buttonX6_Click);
     //
     // textBox12
     //
     this.textBox12.BackColor = System.Drawing.Color.White;
     this.textBox12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox12.Location = new System.Drawing.Point(150, 248);
     this.textBox12.Name = "textBox12";
     this.textBox12.Size = new System.Drawing.Size(137, 22);
     this.textBox12.TabIndex = 23;
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label28.Location = new System.Drawing.Point(18, 251);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(85, 16);
     this.label28.TabIndex = 15;
     this.label28.Text = "Cod cerere";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.Location = new System.Drawing.Point(19, 282);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(73, 16);
     this.label16.TabIndex = 22;
     this.label16.Text = "Cost total";
     //
     // textBox11
     //
     this.textBox11.BackColor = System.Drawing.Color.White;
     this.textBox11.Enabled = false;
     this.textBox11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox11.Location = new System.Drawing.Point(150, 276);
     this.textBox11.Name = "textBox11";
     this.textBox11.Size = new System.Drawing.Size(137, 22);
     this.textBox11.TabIndex = 21;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.Location = new System.Drawing.Point(322, 124);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(203, 16);
     this.label14.TabIndex = 20;
     this.label14.Text = "Markeri endocrini si tumorali";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.Location = new System.Drawing.Point(19, 124);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(170, 16);
     this.label13.TabIndex = 19;
     this.label13.Text = "Imunologie si serologie";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(322, 7);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(76, 16);
     this.label12.TabIndex = 18;
     this.label12.Text = "Biochimie";
     //
     // checkedListBox4
     //
     this.checkedListBox4.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkedListBox4.FormattingEnabled = true;
     this.checkedListBox4.Location = new System.Drawing.Point(325, 143);
     this.checkedListBox4.Name = "checkedListBox4";
     this.checkedListBox4.Size = new System.Drawing.Size(267, 99);
     this.checkedListBox4.TabIndex = 17;
     //
     // checkedListBox3
     //
     this.checkedListBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkedListBox3.FormattingEnabled = true;
     this.checkedListBox3.Location = new System.Drawing.Point(20, 143);
     this.checkedListBox3.Name = "checkedListBox3";
     this.checkedListBox3.Size = new System.Drawing.Size(267, 99);
     this.checkedListBox3.TabIndex = 16;
     //
     // checkedListBox2
     //
     this.checkedListBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkedListBox2.FormattingEnabled = true;
     this.checkedListBox2.Location = new System.Drawing.Point(325, 21);
     this.checkedListBox2.Name = "checkedListBox2";
     this.checkedListBox2.Size = new System.Drawing.Size(267, 99);
     this.checkedListBox2.TabIndex = 14;
     //
     // checkedListBox1
     //
     this.checkedListBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkedListBox1.FormattingEnabled = true;
     this.checkedListBox1.Location = new System.Drawing.Point(20, 21);
     this.checkedListBox1.Name = "checkedListBox1";
     this.checkedListBox1.Size = new System.Drawing.Size(267, 99);
     this.checkedListBox1.TabIndex = 13;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(19, 2);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(97, 16);
     this.label11.TabIndex = 12;
     this.label11.Text = "Hematologie";
     //
     // groupPanel2
     //
     this.groupPanel2.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.ActiveCaption;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.textBox9);
     this.groupPanel2.Controls.Add(this.textBox10);
     this.groupPanel2.Controls.Add(this.textBox8);
     this.groupPanel2.Controls.Add(this.label10);
     this.groupPanel2.Controls.Add(this.label9);
     this.groupPanel2.Controls.Add(this.label7);
     this.groupPanel2.DrawTitleBox = false;
     this.groupPanel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel2.IsShadowEnabled = true;
     this.groupPanel2.Location = new System.Drawing.Point(15, 228);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(616, 116);
     //
     //
     //
     this.groupPanel2.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 1;
     this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 1;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 1;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 1;
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel2.TabIndex = 23;
     this.groupPanel2.Text = "Date medic";
     //
     // textBox9
     //
     this.textBox9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox9.Location = new System.Drawing.Point(244, 32);
     this.textBox9.Name = "textBox9";
     this.textBox9.Size = new System.Drawing.Size(303, 20);
     this.textBox9.TabIndex = 26;
     //
     // textBox10
     //
     this.textBox10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox10.Location = new System.Drawing.Point(244, 58);
     this.textBox10.Name = "textBox10";
     this.textBox10.Size = new System.Drawing.Size(303, 20);
     this.textBox10.TabIndex = 24;
     //
     // textBox8
     //
     this.textBox8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox8.Location = new System.Drawing.Point(244, 6);
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new System.Drawing.Size(303, 20);
     this.textBox8.TabIndex = 25;
     //
     // 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(38, 58);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(61, 16);
     this.label10.TabIndex = 23;
     this.label10.Text = "Telefon";
     //
     // 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(39, 32);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(48, 16);
     this.label9.TabIndex = 22;
     this.label9.Text = "Spital";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(39, 6);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(48, 16);
     this.label7.TabIndex = 21;
     this.label7.Text = "Nume";
     //
     // groupPanel1
     //
     this.groupPanel1.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.ActiveCaption;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.textBox1);
     this.groupPanel1.Controls.Add(this.dateTimePicker1);
     this.groupPanel1.Controls.Add(this.label15);
     this.groupPanel1.Controls.Add(this.textBox7);
     this.groupPanel1.Controls.Add(this.label8);
     this.groupPanel1.Controls.Add(this.textBox4);
     this.groupPanel1.Controls.Add(this.textBox5);
     this.groupPanel1.Controls.Add(this.label2);
     this.groupPanel1.Controls.Add(this.label3);
     this.groupPanel1.Controls.Add(this.textBox3);
     this.groupPanel1.Controls.Add(this.label4);
     this.groupPanel1.Controls.Add(this.textBox2);
     this.groupPanel1.Controls.Add(this.label6);
     this.groupPanel1.Controls.Add(this.label5);
     this.groupPanel1.DrawTitleBox = false;
     this.groupPanel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel1.IsShadowEnabled = true;
     this.groupPanel1.Location = new System.Drawing.Point(15, -2);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(616, 220);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.superTooltip1.SetSuperTooltip(this.groupPanel1, new DevComponents.DotNetBar.SuperTooltipInfo("MedLAB Help", "", "", global::MedLab2.Properties.Resources.ReflectionImage, global::MedLab2.Properties.Resources.ReflectionImage2, DevComponents.DotNetBar.eTooltipColor.System));
     this.groupPanel1.TabIndex = 22;
     this.groupPanel1.Text = "Date pacient";
     //
     // textBox1
     //
     this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox1.Location = new System.Drawing.Point(244, 2);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(303, 20);
     this.textBox1.TabIndex = 21;
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.CalendarFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dateTimePicker1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dateTimePicker1.Location = new System.Drawing.Point(244, 33);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(303, 20);
     this.dateTimePicker1.TabIndex = 34;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.Location = new System.Drawing.Point(45, 137);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(52, 16);
     this.label15.TabIndex = 33;
     this.label15.Text = "E-mail";
     //
     // textBox7
     //
     this.textBox7.BackColor = System.Drawing.Color.White;
     this.textBox7.Enabled = false;
     this.textBox7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox7.Location = new System.Drawing.Point(244, 163);
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new System.Drawing.Size(303, 20);
     this.textBox7.TabIndex = 32;
     //
     // 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(39, 111);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(61, 16);
     this.label8.TabIndex = 30;
     this.label8.Text = "Telefon";
     //
     // textBox4
     //
     this.textBox4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox4.Location = new System.Drawing.Point(244, 111);
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new System.Drawing.Size(303, 20);
     this.textBox4.TabIndex = 29;
     //
     // textBox5
     //
     this.textBox5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox5.Location = new System.Drawing.Point(244, 137);
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new System.Drawing.Size(303, 20);
     this.textBox5.TabIndex = 31;
     this.textBox5.Text = "*****@*****.**";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(39, 6);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(48, 16);
     this.label2.TabIndex = 22;
     this.label2.Text = "Nume";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(37, 33);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(96, 16);
     this.label3.TabIndex = 23;
     this.label3.Text = "Data nasterii";
     //
     // textBox3
     //
     this.textBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox3.Location = new System.Drawing.Point(244, 85);
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new System.Drawing.Size(303, 20);
     this.textBox3.TabIndex = 28;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(39, 59);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(39, 16);
     this.label4.TabIndex = 24;
     this.label4.Text = "CNP";
     //
     // textBox2
     //
     this.textBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox2.Location = new System.Drawing.Point(244, 59);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(303, 20);
     this.textBox2.TabIndex = 25;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(37, 163);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(181, 16);
     this.label6.TabIndex = 27;
     this.label6.Text = "Data efectuarii analizelor";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(39, 85);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(58, 16);
     this.label5.TabIndex = 26;
     this.label5.Text = "Adresa";
     //
     // tabItem2
     //
     this.tabItem2.AttachedControl = this.tabControlPanel2;
     this.tabItem2.Name = "tabItem2";
     this.tabItem2.Text = "Introducere date pacient";
     //
     // tabControlPanel3
     //
     this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel3.Location = new System.Drawing.Point(0, 22);
     this.tabControlPanel3.Name = "tabControlPanel3";
     this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel3.Size = new System.Drawing.Size(592, 579);
     this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel3.Style.GradientAngle = 90;
     this.tabControlPanel3.TabIndex = 3;
     this.tabControlPanel3.TabItem = this.tabItem3;
     //
     // tabItem3
     //
     this.tabItem3.AttachedControl = this.tabControlPanel3;
     this.tabItem3.Name = "tabItem3";
     this.tabItem3.Text = "Statistica";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX1.Location = new System.Drawing.Point(3, 372);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(137, 56);
     this.buttonX1.TabIndex = 3;
     this.buttonX1.Text = "Adauga in baza de date";
     this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // reflectionImage2
     //
     this.reflectionImage2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     //
     //
     //
     this.reflectionImage2.BackgroundStyle.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.reflectionImage2.Image = global::MedLab2.Properties.Resources.ReflectionImage;
     this.reflectionImage2.Location = new System.Drawing.Point(32, 668);
     this.reflectionImage2.Name = "reflectionImage2";
     this.reflectionImage2.Size = new System.Drawing.Size(77, 75);
     this.reflectionImage2.TabIndex = 6;
     //
     // reflectionLabel1
     //
     this.reflectionLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.reflectionLabel1.Location = new System.Drawing.Point(115, 662);
     this.reflectionLabel1.Name = "reflectionLabel1";
     this.reflectionLabel1.Size = new System.Drawing.Size(147, 81);
     this.reflectionLabel1.TabIndex = 7;
     this.reflectionLabel1.Text = "<b><font size=\"+14\"><i>Med</i><font color=\"#B02B2C\">LAB</font></font></b>";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.AutoScrollMargin = new System.Drawing.Size(5, 5);
     this.AutoScrollMinSize = new System.Drawing.Size(5, 5);
     this.ClientSize = new System.Drawing.Size(1284, 750);
     this.Controls.Add(this.reflectionImage2);
     this.Controls.Add(this.reflectionLabel1);
     this.Controls.Add(this.tabControl2);
     this.Controls.Add(this.sideBar1);
     this.Controls.Add(this.ribbonControl1);
     this.DoubleBuffered = true;
     this.HelpButton = true;
     this.Name = "MainForm";
     this.Text = "MedLAB";
     this.Activated += new System.EventHandler(this.MainForm_Activated);
     this.Load += new System.EventHandler(this.MainForm_Load);
     this.Click += new System.EventHandler(this.MainForm_Click);
     this.Enter += new System.EventHandler(this.MainForm_Enter);
     this.ribbonControl1.ResumeLayout(false);
     this.ribbonControl1.PerformLayout();
     this.ribbonPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControl2)).EndInit();
     this.tabControl2.ResumeLayout(false);
     this.tabControlPanel1.ResumeLayout(false);
     this.groupPanel6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit();
     this.groupPanel5.ResumeLayout(false);
     this.groupPanel5.PerformLayout();
     this.groupPanel4.ResumeLayout(false);
     this.groupPanel4.PerformLayout();
     this.tabControlPanel2.ResumeLayout(false);
     this.groupPanel3.ResumeLayout(false);
     this.groupPanel3.PerformLayout();
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel2.PerformLayout();
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.dtgv_ThoiKhoaBieu = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.comboLop = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.btnLuu = new DevComponents.DotNetBar.ButtonX();
     this.btnClose = new DevComponents.DotNetBar.ButtonX();
     this.btnSua = new DevComponents.DotNetBar.ButtonX();
     this.Tiet = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Buoi = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Thu2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Thu3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Thu4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Thu5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Thu6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Thu7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.dtgv_ThoiKhoaBieu)).BeginInit();
     this.groupPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX5.Location = new System.Drawing.Point(211, -3);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(182, 23);
     this.labelX5.TabIndex = 36;
     this.labelX5.Text = "Lập Thời Khóa Biểu";
     //
     // dtgv_ThoiKhoaBieu
     //
     this.dtgv_ThoiKhoaBieu.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dtgv_ThoiKhoaBieu.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Tiet,
     this.Buoi,
     this.Thu2,
     this.Thu3,
     this.Thu4,
     this.Thu5,
     this.Thu6,
     this.Thu7});
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dtgv_ThoiKhoaBieu.DefaultCellStyle = dataGridViewCellStyle4;
     this.dtgv_ThoiKhoaBieu.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     this.dtgv_ThoiKhoaBieu.Location = new System.Drawing.Point(3, 3);
     this.dtgv_ThoiKhoaBieu.Name = "dtgv_ThoiKhoaBieu";
     this.dtgv_ThoiKhoaBieu.ReadOnly = true;
     this.dtgv_ThoiKhoaBieu.Size = new System.Drawing.Size(616, 231);
     this.dtgv_ThoiKhoaBieu.TabIndex = 42;
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.dtgv_ThoiKhoaBieu);
     this.groupPanel1.Location = new System.Drawing.Point(-3, 38);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(622, 258);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.Class = "";
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel1.StyleMouseDown.Class = "";
     this.groupPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel1.StyleMouseOver.Class = "";
     this.groupPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel1.TabIndex = 43;
     this.groupPanel1.Text = "Thông Tin Thời Khóa Biểu";
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.Location = new System.Drawing.Point(12, 12);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(28, 23);
     this.labelX1.TabIndex = 44;
     this.labelX1.Text = "Lớp: ";
     //
     // comboLop
     //
     this.comboLop.DisplayMember = "Text";
     this.comboLop.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboLop.FormattingEnabled = true;
     this.comboLop.ItemHeight = 14;
     this.comboLop.Location = new System.Drawing.Point(46, 15);
     this.comboLop.Name = "comboLop";
     this.comboLop.Size = new System.Drawing.Size(57, 20);
     this.comboLop.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboLop.TabIndex = 45;
     this.comboLop.SelectedIndexChanged += new System.EventHandler(this.comboLop_SelectedIndexChanged);
     //
     // btnLuu
     //
     this.btnLuu.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnLuu.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnLuu.Enabled = false;
     this.btnLuu.Location = new System.Drawing.Point(84, 302);
     this.btnLuu.Name = "btnLuu";
     this.btnLuu.Size = new System.Drawing.Size(75, 23);
     this.btnLuu.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnLuu.TabIndex = 50;
     this.btnLuu.Text = "Lưu";
     this.btnLuu.Click += new System.EventHandler(this.btnLuu_Click);
     //
     // btnClose
     //
     this.btnClose.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnClose.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnClose.Location = new System.Drawing.Point(544, 302);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnClose.TabIndex = 51;
     this.btnClose.Text = "Close";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnSua
     //
     this.btnSua.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnSua.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnSua.Location = new System.Drawing.Point(3, 302);
     this.btnSua.Name = "btnSua";
     this.btnSua.Size = new System.Drawing.Size(75, 23);
     this.btnSua.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnSua.TabIndex = 52;
     this.btnSua.Text = "Sửa";
     this.btnSua.Click += new System.EventHandler(this.btnSua_Click);
     //
     // Tiet
     //
     this.Tiet.DataPropertyName = "tiet";
     this.Tiet.HeaderText = "Tiết";
     this.Tiet.Name = "Tiet";
     this.Tiet.ReadOnly = true;
     this.Tiet.Width = 40;
     //
     // Buoi
     //
     this.Buoi.DataPropertyName = "buoi";
     dataGridViewCellStyle3.ForeColor = System.Drawing.Color.Red;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.Red;
     this.Buoi.DefaultCellStyle = dataGridViewCellStyle3;
     this.Buoi.HeaderText = "Buổi";
     this.Buoi.Name = "Buoi";
     this.Buoi.ReadOnly = true;
     this.Buoi.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Buoi.Width = 50;
     //
     // Thu2
     //
     this.Thu2.DataPropertyName = "thu2";
     this.Thu2.HeaderText = "Thứ 2";
     this.Thu2.Name = "Thu2";
     this.Thu2.ReadOnly = true;
     this.Thu2.Width = 80;
     //
     // Thu3
     //
     this.Thu3.DataPropertyName = "thu3";
     this.Thu3.HeaderText = "Thứ 3";
     this.Thu3.Name = "Thu3";
     this.Thu3.ReadOnly = true;
     this.Thu3.Width = 80;
     //
     // Thu4
     //
     this.Thu4.DataPropertyName = "thu4";
     this.Thu4.HeaderText = "Thứ 4";
     this.Thu4.Name = "Thu4";
     this.Thu4.ReadOnly = true;
     this.Thu4.Width = 80;
     //
     // Thu5
     //
     this.Thu5.DataPropertyName = "thu5";
     this.Thu5.HeaderText = "Thứ 5";
     this.Thu5.Name = "Thu5";
     this.Thu5.ReadOnly = true;
     this.Thu5.Width = 80;
     //
     // Thu6
     //
     this.Thu6.DataPropertyName = "thu6";
     this.Thu6.HeaderText = "Thứ 6";
     this.Thu6.Name = "Thu6";
     this.Thu6.ReadOnly = true;
     this.Thu6.Width = 80;
     //
     // Thu7
     //
     this.Thu7.DataPropertyName = "thu7";
     this.Thu7.HeaderText = "Thứ 7";
     this.Thu7.Name = "Thu7";
     this.Thu7.ReadOnly = true;
     this.Thu7.Width = 80;
     //
     // frmLapThoiKhoaBieu
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(625, 327);
     this.Controls.Add(this.btnSua);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.btnLuu);
     this.Controls.Add(this.comboLop);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.labelX5);
     this.DoubleBuffered = true;
     this.Name = "frmLapThoiKhoaBieu";
     this.Text = "Lập Thời Khóa Biểu";
     this.Load += new System.EventHandler(this.frmLapThoiKhoaBieu_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dtgv_ThoiKhoaBieu)).EndInit();
     this.groupPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Agrupaciones));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.txtNombre = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtDescripcion = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.superValidator2 = new DevComponents.DotNetBar.Validator.SuperValidator();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.highlighter1 = new DevComponents.DotNetBar.Validator.Highlighter();
     this.dgAgrupaciones = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.requiredFieldValidator2 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Your error message here.");
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgAgrupaciones)).BeginInit();
     this.SuspendLayout();
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(29, 57);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "Nombre :";
     //
     // txtNombre
     //
     this.txtNombre.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtNombre.Border.Class = "TextBoxBorder";
     this.txtNombre.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtNombre.ForeColor = System.Drawing.Color.Black;
     this.txtNombre.Location = new System.Drawing.Point(110, 60);
     this.txtNombre.MaxLength = 50;
     this.txtNombre.Name = "txtNombre";
     this.txtNombre.ReadOnly = true;
     this.txtNombre.Size = new System.Drawing.Size(137, 20);
     this.txtNombre.TabIndex = 1;
     this.superValidator2.SetValidator1(this.txtNombre, this.requiredFieldValidator2);
     //
     // txtDescripcion
     //
     this.txtDescripcion.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtDescripcion.Border.Class = "TextBoxBorder";
     this.txtDescripcion.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtDescripcion.ForeColor = System.Drawing.Color.Black;
     this.txtDescripcion.Location = new System.Drawing.Point(110, 86);
     this.txtDescripcion.MaxLength = 3000;
     this.txtDescripcion.Multiline = true;
     this.txtDescripcion.Name = "txtDescripcion";
     this.txtDescripcion.ReadOnly = true;
     this.txtDescripcion.Size = new System.Drawing.Size(271, 60);
     this.txtDescripcion.TabIndex = 2;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(29, 87);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 23);
     this.labelX2.TabIndex = 3;
     this.labelX2.Text = "Descripcion :";
     //
     // superValidator2
     //
     this.superValidator2.ContainerControl = this;
     this.superValidator2.ErrorProvider = this.errorProvider1;
     this.superValidator2.Highlighter = this.highlighter1;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // highlighter1
     //
     this.highlighter1.ContainerControl = this;
     //
     // dgAgrupaciones
     //
     this.dgAgrupaciones.AllowUserToAddRows = false;
     this.dgAgrupaciones.AllowUserToDeleteRows = false;
     this.dgAgrupaciones.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgAgrupaciones.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgAgrupaciones.DefaultCellStyle = dataGridViewCellStyle2;
     this.dgAgrupaciones.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(241)))), ((int)(((byte)(250)))));
     this.dgAgrupaciones.Location = new System.Drawing.Point(29, 161);
     this.dgAgrupaciones.Name = "dgAgrupaciones";
     this.dgAgrupaciones.ReadOnly = true;
     this.dgAgrupaciones.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgAgrupaciones.Size = new System.Drawing.Size(466, 150);
     this.dgAgrupaciones.TabIndex = 4;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX3.Location = new System.Drawing.Point(146, 17);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(249, 23);
     this.labelX3.TabIndex = 5;
     this.labelX3.Text = "Agrupaciónes / Gremios";
     this.labelX3.Click += new System.EventHandler(this.labelX3_Click);
     //
     // requiredFieldValidator2
     //
     this.requiredFieldValidator2.ErrorMessage = "Your error message here.";
     this.requiredFieldValidator2.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // Agrupaciones
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.dgAgrupaciones);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.txtDescripcion);
     this.Controls.Add(this.txtNombre);
     this.Controls.Add(this.labelX1);
     this.Name = "Agrupaciones";
     this.Size = new System.Drawing.Size(523, 329);
     this.Load += new System.EventHandler(this.Solicitud_Apoyo_Load);
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgAgrupaciones)).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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.comboLop = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.dataGridViewX1 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.Tiet = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Buoi = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Thu2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Thu3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Thu4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Thu5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Thu6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Thu7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.groupPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
     this.SuspendLayout();
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.Location = new System.Drawing.Point(50, 9);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(28, 23);
     this.labelX1.TabIndex = 52;
     this.labelX1.Text = "Lớp: ";
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX5.Location = new System.Drawing.Point(218, -1);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(182, 23);
     this.labelX5.TabIndex = 50;
     this.labelX5.Text = "Xem Thời Khóa Biểu";
     //
     // comboLop
     //
     this.comboLop.DisplayMember = "Text";
     this.comboLop.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboLop.FormattingEnabled = true;
     this.comboLop.ItemHeight = 14;
     this.comboLop.Location = new System.Drawing.Point(73, 12);
     this.comboLop.Name = "comboLop";
     this.comboLop.Size = new System.Drawing.Size(64, 20);
     this.comboLop.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboLop.TabIndex = 55;
     this.comboLop.SelectedIndexChanged += new System.EventHandler(this.comboBoxEx1_SelectedIndexChanged);
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.dataGridViewX1);
     this.groupPanel1.Location = new System.Drawing.Point(-2, 38);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(668, 261);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.Class = "";
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel1.StyleMouseDown.Class = "";
     this.groupPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel1.StyleMouseOver.Class = "";
     this.groupPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel1.TabIndex = 57;
     this.groupPanel1.Text = "Thông Tin Thời Khóa Biểu";
     //
     // dataGridViewX1
     //
     this.dataGridViewX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewX1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Tiet,
     this.Buoi,
     this.Thu2,
     this.Thu3,
     this.Thu4,
     this.Thu5,
     this.Thu6,
     this.Thu7});
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewX1.DefaultCellStyle = dataGridViewCellStyle3;
     this.dataGridViewX1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridViewX1.Location = new System.Drawing.Point(3, 3);
     this.dataGridViewX1.Name = "dataGridViewX1";
     this.dataGridViewX1.ReadOnly = true;
     this.dataGridViewX1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridViewX1.Size = new System.Drawing.Size(645, 234);
     this.dataGridViewX1.TabIndex = 42;
     //
     // Tiet
     //
     this.Tiet.DataPropertyName = "tiet";
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.Gray;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.Gray;
     this.Tiet.DefaultCellStyle = dataGridViewCellStyle1;
     this.Tiet.HeaderText = "Tiết";
     this.Tiet.Name = "Tiet";
     this.Tiet.ReadOnly = true;
     this.Tiet.Width = 50;
     //
     // Buoi
     //
     this.Buoi.DataPropertyName = "buoi";
     dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Red;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.Red;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.Red;
     this.Buoi.DefaultCellStyle = dataGridViewCellStyle2;
     this.Buoi.HeaderText = "Buổi";
     this.Buoi.Name = "Buoi";
     this.Buoi.ReadOnly = true;
     this.Buoi.Width = 70;
     //
     // Thu2
     //
     this.Thu2.DataPropertyName = "thu2";
     this.Thu2.HeaderText = "Thứ 2";
     this.Thu2.Name = "Thu2";
     this.Thu2.ReadOnly = true;
     this.Thu2.Width = 80;
     //
     // Thu3
     //
     this.Thu3.DataPropertyName = "thu3";
     this.Thu3.HeaderText = "Thứ 3";
     this.Thu3.Name = "Thu3";
     this.Thu3.ReadOnly = true;
     this.Thu3.Width = 80;
     //
     // Thu4
     //
     this.Thu4.DataPropertyName = "thu4";
     this.Thu4.HeaderText = "Thứ 4";
     this.Thu4.Name = "Thu4";
     this.Thu4.ReadOnly = true;
     this.Thu4.Width = 80;
     //
     // Thu5
     //
     this.Thu5.DataPropertyName = "thu5";
     this.Thu5.HeaderText = "Thứ 5";
     this.Thu5.Name = "Thu5";
     this.Thu5.ReadOnly = true;
     this.Thu5.Width = 80;
     //
     // Thu6
     //
     this.Thu6.DataPropertyName = "thu6";
     this.Thu6.HeaderText = "Thứ 6";
     this.Thu6.Name = "Thu6";
     this.Thu6.ReadOnly = true;
     this.Thu6.Width = 80;
     //
     // Thu7
     //
     this.Thu7.DataPropertyName = "thu7";
     this.Thu7.HeaderText = "Thứ 7";
     this.Thu7.Name = "Thu7";
     this.Thu7.ReadOnly = true;
     this.Thu7.Width = 80;
     //
     // frmXemThoiKhoaBieu
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(662, 296);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.comboLop);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.labelX5);
     this.DoubleBuffered = true;
     this.Name = "frmXemThoiKhoaBieu";
     this.Text = "Xem Thời Khóa Biểu";
     this.Load += new System.EventHandler(this.frmXemThoiKhoaBieu_Load);
     this.groupPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit();
     this.ResumeLayout(false);
 }
        //Khoi tao DataGridViewX
        private void _DrawDataGridViewX()
        {
            if (_DataSource != null)
            {
                _DataGridViewX = new DevComponents.DotNetBar.Controls.DataGridViewX();
                int X = this.Top;
                int Y = this.Left;
                _DataGridViewX.Top = X + this.Height;
                _DataGridViewX.Name = "TextboxGrid";
                _DataGridViewX.Left = Y;
                _DataGridViewX.BringToFront();
                _DataGridViewX.Height = _DataGridViewXHeight;
                _DataGridViewX.Width = _DataGridViewXWidth;
                _DataGridViewX.DataSource = _DataSource;
                _DataGridViewX.AllowUserToAddRows = false;
                _DataGridViewX.AllowUserToDeleteRows = false;
                _DataGridViewX.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
                _DataGridViewX.Visible = false;
                _DataGridViewX.RowHeadersVisible = false;
                _DataGridViewX.Refresh();
                _DataGridViewX.CellDoubleClick +=new DataGridViewCellEventHandler(_DataGridViewX_CellDoubleClick);
                _DataGridViewX.KeyDown += new KeyEventHandler(_DataGridViewX_KeyDown);
                _DataGridViewX.Leave +=new EventHandler(_DataGridViewX_Leave);
                try
                {
                    this.TopLevelControl.Controls.Add(_DataGridViewX);
                }
                catch (Exception ex)
                {
                   // Log.Logger.Error("Loi khoi tao DataGriViewX cua component MultiDropDownTextBoxs" + ex);
                }

                //Gan gia tri cua cac column trong DataSource cho mang _ColumnName
                    if ((_DataSource != null || _DataSource.Rows.Count!=0)&&(_ColumnNameStrings!="" || _ColumnNameStrings != null || _ColumnNameStrings!=string.Empty))
                    {
                        foreach (DataColumn  _dc in _DataSource.Columns)
                        {
                            _ColumnNames.Add(_dc.ColumnName);
                        }
                    }
                //Doi ten cac column Header theo ngon ngu duoc chon truoc
                    if ((_DataSource != null || _DataSource.Rows.Count != 0) && (_ColumnHeaderStrings != "" || _ColumnNameStrings != null || _ColumnNameStrings != string.Empty))
                    {
                        foreach (DataColumn _dc in _DataSource.Columns)
                        {
                            if (Utility.ChangeLanguage(_dc.ColumnName,_language) != null)
                            _ColumnHeaders.Add(Utility.ChangeLanguage(_dc.ColumnName,_language));
                        }
                    }
            }
        }
 /// <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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.dgvTasks = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewButtonColumn();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.btnFile = new DevComponents.DotNetBar.ButtonItem();
     this.btnExport = new DevComponents.DotNetBar.ButtonItem();
     this.btnExit = new DevComponents.DotNetBar.ButtonItem();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     ((System.ComponentModel.ISupportInitialize)(this.dgvTasks)).BeginInit();
     this.dockSite7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.SuspendLayout();
     //
     // dgvTasks
     //
     this.dgvTasks.AllowUserToAddRows = false;
     this.dgvTasks.AllowUserToDeleteRows = false;
     this.dgvTasks.BackgroundColor = System.Drawing.Color.White;
     this.dgvTasks.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvTasks.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1,
     this.Column3,
     this.Column4,
     this.Column2});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgvTasks.DefaultCellStyle = dataGridViewCellStyle1;
     this.dgvTasks.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvTasks.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgvTasks.Location = new System.Drawing.Point(0, 27);
     this.dgvTasks.Name = "dgvTasks";
     this.dgvTasks.ReadOnly = true;
     this.dgvTasks.RowTemplate.Height = 24;
     this.dgvTasks.Size = new System.Drawing.Size(784, 535);
     this.dgvTasks.TabIndex = 0;
     this.dgvTasks.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvTasks_CellContentClick);
     this.dgvTasks.CellContentDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvTasks_CellContentDoubleClick);
     //
     // Column1
     //
     this.Column1.HeaderText = "狀態";
     this.Column1.Name = "Column1";
     this.Column1.ReadOnly = true;
     //
     // Column3
     //
     this.Column3.HeaderText = "工作名稱";
     this.Column3.Name = "Column3";
     this.Column3.ReadOnly = true;
     this.Column3.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Column3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.Column3.Width = 341;
     //
     // Column4
     //
     this.Column4.HeaderText = "訊息";
     this.Column4.Name = "Column4";
     this.Column4.ReadOnly = true;
     this.Column4.Width = 200;
     //
     // Column2
     //
     this.Column2.HeaderText = "取消";
     this.Column2.Name = "Column2";
     this.Column2.ReadOnly = true;
     this.Column2.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Column2.Visible = false;
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(0, 562);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(784, 0);
     this.dockSite4.TabIndex = 5;
     this.dockSite4.TabStop = false;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite1.Location = new System.Drawing.Point(0, 27);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(0, 535);
     this.dockSite1.TabIndex = 2;
     this.dockSite1.TabStop = false;
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(784, 27);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 535);
     this.dockSite2.TabIndex = 3;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(0, 562);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(784, 0);
     this.dockSite8.TabIndex = 9;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(0, 27);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 535);
     this.dockSite5.TabIndex = 6;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(784, 27);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 535);
     this.dockSite6.TabIndex = 7;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Controls.Add(this.bar1);
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(0, 0);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(784, 27);
     this.dockSite7.TabIndex = 8;
     this.dockSite7.TabStop = false;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
     this.bar1.DockSide = DevComponents.DotNetBar.eDockSide.Top;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnFile});
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.MenuBar = true;
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(784, 26);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // btnFile
     //
     this.btnFile.Name = "btnFile";
     this.btnFile.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnExport,
     this.btnExit});
     this.btnFile.Text = "檔案";
     //
     // btnExport
     //
     this.btnExport.Enabled = false;
     this.btnExport.Name = "btnExport";
     this.btnExport.Text = "匯出";
     //
     // btnExit
     //
     this.btnExit.BeginGroup = true;
     this.btnExit.Name = "btnExit";
     this.btnExit.Text = "離開";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(0, 27);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(784, 0);
     this.dockSite3.TabIndex = 4;
     this.dockSite3.TabStop = false;
     //
     // MultiTaskingRunner
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(784, 562);
     this.ControlBox = false;
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.dgvTasks);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.DoubleBuffered = true;
     this.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "MultiTaskingRunner";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "批次工作執行";
     this.Load += new System.EventHandler(this.MultiTaskingRunner_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgvTasks)).EndInit();
     this.dockSite7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.ResumeLayout(false);
 }
示例#45
0
 /// <summary> 
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.panel2 = new System.Windows.Forms.Panel();
     this.tabControl1 = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.grdTimeTableBusyEditor = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.contextMenuBusy = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.menuBusy = new System.Windows.Forms.ToolStripMenuItem();
     this.menuBusyDesc = new System.Windows.Forms.ToolStripMenuItem();
     this.menuFree = new System.Windows.Forms.ToolStripMenuItem();
     this.panel3 = new System.Windows.Forms.Panel();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.cmbTimeTables = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.grdClassBusys = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.tabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.panel1 = new System.Windows.Forms.Panel();
     this.lblName = new DevComponents.DotNetBar.LabelX();
     this.contextMenuStripDelete = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.errorProvider2 = new System.Windows.Forms.ErrorProvider(this.components);
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWeekDay = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colStartHour = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colStartMinute = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colBusyDesc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colSubject = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colLevel = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panelEx1.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tabControlPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdTimeTableBusyEditor)).BeginInit();
     this.contextMenuBusy.SuspendLayout();
     this.panel3.SuspendLayout();
     this.tabControlPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdClassBusys)).BeginInit();
     this.panel1.SuspendLayout();
     this.contextMenuStripDelete.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.panel2);
     this.panelEx1.Controls.Add(this.panel1);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(530, 434);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 1;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.tabControl1);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 34);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(530, 400);
     this.panel2.TabIndex = 4;
     //
     // tabControl1
     //
     this.tabControl1.BackColor = System.Drawing.Color.Transparent;
     this.tabControl1.CanReorderTabs = true;
     this.tabControl1.Controls.Add(this.tabControlPanel1);
     this.tabControl1.Controls.Add(this.tabControlPanel2);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location = new System.Drawing.Point(0, 0);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedTabFont = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Bold);
     this.tabControl1.SelectedTabIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(530, 400);
     this.tabControl1.TabIndex = 0;
     this.tabControl1.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabControl1.Tabs.Add(this.tabItem1);
     this.tabControl1.Tabs.Add(this.tabItem2);
     this.tabControl1.Text = "tabControl1";
     this.tabControl1.DoubleClick += new System.EventHandler(this.tabControl1_DoubleClick);
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.grdTimeTableBusyEditor);
     this.tabControlPanel1.Controls.Add(this.panel3);
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 29);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(530, 371);
     this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabControlPanel1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel1.Style.GradientAngle = 90;
     this.tabControlPanel1.TabIndex = 1;
     this.tabControlPanel1.TabItem = this.tabItem1;
     //
     // grdTimeTableBusyEditor
     //
     this.grdTimeTableBusyEditor.AllowUserToAddRows = false;
     this.grdTimeTableBusyEditor.AllowUserToDeleteRows = false;
     this.grdTimeTableBusyEditor.AllowUserToResizeColumns = false;
     this.grdTimeTableBusyEditor.AllowUserToResizeRows = false;
     this.grdTimeTableBusyEditor.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.grdTimeTableBusyEditor.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.grdTimeTableBusyEditor.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdTimeTableBusyEditor.ContextMenuStrip = this.contextMenuBusy;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdTimeTableBusyEditor.DefaultCellStyle = dataGridViewCellStyle2;
     this.grdTimeTableBusyEditor.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdTimeTableBusyEditor.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
     this.grdTimeTableBusyEditor.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     this.grdTimeTableBusyEditor.Location = new System.Drawing.Point(1, 35);
     this.grdTimeTableBusyEditor.Name = "grdTimeTableBusyEditor";
     this.grdTimeTableBusyEditor.RowHeadersVisible = false;
     this.grdTimeTableBusyEditor.RowTemplate.Height = 24;
     this.grdTimeTableBusyEditor.Size = new System.Drawing.Size(528, 335);
     this.grdTimeTableBusyEditor.TabIndex = 22;
     //
     // contextMenuBusy
     //
     this.contextMenuBusy.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.menuBusy,
     this.menuBusyDesc,
     this.menuFree});
     this.contextMenuBusy.Name = "contextMenuStrip1";
     this.contextMenuBusy.ShowImageMargin = false;
     this.contextMenuBusy.Size = new System.Drawing.Size(186, 70);
     //
     // menuBusy
     //
     this.menuBusy.Name = "menuBusy";
     this.menuBusy.Size = new System.Drawing.Size(185, 22);
     this.menuBusy.Text = "設定不排課時段";
     //
     // menuBusyDesc
     //
     this.menuBusyDesc.Name = "menuBusyDesc";
     this.menuBusyDesc.Size = new System.Drawing.Size(185, 22);
     this.menuBusyDesc.Text = "設定不排課時段(指定描述)";
     //
     // menuFree
     //
     this.menuFree.Name = "menuFree";
     this.menuFree.Size = new System.Drawing.Size(185, 22);
     this.menuFree.Text = "取消設定";
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.Transparent;
     this.panel3.Controls.Add(this.labelX4);
     this.panel3.Controls.Add(this.labelX2);
     this.panel3.Controls.Add(this.cmbTimeTables);
     this.panel3.Controls.Add(this.comboBoxEx1);
     this.panel3.Controls.Add(this.labelX1);
     this.panel3.Controls.Add(this.labelX3);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel3.Location = new System.Drawing.Point(1, 1);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(528, 34);
     this.panel3.TabIndex = 21;
     //
     // labelX4
     //
     this.labelX4.AutoSize = true;
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(242, 7);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(219, 21);
     this.labelX4.TabIndex = 23;
     this.labelX4.Text = "(可雙擊左鍵設定,或多選以右鍵設定)";
     //
     // labelX2
     //
     this.labelX2.AutoSize = true;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(11, 7);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(60, 21);
     this.labelX2.TabIndex = 22;
     this.labelX2.Text = "時間表:";
     //
     // cmbTimeTables
     //
     this.cmbTimeTables.DisplayMember = "Name";
     this.cmbTimeTables.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbTimeTables.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbTimeTables.FormattingEnabled = true;
     this.cmbTimeTables.ItemHeight = 19;
     this.cmbTimeTables.Location = new System.Drawing.Point(71, 5);
     this.cmbTimeTables.Name = "cmbTimeTables";
     this.cmbTimeTables.Size = new System.Drawing.Size(155, 25);
     this.cmbTimeTables.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbTimeTables.TabIndex = 18;
     this.cmbTimeTables.ValueMember = "UID";
     this.cmbTimeTables.SelectedIndexChanged += new System.EventHandler(this.cmbTimeTables_SelectedIndexChanged);
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DisplayMember = "Text";
     this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.ItemHeight = 19;
     this.comboBoxEx1.Location = new System.Drawing.Point(313, 37);
     this.comboBoxEx1.Name = "comboBoxEx1";
     this.comboBoxEx1.Size = new System.Drawing.Size(121, 25);
     this.comboBoxEx1.TabIndex = 12;
     this.comboBoxEx1.Visible = false;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(241, 41);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(74, 21);
     this.labelX1.TabIndex = 11;
     this.labelX1.Text = "所在地點:";
     this.labelX1.Visible = false;
     //
     // labelX3
     //
     this.labelX3.AutoSize = true;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(234, 41);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(74, 21);
     this.labelX3.TabIndex = 3;
     this.labelX3.Text = "場地代碼:";
     this.labelX3.Visible = false;
     //
     // tabItem1
     //
     this.tabItem1.AttachedControl = this.tabControlPanel1;
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "不排課時段";
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.Controls.Add(this.grdClassBusys);
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 29);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(530, 371);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabControlPanel2.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.Style.GradientAngle = 90;
     this.tabControlPanel2.TabIndex = 2;
     this.tabControlPanel2.TabItem = this.tabItem2;
     //
     // grdClassBusys
     //
     this.grdClassBusys.BackgroundColor = System.Drawing.Color.White;
     this.grdClassBusys.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdClassBusys.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colWeekDay,
     this.colStartHour,
     this.colStartMinute,
     this.colBusyDesc});
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdClassBusys.DefaultCellStyle = dataGridViewCellStyle3;
     this.grdClassBusys.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdClassBusys.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
     this.grdClassBusys.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     this.grdClassBusys.HighlightSelectedColumnHeaders = false;
     this.grdClassBusys.Location = new System.Drawing.Point(1, 1);
     this.grdClassBusys.MultiSelect = false;
     this.grdClassBusys.Name = "grdClassBusys";
     this.grdClassBusys.ReadOnly = true;
     this.grdClassBusys.RowHeadersWidth = 35;
     this.grdClassBusys.RowTemplate.Height = 24;
     this.grdClassBusys.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.grdClassBusys.Size = new System.Drawing.Size(528, 369);
     this.grdClassBusys.TabIndex = 3;
     //
     // tabItem2
     //
     this.tabItem2.AttachedControl = this.tabControlPanel2;
     this.tabItem2.Name = "tabItem2";
     this.tabItem2.Text = "清單檢視";
     this.tabItem2.Visible = false;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.lblName);
     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(530, 34);
     this.panel1.TabIndex = 3;
     this.panel1.DoubleClick += new System.EventHandler(this.panel1_DoubleClick);
     //
     // lblName
     //
     this.lblName.AutoSize = true;
     //
     //
     //
     this.lblName.BackgroundStyle.Class = "";
     this.lblName.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblName.Font = new System.Drawing.Font("Microsoft JhengHei", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.lblName.Location = new System.Drawing.Point(3, 1);
     this.lblName.Name = "lblName";
     this.lblName.Size = new System.Drawing.Size(87, 32);
     this.lblName.TabIndex = 6;
     this.lblName.Text = "班級名稱";
     //
     // contextMenuStripDelete
     //
     this.contextMenuStripDelete.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem2});
     this.contextMenuStripDelete.Name = "contextMenuStrip1";
     this.contextMenuStripDelete.ShowImageMargin = false;
     this.contextMenuStripDelete.Size = new System.Drawing.Size(41, 26);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(40, 22);
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // errorProvider2
     //
     this.errorProvider2.ContainerControl = this;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn1.HeaderText = "星期";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly = true;
     this.dataGridViewTextBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.dataGridViewTextBoxColumn1.ToolTipText = "只能輸入1到7";
     this.dataGridViewTextBoxColumn1.Width = 35;
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn2.HeaderText = "開始時間";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     this.dataGridViewTextBoxColumn2.ReadOnly = true;
     this.dataGridViewTextBoxColumn2.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.dataGridViewTextBoxColumn2.Width = 59;
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn3.HeaderText = "結束時間";
     this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
     this.dataGridViewTextBoxColumn3.ReadOnly = true;
     this.dataGridViewTextBoxColumn3.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.dataGridViewTextBoxColumn3.Width = 59;
     //
     // dataGridViewTextBoxColumn4
     //
     this.dataGridViewTextBoxColumn4.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.dataGridViewTextBoxColumn4.HeaderText = "不排課描述";
     this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
     this.dataGridViewTextBoxColumn4.ReadOnly = true;
     //
     // colWeekDay
     //
     this.colWeekDay.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colWeekDay.HeaderText = "星期";
     this.colWeekDay.Name = "colWeekDay";
     this.colWeekDay.ReadOnly = true;
     this.colWeekDay.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.colWeekDay.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.colWeekDay.ToolTipText = "只能輸入1到7";
     this.colWeekDay.Width = 40;
     //
     // colStartHour
     //
     this.colStartHour.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colStartHour.HeaderText = "開始時間";
     this.colStartHour.Name = "colStartHour";
     this.colStartHour.ReadOnly = true;
     this.colStartHour.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.colStartHour.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.colStartHour.Width = 66;
     //
     // colStartMinute
     //
     this.colStartMinute.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colStartMinute.HeaderText = "結束時間";
     this.colStartMinute.Name = "colStartMinute";
     this.colStartMinute.ReadOnly = true;
     this.colStartMinute.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.colStartMinute.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.colStartMinute.Width = 66;
     //
     // colBusyDesc
     //
     this.colBusyDesc.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.colBusyDesc.HeaderText = "不排課描述";
     this.colBusyDesc.Name = "colBusyDesc";
     this.colBusyDesc.ReadOnly = true;
     //
     // colSubject
     //
     this.colSubject.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.colSubject.HeaderText = "科目";
     this.colSubject.Name = "colSubject";
     //
     // colLevel
     //
     this.colLevel.HeaderText = "級別";
     this.colLevel.Name = "colLevel";
     //
     // ClassEditor
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.Controls.Add(this.panelEx1);
     this.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.Name = "ClassEditor";
     this.Size = new System.Drawing.Size(530, 434);
     this.panelEx1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tabControlPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdTimeTableBusyEditor)).EndInit();
     this.contextMenuBusy.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.tabControlPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdClassBusys)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.contextMenuStripDelete.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.dgvKho = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.Ma = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TEN = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DIACHI = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DIENTHOAI = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.SODK = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NGAYLAP = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cmdLuu = new DevComponents.DotNetBar.ButtonX();
     this.dgvCTKho = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cmdLuuCT = new DevComponents.DotNetBar.ButtonX();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.cmdBo = new DevComponents.DotNetBar.ButtonX();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.cmdBoCT = new DevComponents.DotNetBar.ButtonX();
     ((System.ComponentModel.ISupportInitialize)(this.dgvKho)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvCTKho)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // dgvKho
     //
     this.dgvKho.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvKho.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Ma,
     this.TEN,
     this.DIACHI,
     this.DIENTHOAI,
     this.SODK,
     this.NGAYLAP});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Arial", 11F);
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgvKho.DefaultCellStyle = dataGridViewCellStyle1;
     this.dgvKho.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgvKho.Location = new System.Drawing.Point(6, 23);
     this.dgvKho.Name = "dgvKho";
     this.dgvKho.Size = new System.Drawing.Size(800, 150);
     this.dgvKho.TabIndex = 76;
     this.dgvKho.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvKho_CellEnter);
     this.dgvKho.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvKho_CellContentClick);
     //
     // Ma
     //
     this.Ma.DataPropertyName = "MaKho";
     this.Ma.HeaderText = "Ma";
     this.Ma.Name = "Ma";
     this.Ma.Visible = false;
     //
     // TEN
     //
     this.TEN.DataPropertyName = "TEN";
     this.TEN.HeaderText = "Tên Kho";
     this.TEN.Name = "TEN";
     this.TEN.Width = 200;
     //
     // DIACHI
     //
     this.DIACHI.DataPropertyName = "DIACHI";
     this.DIACHI.HeaderText = "Địa chỉ";
     this.DIACHI.Name = "DIACHI";
     this.DIACHI.Width = 200;
     //
     // DIENTHOAI
     //
     this.DIENTHOAI.DataPropertyName = "DIENTHOAI";
     this.DIENTHOAI.HeaderText = "Điện Thoại";
     this.DIENTHOAI.Name = "DIENTHOAI";
     this.DIENTHOAI.Width = 150;
     //
     // SODK
     //
     this.SODK.DataPropertyName = "SODK";
     this.SODK.HeaderText = "Số ĐK";
     this.SODK.Name = "SODK";
     //
     // NGAYLAP
     //
     this.NGAYLAP.DataPropertyName = "NGAYLAP";
     this.NGAYLAP.HeaderText = "Ngày";
     this.NGAYLAP.Name = "NGAYLAP";
     //
     // cmdLuu
     //
     this.cmdLuu.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdLuu.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmdLuu.Location = new System.Drawing.Point(15, 179);
     this.cmdLuu.Name = "cmdLuu";
     this.cmdLuu.Size = new System.Drawing.Size(75, 23);
     this.cmdLuu.TabIndex = 78;
     this.cmdLuu.Text = "Lưu";
     this.cmdLuu.Click += new System.EventHandler(this.cmdLuu_Click);
     //
     // dgvCTKho
     //
     this.dgvCTKho.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvCTKho.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn1,
     this.dataGridViewTextBoxColumn2});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Arial", 11F);
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgvCTKho.DefaultCellStyle = dataGridViewCellStyle2;
     this.dgvCTKho.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgvCTKho.Location = new System.Drawing.Point(21, 23);
     this.dgvCTKho.Name = "dgvCTKho";
     this.dgvCTKho.Size = new System.Drawing.Size(150, 150);
     this.dgvCTKho.TabIndex = 79;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.DataPropertyName = "MAKHO";
     this.dataGridViewTextBoxColumn1.HeaderText = "Mã";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.Visible = false;
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.DataPropertyName = "KE";
     this.dataGridViewTextBoxColumn2.HeaderText = "Tên Kệ";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     //
     // cmdLuuCT
     //
     this.cmdLuuCT.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdLuuCT.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmdLuuCT.Location = new System.Drawing.Point(21, 179);
     this.cmdLuuCT.Name = "cmdLuuCT";
     this.cmdLuuCT.Size = new System.Drawing.Size(75, 23);
     this.cmdLuuCT.TabIndex = 80;
     this.cmdLuuCT.Text = "Lưu CT";
     this.cmdLuuCT.Click += new System.EventHandler(this.cmdLuuCT_Click);
     //
     // groupBox1
     //
     this.groupBox1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupBox1.Controls.Add(this.cmdBo);
     this.groupBox1.Controls.Add(this.dgvKho);
     this.groupBox1.Controls.Add(this.cmdLuu);
     this.groupBox1.Location = new System.Drawing.Point(7, 32);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(812, 218);
     this.groupBox1.TabIndex = 81;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Kho";
     //
     // cmdBo
     //
     this.cmdBo.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdBo.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmdBo.Location = new System.Drawing.Point(111, 179);
     this.cmdBo.Name = "cmdBo";
     this.cmdBo.Size = new System.Drawing.Size(75, 23);
     this.cmdBo.TabIndex = 79;
     this.cmdBo.Text = "Bỏ";
     this.cmdBo.Click += new System.EventHandler(this.cmdBo_Click);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.cmdBoCT);
     this.groupBox2.Controls.Add(this.dgvCTKho);
     this.groupBox2.Controls.Add(this.cmdLuuCT);
     this.groupBox2.Location = new System.Drawing.Point(7, 256);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(200, 223);
     this.groupBox2.TabIndex = 82;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Chi Tiết kho";
     //
     // cmdBoCT
     //
     this.cmdBoCT.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdBoCT.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmdBoCT.Location = new System.Drawing.Point(111, 179);
     this.cmdBoCT.Name = "cmdBoCT";
     this.cmdBoCT.Size = new System.Drawing.Size(75, 23);
     this.cmdBoCT.TabIndex = 81;
     this.cmdBoCT.Text = "Bỏ";
     this.cmdBoCT.Click += new System.EventHandler(this.cmdBoCT_Click);
     //
     // frmKho
     //
     this.ClientSize = new System.Drawing.Size(822, 499);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Name = "frmKho";
     this.Text = "Kho";
     this.Load += new System.EventHandler(this.frmKho_Load);
     this.Controls.SetChildIndex(this.groupBox1, 0);
     this.Controls.SetChildIndex(this.groupBox2, 0);
     ((System.ComponentModel.ISupportInitialize)(this.dgvKho)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvCTKho)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.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(frmPhieuThue));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.txt_MaCTPhieuThue = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX10 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.txt_TenKH = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX14 = new DevComponents.DotNetBar.LabelX();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.txt_TenKHDD = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX9 = new DevComponents.DotNetBar.LabelX();
     this.txt_MaKhachHangDD = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX8 = new DevComponents.DotNetBar.LabelX();
     this.chk_getId = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chk_MaPhieuThue = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.txt_MaPT = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX11 = new DevComponents.DotNetBar.LabelX();
     this.chk_MaKH = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chk_MaCTPT = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.btDelCT = new DevComponents.DotNetBar.ButtonX();
     this.btEditCT = new DevComponents.DotNetBar.ButtonX();
     this.btAddCT = new DevComponents.DotNetBar.ButtonX();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.bindingNavigatorCTPhieuThue = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.dataGridViewCTPhieuThue = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.STT_CTPT = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaKhachHang = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TenKhachHang = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaLoaiKH = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.CMND = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DiaChi = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaCTPT = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaPhieuThue_CT = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.txt_MaKH = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.txt_MaLoaiPhong = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.gb_KHDDPT = new System.Windows.Forms.GroupBox();
     this.labelX13 = new DevComponents.DotNetBar.LabelX();
     this.labelX12 = new DevComponents.DotNetBar.LabelX();
     this.txt_MaKHDD = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_TenKHDaiDien = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.btExit = new DevComponents.DotNetBar.ButtonX();
     this.chk_Id_PT = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.txt_MaPhieuThue = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.btDelete = new DevComponents.DotNetBar.ButtonX();
     this.groupBoxGridPhieuThue = new System.Windows.Forms.GroupBox();
     this.bindingNavigatorPhieuThue = new System.Windows.Forms.BindingNavigator(this.components);
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton5 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton8 = new System.Windows.Forms.ToolStripButton();
     this.dataGridViewPhieuThue = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.STT_PT = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaPhieuThue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NgayThue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NgayTra = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaPhong = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ThanhToan = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.KhachHangDaiDien = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.txt_NgayTra = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.btEdit = new DevComponents.DotNetBar.ButtonX();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.btAdd = new DevComponents.DotNetBar.ButtonX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.chk_datesystem = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.txt_MaPhong = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_NgayThue = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.bt_SendPhong = new DevComponents.DotNetBar.ButtonX();
     this.bt_SendKH = new DevComponents.DotNetBar.ButtonX();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.urlTraCuuPhong2 = new _042082.UserControls.urlTraCuuPhong();
     this.urlKhachHang2 = new _042082.UserControls.urlKhachHang();
     this.bt_getMaKHDD = new DevComponents.DotNetBar.ButtonX();
     this.urlTraCuuPhong1 = new _042082.UserControls.urlTraCuuPhong();
     this.groupBox2.SuspendLayout();
     this.groupBox6.SuspendLayout();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigatorCTPhieuThue)).BeginInit();
     this.bindingNavigatorCTPhieuThue.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewCTPhieuThue)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.gb_KHDDPT.SuspendLayout();
     this.groupBoxGridPhieuThue.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigatorPhieuThue)).BeginInit();
     this.bindingNavigatorPhieuThue.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewPhieuThue)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_NgayTra)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_NgayThue)).BeginInit();
     this.groupBox4.SuspendLayout();
     this.SuspendLayout();
     //
     // txt_MaCTPhieuThue
     //
     //
     //
     //
     this.txt_MaCTPhieuThue.Border.Class = "TextBoxBorder";
     this.txt_MaCTPhieuThue.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_MaCTPhieuThue.Enabled = false;
     this.txt_MaCTPhieuThue.Location = new System.Drawing.Point(107, 21);
     this.txt_MaCTPhieuThue.Name = "txt_MaCTPhieuThue";
     this.txt_MaCTPhieuThue.Size = new System.Drawing.Size(84, 20);
     this.txt_MaCTPhieuThue.TabIndex = 25;
     //
     // labelX10
     //
     //
     //
     //
     this.labelX10.BackgroundStyle.Class = "";
     this.labelX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX10.Location = new System.Drawing.Point(6, 19);
     this.labelX10.Name = "labelX10";
     this.labelX10.Size = new System.Drawing.Size(95, 22);
     this.labelX10.TabIndex = 26;
     this.labelX10.Text = "Mã CT Phiếu Thuê";
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.Location = new System.Drawing.Point(428, 1);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(260, 23);
     this.labelX1.TabIndex = 24;
     this.labelX1.Text = "LẬP PHIẾU THUÊ PHÒNG";
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Location = new System.Drawing.Point(205, 50);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(56, 20);
     this.labelX5.TabIndex = 21;
     this.labelX5.Text = "Loại Phòng";
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(14, 50);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(56, 22);
     this.labelX4.TabIndex = 16;
     this.labelX4.Text = "Mã Phòng";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.txt_TenKH);
     this.groupBox2.Controls.Add(this.labelX14);
     this.groupBox2.Controls.Add(this.groupBox6);
     this.groupBox2.Controls.Add(this.chk_getId);
     this.groupBox2.Controls.Add(this.chk_MaPhieuThue);
     this.groupBox2.Controls.Add(this.txt_MaPT);
     this.groupBox2.Controls.Add(this.labelX11);
     this.groupBox2.Controls.Add(this.chk_MaKH);
     this.groupBox2.Controls.Add(this.chk_MaCTPT);
     this.groupBox2.Controls.Add(this.btDelCT);
     this.groupBox2.Controls.Add(this.btEditCT);
     this.groupBox2.Controls.Add(this.btAddCT);
     this.groupBox2.Controls.Add(this.groupBox5);
     this.groupBox2.Controls.Add(this.txt_MaCTPhieuThue);
     this.groupBox2.Controls.Add(this.labelX10);
     this.groupBox2.Controls.Add(this.txt_MaKH);
     this.groupBox2.Controls.Add(this.labelX6);
     this.groupBox2.Location = new System.Drawing.Point(3, 362);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(508, 334);
     this.groupBox2.TabIndex = 22;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Chi tiết phiếu thuê";
     //
     // txt_TenKH
     //
     //
     //
     //
     this.txt_TenKH.Border.Class = "TextBoxBorder";
     this.txt_TenKH.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_TenKH.Enabled = false;
     this.txt_TenKH.Location = new System.Drawing.Point(292, 48);
     this.txt_TenKH.Name = "txt_TenKH";
     this.txt_TenKH.Size = new System.Drawing.Size(155, 20);
     this.txt_TenKH.TabIndex = 45;
     //
     // labelX14
     //
     //
     //
     //
     this.labelX14.BackgroundStyle.Class = "";
     this.labelX14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX14.Location = new System.Drawing.Point(245, 47);
     this.labelX14.Name = "labelX14";
     this.labelX14.Size = new System.Drawing.Size(46, 22);
     this.labelX14.TabIndex = 44;
     this.labelX14.Text = "Tên KH";
     //
     // groupBox6
     //
     this.groupBox6.Controls.Add(this.txt_TenKHDD);
     this.groupBox6.Controls.Add(this.labelX9);
     this.groupBox6.Controls.Add(this.txt_MaKhachHangDD);
     this.groupBox6.Controls.Add(this.labelX8);
     this.groupBox6.Location = new System.Drawing.Point(494, 7);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(10, 74);
     this.groupBox6.TabIndex = 43;
     this.groupBox6.TabStop = false;
     this.groupBox6.Text = "Khách hàng đại diện";
     this.groupBox6.Visible = false;
     //
     // txt_TenKHDD
     //
     //
     //
     //
     this.txt_TenKHDD.Border.Class = "TextBoxBorder";
     this.txt_TenKHDD.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_TenKHDD.Enabled = false;
     this.txt_TenKHDD.Location = new System.Drawing.Point(58, 46);
     this.txt_TenKHDD.Name = "txt_TenKHDD";
     this.txt_TenKHDD.Size = new System.Drawing.Size(155, 20);
     this.txt_TenKHDD.TabIndex = 40;
     //
     // labelX9
     //
     //
     //
     //
     this.labelX9.BackgroundStyle.Class = "";
     this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX9.Location = new System.Drawing.Point(12, 47);
     this.labelX9.Name = "labelX9";
     this.labelX9.Size = new System.Drawing.Size(46, 22);
     this.labelX9.TabIndex = 39;
     this.labelX9.Text = "Tên KH";
     //
     // txt_MaKhachHangDD
     //
     //
     //
     //
     this.txt_MaKhachHangDD.Border.Class = "TextBoxBorder";
     this.txt_MaKhachHangDD.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_MaKhachHangDD.Enabled = false;
     this.txt_MaKhachHangDD.Location = new System.Drawing.Point(58, 18);
     this.txt_MaKhachHangDD.Name = "txt_MaKhachHangDD";
     this.txt_MaKhachHangDD.Size = new System.Drawing.Size(84, 20);
     this.txt_MaKhachHangDD.TabIndex = 38;
     this.txt_MaKhachHangDD.TextChanged += new System.EventHandler(this.txt_MaKhachHangDD_TextChanged_1);
     //
     // labelX8
     //
     //
     //
     //
     this.labelX8.BackgroundStyle.Class = "";
     this.labelX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX8.Location = new System.Drawing.Point(12, 18);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(40, 22);
     this.labelX8.TabIndex = 37;
     this.labelX8.Text = "Mã KH";
     //
     // chk_getId
     //
     //
     //
     //
     this.chk_getId.BackgroundStyle.Class = "";
     this.chk_getId.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chk_getId.Location = new System.Drawing.Point(197, 21);
     this.chk_getId.Name = "chk_getId";
     this.chk_getId.Size = new System.Drawing.Size(104, 20);
     this.chk_getId.TabIndex = 42;
     this.chk_getId.Text = "Lấy mã tự động";
     this.chk_getId.CheckedChanged += new System.EventHandler(this.chk_getId_CheckedChanged);
     //
     // chk_MaPhieuThue
     //
     //
     //
     //
     this.chk_MaPhieuThue.BackgroundStyle.Class = "";
     this.chk_MaPhieuThue.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chk_MaPhieuThue.Location = new System.Drawing.Point(197, 75);
     this.chk_MaPhieuThue.Name = "chk_MaPhieuThue";
     this.chk_MaPhieuThue.Size = new System.Drawing.Size(95, 23);
     this.chk_MaPhieuThue.TabIndex = 41;
     this.chk_MaPhieuThue.Text = "Lấy Mã Phiếu Thuê";
     this.chk_MaPhieuThue.CheckedChanged += new System.EventHandler(this.chk_MaPhieuThue_CheckedChanged);
     //
     // txt_MaPT
     //
     //
     //
     //
     this.txt_MaPT.Border.Class = "TextBoxBorder";
     this.txt_MaPT.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_MaPT.Enabled = false;
     this.txt_MaPT.Location = new System.Drawing.Point(107, 77);
     this.txt_MaPT.Name = "txt_MaPT";
     this.txt_MaPT.Size = new System.Drawing.Size(84, 20);
     this.txt_MaPT.TabIndex = 39;
     //
     // labelX11
     //
     //
     //
     //
     this.labelX11.BackgroundStyle.Class = "";
     this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX11.Location = new System.Drawing.Point(6, 75);
     this.labelX11.Name = "labelX11";
     this.labelX11.Size = new System.Drawing.Size(95, 22);
     this.labelX11.TabIndex = 40;
     this.labelX11.Text = "Mã Phiếu Thuê";
     //
     // chk_MaKH
     //
     //
     //
     //
     this.chk_MaKH.BackgroundStyle.Class = "";
     this.chk_MaKH.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chk_MaKH.Location = new System.Drawing.Point(197, 46);
     this.chk_MaKH.Name = "chk_MaKH";
     this.chk_MaKH.Size = new System.Drawing.Size(42, 23);
     this.chk_MaKH.TabIndex = 38;
     this.chk_MaKH.Text = "Sửa";
     this.chk_MaKH.CheckedChanged += new System.EventHandler(this.chk_MaKH_CheckedChanged);
     //
     // chk_MaCTPT
     //
     //
     //
     //
     this.chk_MaCTPT.BackgroundStyle.Class = "";
     this.chk_MaCTPT.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chk_MaCTPT.Location = new System.Drawing.Point(197, 19);
     this.chk_MaCTPT.Name = "chk_MaCTPT";
     this.chk_MaCTPT.Size = new System.Drawing.Size(42, 23);
     this.chk_MaCTPT.TabIndex = 37;
     this.chk_MaCTPT.Text = "Sửa";
     this.chk_MaCTPT.Visible = false;
     this.chk_MaCTPT.CheckedChanged += new System.EventHandler(this.chk_MaCTPT_CheckedChanged);
     //
     // btDelCT
     //
     this.btDelCT.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btDelCT.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btDelCT.Location = new System.Drawing.Point(226, 109);
     this.btDelCT.Name = "btDelCT";
     this.btDelCT.Size = new System.Drawing.Size(75, 23);
     this.btDelCT.TabIndex = 32;
     this.btDelCT.Text = "Xóa";
     this.btDelCT.Click += new System.EventHandler(this.btDelCT_Click);
     //
     // btEditCT
     //
     this.btEditCT.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btEditCT.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btEditCT.Location = new System.Drawing.Point(407, 109);
     this.btEditCT.Name = "btEditCT";
     this.btEditCT.Size = new System.Drawing.Size(75, 23);
     this.btEditCT.TabIndex = 33;
     this.btEditCT.Text = "Sửa";
     this.btEditCT.Click += new System.EventHandler(this.btEditCT_Click);
     //
     // btAddCT
     //
     this.btAddCT.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btAddCT.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btAddCT.Location = new System.Drawing.Point(26, 109);
     this.btAddCT.Name = "btAddCT";
     this.btAddCT.Size = new System.Drawing.Size(75, 23);
     this.btAddCT.TabIndex = 31;
     this.btAddCT.Text = "Thêm";
     this.btAddCT.Click += new System.EventHandler(this.btAddCT_Click);
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.bindingNavigatorCTPhieuThue);
     this.groupBox5.Controls.Add(this.dataGridViewCTPhieuThue);
     this.groupBox5.Location = new System.Drawing.Point(3, 131);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(502, 197);
     this.groupBox5.TabIndex = 30;
     this.groupBox5.TabStop = false;
     //
     // bindingNavigatorCTPhieuThue
     //
     this.bindingNavigatorCTPhieuThue.AddNewItem = this.bindingNavigatorAddNewItem;
     this.bindingNavigatorCTPhieuThue.CountItem = this.bindingNavigatorCountItem;
     this.bindingNavigatorCTPhieuThue.DeleteItem = this.bindingNavigatorDeleteItem;
     this.bindingNavigatorCTPhieuThue.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.bindingNavigatorAddNewItem,
     this.bindingNavigatorDeleteItem,
     this.toolStripButton1});
     this.bindingNavigatorCTPhieuThue.Location = new System.Drawing.Point(3, 16);
     this.bindingNavigatorCTPhieuThue.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigatorCTPhieuThue.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.bindingNavigatorCTPhieuThue.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.bindingNavigatorCTPhieuThue.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigatorCTPhieuThue.Name = "bindingNavigatorCTPhieuThue";
     this.bindingNavigatorCTPhieuThue.PositionItem = this.bindingNavigatorPositionItem;
     this.bindingNavigatorCTPhieuThue.Size = new System.Drawing.Size(496, 25);
     this.bindingNavigatorCTPhieuThue.TabIndex = 23;
     this.bindingNavigatorCTPhieuThue.Text = "bindingNavigator1";
     //
     // bindingNavigatorAddNewItem
     //
     this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorAddNewItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
     this.bindingNavigatorAddNewItem.Name = "bindingNavigatorAddNewItem";
     this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorAddNewItem.Text = "Add new";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(36, 22);
     this.bindingNavigatorCountItem.Text = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorDeleteItem
     //
     this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorDeleteItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
     this.bindingNavigatorDeleteItem.Name = "bindingNavigatorDeleteItem";
     this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorDeleteItem.Text = "Delete";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 21);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = global::_042082.Properties.Resources.Icon_198;
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text = "toolStripButton1";
     //
     // dataGridViewCTPhieuThue
     //
     this.dataGridViewCTPhieuThue.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewCTPhieuThue.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.STT_CTPT,
     this.MaKhachHang,
     this.TenKhachHang,
     this.MaLoaiKH,
     this.CMND,
     this.DiaChi,
     this.MaCTPT,
     this.MaPhieuThue_CT});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewCTPhieuThue.DefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewCTPhieuThue.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridViewCTPhieuThue.Location = new System.Drawing.Point(0, 48);
     this.dataGridViewCTPhieuThue.Name = "dataGridViewCTPhieuThue";
     this.dataGridViewCTPhieuThue.Size = new System.Drawing.Size(496, 143);
     this.dataGridViewCTPhieuThue.TabIndex = 22;
     //
     // STT_CTPT
     //
     this.STT_CTPT.DataPropertyName = "STT_CTPT";
     this.STT_CTPT.HeaderText = "STT";
     this.STT_CTPT.Name = "STT_CTPT";
     this.STT_CTPT.Width = 30;
     //
     // MaKhachHang
     //
     this.MaKhachHang.DataPropertyName = "MaKhachHang";
     this.MaKhachHang.HeaderText = "Mã Khách Hàng";
     this.MaKhachHang.Name = "MaKhachHang";
     this.MaKhachHang.Width = 110;
     //
     // TenKhachHang
     //
     this.TenKhachHang.DataPropertyName = "TenKhachHang";
     this.TenKhachHang.HeaderText = "Tên Khách Hàng";
     this.TenKhachHang.Name = "TenKhachHang";
     this.TenKhachHang.Width = 115;
     //
     // MaLoaiKH
     //
     this.MaLoaiKH.DataPropertyName = "MaLoaiKH";
     this.MaLoaiKH.HeaderText = "Loại Khách Hàng";
     this.MaLoaiKH.Name = "MaLoaiKH";
     this.MaLoaiKH.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.MaLoaiKH.Width = 115;
     //
     // CMND
     //
     this.CMND.DataPropertyName = "CMND";
     this.CMND.HeaderText = "Số CMND";
     this.CMND.Name = "CMND";
     this.CMND.ReadOnly = true;
     this.CMND.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.CMND.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.CMND.Width = 90;
     //
     // DiaChi
     //
     this.DiaChi.DataPropertyName = "DiaChi";
     this.DiaChi.HeaderText = "Địa Chỉ";
     this.DiaChi.Name = "DiaChi";
     //
     // MaCTPT
     //
     this.MaCTPT.DataPropertyName = "MaCTPT";
     this.MaCTPT.HeaderText = "Mã Chi Tiết Phiếu Thuê";
     this.MaCTPT.Name = "MaCTPT";
     this.MaCTPT.Width = 150;
     //
     // MaPhieuThue_CT
     //
     this.MaPhieuThue_CT.DataPropertyName = "MaPhieuThue";
     this.MaPhieuThue_CT.HeaderText = "Mã phiếu thuê";
     this.MaPhieuThue_CT.Name = "MaPhieuThue_CT";
     //
     // txt_MaKH
     //
     //
     //
     //
     this.txt_MaKH.Border.Class = "TextBoxBorder";
     this.txt_MaKH.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_MaKH.Enabled = false;
     this.txt_MaKH.Location = new System.Drawing.Point(107, 50);
     this.txt_MaKH.Name = "txt_MaKH";
     this.txt_MaKH.Size = new System.Drawing.Size(84, 20);
     this.txt_MaKH.TabIndex = 17;
     this.txt_MaKH.TextChanged += new System.EventHandler(this.txt_MaKH_TextChanged);
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Location = new System.Drawing.Point(6, 47);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(76, 22);
     this.labelX6.TabIndex = 18;
     this.labelX6.Text = "Mã khách hàng";
     //
     // txt_MaLoaiPhong
     //
     //
     //
     //
     this.txt_MaLoaiPhong.Border.Class = "TextBoxBorder";
     this.txt_MaLoaiPhong.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_MaLoaiPhong.Enabled = false;
     this.txt_MaLoaiPhong.Location = new System.Drawing.Point(265, 49);
     this.txt_MaLoaiPhong.Name = "txt_MaLoaiPhong";
     this.txt_MaLoaiPhong.Size = new System.Drawing.Size(30, 20);
     this.txt_MaLoaiPhong.TabIndex = 26;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.gb_KHDDPT);
     this.groupBox1.Controls.Add(this.btExit);
     this.groupBox1.Controls.Add(this.chk_Id_PT);
     this.groupBox1.Controls.Add(this.txt_MaPhieuThue);
     this.groupBox1.Controls.Add(this.btDelete);
     this.groupBox1.Controls.Add(this.groupBoxGridPhieuThue);
     this.groupBox1.Controls.Add(this.txt_NgayTra);
     this.groupBox1.Controls.Add(this.btEdit);
     this.groupBox1.Controls.Add(this.labelX7);
     this.groupBox1.Controls.Add(this.btAdd);
     this.groupBox1.Controls.Add(this.txt_MaLoaiPhong);
     this.groupBox1.Controls.Add(this.groupBox2);
     this.groupBox1.Controls.Add(this.labelX5);
     this.groupBox1.Controls.Add(this.labelX2);
     this.groupBox1.Controls.Add(this.chk_datesystem);
     this.groupBox1.Controls.Add(this.txt_MaPhong);
     this.groupBox1.Controls.Add(this.txt_NgayThue);
     this.groupBox1.Controls.Add(this.labelX4);
     this.groupBox1.Controls.Add(this.labelX3);
     this.groupBox1.Location = new System.Drawing.Point(12, 30);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(517, 702);
     this.groupBox1.TabIndex = 23;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Phiếu thuê";
     //
     // gb_KHDDPT
     //
     this.gb_KHDDPT.Controls.Add(this.labelX13);
     this.gb_KHDDPT.Controls.Add(this.labelX12);
     this.gb_KHDDPT.Controls.Add(this.txt_MaKHDD);
     this.gb_KHDDPT.Controls.Add(this.txt_TenKHDaiDien);
     this.gb_KHDDPT.Location = new System.Drawing.Point(301, 11);
     this.gb_KHDDPT.Name = "gb_KHDDPT";
     this.gb_KHDDPT.Size = new System.Drawing.Size(210, 87);
     this.gb_KHDDPT.TabIndex = 41;
     this.gb_KHDDPT.TabStop = false;
     this.gb_KHDDPT.Text = "Khách hàng đại diện";
     //
     // labelX13
     //
     //
     //
     //
     this.labelX13.BackgroundStyle.Class = "";
     this.labelX13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX13.Location = new System.Drawing.Point(6, 45);
     this.labelX13.Name = "labelX13";
     this.labelX13.Size = new System.Drawing.Size(44, 20);
     this.labelX13.TabIndex = 43;
     this.labelX13.Text = "Tên KH";
     //
     // labelX12
     //
     //
     //
     //
     this.labelX12.BackgroundStyle.Class = "";
     this.labelX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX12.Location = new System.Drawing.Point(5, 19);
     this.labelX12.Name = "labelX12";
     this.labelX12.Size = new System.Drawing.Size(35, 20);
     this.labelX12.TabIndex = 42;
     this.labelX12.Text = "Mã KH";
     //
     // txt_MaKHDD
     //
     //
     //
     //
     this.txt_MaKHDD.Border.Class = "TextBoxBorder";
     this.txt_MaKHDD.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_MaKHDD.Enabled = false;
     this.txt_MaKHDD.Location = new System.Drawing.Point(56, 19);
     this.txt_MaKHDD.Name = "txt_MaKHDD";
     this.txt_MaKHDD.Size = new System.Drawing.Size(90, 20);
     this.txt_MaKHDD.TabIndex = 39;
     this.txt_MaKHDD.TextChanged += new System.EventHandler(this.txt_MaKHDD_TextChanged);
     //
     // txt_TenKHDaiDien
     //
     //
     //
     //
     this.txt_TenKHDaiDien.Border.Class = "TextBoxBorder";
     this.txt_TenKHDaiDien.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_TenKHDaiDien.Enabled = false;
     this.txt_TenKHDaiDien.Location = new System.Drawing.Point(56, 45);
     this.txt_TenKHDaiDien.Name = "txt_TenKHDaiDien";
     this.txt_TenKHDaiDien.Size = new System.Drawing.Size(147, 20);
     this.txt_TenKHDaiDien.TabIndex = 40;
     //
     // btExit
     //
     this.btExit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btExit.Location = new System.Drawing.Point(395, 141);
     this.btExit.Name = "btExit";
     this.btExit.Size = new System.Drawing.Size(75, 23);
     this.btExit.TabIndex = 37;
     this.btExit.Text = "Thoát";
     this.btExit.Click += new System.EventHandler(this.btExit_Click);
     //
     // chk_Id_PT
     //
     //
     //
     //
     this.chk_Id_PT.BackgroundStyle.Class = "";
     this.chk_Id_PT.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chk_Id_PT.Location = new System.Drawing.Point(200, 17);
     this.chk_Id_PT.Name = "chk_Id_PT";
     this.chk_Id_PT.Size = new System.Drawing.Size(75, 23);
     this.chk_Id_PT.TabIndex = 33;
     this.chk_Id_PT.Text = "Thêm mới";
     this.chk_Id_PT.CheckedChanged += new System.EventHandler(this.chk_Id_PT_CheckedChanged);
     //
     // txt_MaPhieuThue
     //
     //
     //
     //
     this.txt_MaPhieuThue.Border.Class = "TextBoxBorder";
     this.txt_MaPhieuThue.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_MaPhieuThue.Enabled = false;
     this.txt_MaPhieuThue.Location = new System.Drawing.Point(116, 19);
     this.txt_MaPhieuThue.Name = "txt_MaPhieuThue";
     this.txt_MaPhieuThue.Size = new System.Drawing.Size(83, 20);
     this.txt_MaPhieuThue.TabIndex = 32;
     this.txt_MaPhieuThue.TextChanged += new System.EventHandler(this.txt_MaPhieuThue_TextChanged);
     //
     // btDelete
     //
     this.btDelete.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btDelete.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btDelete.Location = new System.Drawing.Point(144, 141);
     this.btDelete.Name = "btDelete";
     this.btDelete.Size = new System.Drawing.Size(75, 23);
     this.btDelete.TabIndex = 35;
     this.btDelete.Text = "Xóa";
     this.btDelete.Click += new System.EventHandler(this.btDelete_Click);
     //
     // groupBoxGridPhieuThue
     //
     this.groupBoxGridPhieuThue.Controls.Add(this.bindingNavigatorPhieuThue);
     this.groupBoxGridPhieuThue.Controls.Add(this.dataGridViewPhieuThue);
     this.groupBoxGridPhieuThue.Location = new System.Drawing.Point(6, 164);
     this.groupBoxGridPhieuThue.Name = "groupBoxGridPhieuThue";
     this.groupBoxGridPhieuThue.Size = new System.Drawing.Size(502, 192);
     this.groupBoxGridPhieuThue.TabIndex = 31;
     this.groupBoxGridPhieuThue.TabStop = false;
     //
     // bindingNavigatorPhieuThue
     //
     this.bindingNavigatorPhieuThue.AddNewItem = this.toolStripButton2;
     this.bindingNavigatorPhieuThue.CountItem = this.toolStripLabel1;
     this.bindingNavigatorPhieuThue.DeleteItem = this.toolStripButton3;
     this.bindingNavigatorPhieuThue.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton4,
     this.toolStripButton5,
     this.toolStripSeparator1,
     this.toolStripTextBox1,
     this.toolStripLabel1,
     this.toolStripSeparator2,
     this.toolStripButton6,
     this.toolStripButton7,
     this.toolStripSeparator3,
     this.toolStripButton2,
     this.toolStripButton3,
     this.toolStripButton8});
     this.bindingNavigatorPhieuThue.Location = new System.Drawing.Point(3, 16);
     this.bindingNavigatorPhieuThue.MoveFirstItem = this.toolStripButton4;
     this.bindingNavigatorPhieuThue.MoveLastItem = this.toolStripButton7;
     this.bindingNavigatorPhieuThue.MoveNextItem = this.toolStripButton6;
     this.bindingNavigatorPhieuThue.MovePreviousItem = this.toolStripButton5;
     this.bindingNavigatorPhieuThue.Name = "bindingNavigatorPhieuThue";
     this.bindingNavigatorPhieuThue.PositionItem = this.toolStripTextBox1;
     this.bindingNavigatorPhieuThue.Size = new System.Drawing.Size(496, 25);
     this.bindingNavigatorPhieuThue.TabIndex = 23;
     this.bindingNavigatorPhieuThue.Text = "bindingNavigator2";
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.Name = "toolStripButton2";
     this.toolStripButton2.RightToLeftAutoMirrorImage = true;
     this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton2.Text = "Add new";
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(36, 22);
     this.toolStripLabel1.Text = "of {0}";
     this.toolStripLabel1.ToolTipText = "Total number of items";
     //
     // toolStripButton3
     //
     this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
     this.toolStripButton3.Name = "toolStripButton3";
     this.toolStripButton3.RightToLeftAutoMirrorImage = true;
     this.toolStripButton3.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton3.Text = "Delete";
     //
     // toolStripButton4
     //
     this.toolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
     this.toolStripButton4.Name = "toolStripButton4";
     this.toolStripButton4.RightToLeftAutoMirrorImage = true;
     this.toolStripButton4.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton4.Text = "Move first";
     //
     // toolStripButton5
     //
     this.toolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image")));
     this.toolStripButton5.Name = "toolStripButton5";
     this.toolStripButton5.RightToLeftAutoMirrorImage = true;
     this.toolStripButton5.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton5.Text = "Move previous";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripTextBox1
     //
     this.toolStripTextBox1.AccessibleName = "Position";
     this.toolStripTextBox1.AutoSize = false;
     this.toolStripTextBox1.Name = "toolStripTextBox1";
     this.toolStripTextBox1.Size = new System.Drawing.Size(50, 21);
     this.toolStripTextBox1.Text = "0";
     this.toolStripTextBox1.ToolTipText = "Current position";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton6
     //
     this.toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton6.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
     this.toolStripButton6.Name = "toolStripButton6";
     this.toolStripButton6.RightToLeftAutoMirrorImage = true;
     this.toolStripButton6.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton6.Text = "Move next";
     //
     // toolStripButton7
     //
     this.toolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton7.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton7.Image")));
     this.toolStripButton7.Name = "toolStripButton7";
     this.toolStripButton7.RightToLeftAutoMirrorImage = true;
     this.toolStripButton7.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton7.Text = "Move last";
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton8
     //
     this.toolStripButton8.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton8.Image = global::_042082.Properties.Resources.Icon_198;
     this.toolStripButton8.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton8.Name = "toolStripButton8";
     this.toolStripButton8.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton8.Text = "toolStripButton1";
     //
     // dataGridViewPhieuThue
     //
     this.dataGridViewPhieuThue.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewPhieuThue.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.STT_PT,
     this.MaPhieuThue,
     this.NgayThue,
     this.NgayTra,
     this.MaPhong,
     this.ThanhToan,
     this.KhachHangDaiDien});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewPhieuThue.DefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridViewPhieuThue.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridViewPhieuThue.Location = new System.Drawing.Point(0, 48);
     this.dataGridViewPhieuThue.Name = "dataGridViewPhieuThue";
     this.dataGridViewPhieuThue.Size = new System.Drawing.Size(496, 138);
     this.dataGridViewPhieuThue.TabIndex = 22;
     this.dataGridViewPhieuThue.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewPhieuThue_CellContentClick);
     //
     // STT_PT
     //
     this.STT_PT.DataPropertyName = "STT_PT";
     this.STT_PT.HeaderText = "STT";
     this.STT_PT.Name = "STT_PT";
     this.STT_PT.Width = 30;
     //
     // MaPhieuThue
     //
     this.MaPhieuThue.DataPropertyName = "MaPhieuThue";
     this.MaPhieuThue.HeaderText = "Mã Phiếu Thuê";
     this.MaPhieuThue.Name = "MaPhieuThue";
     this.MaPhieuThue.ReadOnly = true;
     this.MaPhieuThue.Width = 120;
     //
     // NgayThue
     //
     this.NgayThue.DataPropertyName = "NgayThue";
     this.NgayThue.HeaderText = "Ngày Thuê";
     this.NgayThue.Name = "NgayThue";
     this.NgayThue.Width = 110;
     //
     // NgayTra
     //
     this.NgayTra.DataPropertyName = "NgayTra";
     this.NgayTra.HeaderText = "Ngày Trả";
     this.NgayTra.Name = "NgayTra";
     this.NgayTra.Width = 115;
     //
     // MaPhong
     //
     this.MaPhong.DataPropertyName = "MaPhong";
     this.MaPhong.HeaderText = "Mã Phòng";
     this.MaPhong.Name = "MaPhong";
     this.MaPhong.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.MaPhong.Width = 115;
     //
     // ThanhToan
     //
     this.ThanhToan.DataPropertyName = "ThanhToan";
     this.ThanhToan.HeaderText = "Thanh Toán";
     this.ThanhToan.Name = "ThanhToan";
     this.ThanhToan.ReadOnly = true;
     this.ThanhToan.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.ThanhToan.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.ThanhToan.Width = 90;
     //
     // KhachHangDaiDien
     //
     this.KhachHangDaiDien.DataPropertyName = "KhachHangDaiDien";
     this.KhachHangDaiDien.HeaderText = "Khách Hàng Đại Diện";
     this.KhachHangDaiDien.Name = "KhachHangDaiDien";
     this.KhachHangDaiDien.Width = 200;
     //
     // txt_NgayTra
     //
     //
     //
     //
     this.txt_NgayTra.BackgroundStyle.Class = "DateTimeInputBackground";
     this.txt_NgayTra.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NgayTra.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.txt_NgayTra.ButtonDropDown.Visible = true;
     this.txt_NgayTra.Location = new System.Drawing.Point(116, 104);
     //
     //
     //
     this.txt_NgayTra.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.txt_NgayTra.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.txt_NgayTra.MonthCalendar.BackgroundStyle.Class = "";
     this.txt_NgayTra.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NgayTra.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.txt_NgayTra.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.txt_NgayTra.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.txt_NgayTra.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.txt_NgayTra.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.txt_NgayTra.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.txt_NgayTra.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.txt_NgayTra.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.txt_NgayTra.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NgayTra.MonthCalendar.DisplayMonth = new System.DateTime(2011, 5, 1, 0, 0, 0, 0);
     this.txt_NgayTra.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.txt_NgayTra.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.txt_NgayTra.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.txt_NgayTra.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.txt_NgayTra.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.txt_NgayTra.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.txt_NgayTra.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NgayTra.MonthCalendar.TodayButtonVisible = true;
     this.txt_NgayTra.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.txt_NgayTra.Name = "txt_NgayTra";
     this.txt_NgayTra.Size = new System.Drawing.Size(83, 20);
     this.txt_NgayTra.TabIndex = 28;
     //
     // btEdit
     //
     this.btEdit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btEdit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btEdit.Location = new System.Drawing.Point(266, 141);
     this.btEdit.Name = "btEdit";
     this.btEdit.Size = new System.Drawing.Size(75, 23);
     this.btEdit.TabIndex = 36;
     this.btEdit.Text = "Sửa";
     this.btEdit.Click += new System.EventHandler(this.btEdit_Click);
     //
     // labelX7
     //
     //
     //
     //
     this.labelX7.BackgroundStyle.Class = "";
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Location = new System.Drawing.Point(14, 104);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(96, 20);
     this.labelX7.TabIndex = 27;
     this.labelX7.Text = "Ngày Trả Dự Kiến";
     //
     // btAdd
     //
     this.btAdd.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btAdd.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btAdd.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btAdd.Location = new System.Drawing.Point(14, 141);
     this.btAdd.Name = "btAdd";
     this.btAdd.Size = new System.Drawing.Size(82, 23);
     this.btAdd.TabIndex = 34;
     this.btAdd.Text = "Lập Phiếu";
     this.btAdd.Click += new System.EventHandler(this.btAdd_Click);
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(14, 19);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(82, 25);
     this.labelX2.TabIndex = 14;
     this.labelX2.Text = "Mã Phiếu Thuê";
     //
     // chk_datesystem
     //
     //
     //
     //
     this.chk_datesystem.BackgroundStyle.Class = "";
     this.chk_datesystem.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chk_datesystem.Location = new System.Drawing.Point(198, 76);
     this.chk_datesystem.Name = "chk_datesystem";
     this.chk_datesystem.Size = new System.Drawing.Size(97, 23);
     this.chk_datesystem.TabIndex = 19;
     this.chk_datesystem.Text = "Ngày hệ thống";
     this.chk_datesystem.CheckedChanged += new System.EventHandler(this.chk_datesystem_CheckedChanged);
     //
     // txt_MaPhong
     //
     //
     //
     //
     this.txt_MaPhong.Border.Class = "TextBoxBorder";
     this.txt_MaPhong.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_MaPhong.Location = new System.Drawing.Point(115, 49);
     this.txt_MaPhong.Name = "txt_MaPhong";
     this.txt_MaPhong.Size = new System.Drawing.Size(84, 20);
     this.txt_MaPhong.TabIndex = 11;
     this.txt_MaPhong.TextChanged += new System.EventHandler(this.txt_MaPhong_TextChanged);
     //
     // txt_NgayThue
     //
     //
     //
     //
     this.txt_NgayThue.BackgroundStyle.Class = "DateTimeInputBackground";
     this.txt_NgayThue.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NgayThue.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.txt_NgayThue.ButtonDropDown.Visible = true;
     this.txt_NgayThue.Location = new System.Drawing.Point(116, 78);
     //
     //
     //
     this.txt_NgayThue.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.txt_NgayThue.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.txt_NgayThue.MonthCalendar.BackgroundStyle.Class = "";
     this.txt_NgayThue.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NgayThue.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.txt_NgayThue.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.txt_NgayThue.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.txt_NgayThue.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.txt_NgayThue.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.txt_NgayThue.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.txt_NgayThue.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.txt_NgayThue.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.txt_NgayThue.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NgayThue.MonthCalendar.DisplayMonth = new System.DateTime(2011, 5, 1, 0, 0, 0, 0);
     this.txt_NgayThue.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.txt_NgayThue.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.txt_NgayThue.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.txt_NgayThue.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.txt_NgayThue.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.txt_NgayThue.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.txt_NgayThue.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NgayThue.MonthCalendar.TodayButtonVisible = true;
     this.txt_NgayThue.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.txt_NgayThue.Name = "txt_NgayThue";
     this.txt_NgayThue.Size = new System.Drawing.Size(83, 20);
     this.txt_NgayThue.TabIndex = 18;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(14, 78);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(63, 20);
     this.labelX3.TabIndex = 15;
     this.labelX3.Text = "Ngày Thuê";
     //
     // groupBox3
     //
     this.groupBox3.Location = new System.Drawing.Point(0, 0);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(200, 100);
     this.groupBox3.TabIndex = 0;
     this.groupBox3.TabStop = false;
     //
     // bt_SendPhong
     //
     this.bt_SendPhong.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.bt_SendPhong.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.bt_SendPhong.Enabled = false;
     this.bt_SendPhong.Location = new System.Drawing.Point(532, 237);
     this.bt_SendPhong.Name = "bt_SendPhong";
     this.bt_SendPhong.Size = new System.Drawing.Size(25, 23);
     this.bt_SendPhong.TabIndex = 26;
     this.bt_SendPhong.Text = "<<";
     this.bt_SendPhong.Click += new System.EventHandler(this.bt_SendPhong_Click);
     //
     // bt_SendKH
     //
     this.bt_SendKH.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.bt_SendKH.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.bt_SendKH.Location = new System.Drawing.Point(532, 591);
     this.bt_SendKH.Name = "bt_SendKH";
     this.bt_SendKH.Size = new System.Drawing.Size(25, 23);
     this.bt_SendKH.TabIndex = 27;
     this.bt_SendKH.Text = "<<";
     this.bt_SendKH.Click += new System.EventHandler(this.bt_SendKH_Click);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.urlTraCuuPhong2);
     this.groupBox4.Controls.Add(this.urlKhachHang2);
     this.groupBox4.Location = new System.Drawing.Point(563, 29);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(536, 703);
     this.groupBox4.TabIndex = 28;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Tra Cứu";
     //
     // urlTraCuuPhong2
     //
     this.urlTraCuuPhong2.Location = new System.Drawing.Point(12, 17);
     this.urlTraCuuPhong2.Name = "urlTraCuuPhong2";
     this.urlTraCuuPhong2.Size = new System.Drawing.Size(510, 270);
     this.urlTraCuuPhong2.TabIndex = 2;
     //
     // urlKhachHang2
     //
     this.urlKhachHang2.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.urlKhachHang2.Location = new System.Drawing.Point(9, 289);
     this.urlKhachHang2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.urlKhachHang2.Name = "urlKhachHang2";
     this.urlKhachHang2.Size = new System.Drawing.Size(519, 405);
     this.urlKhachHang2.TabIndex = 1;
     this.urlKhachHang2.Load += new System.EventHandler(this.urlKhachHang2_Load);
     //
     // bt_getMaKHDD
     //
     this.bt_getMaKHDD.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.bt_getMaKHDD.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.bt_getMaKHDD.Enabled = false;
     this.bt_getMaKHDD.Location = new System.Drawing.Point(532, 562);
     this.bt_getMaKHDD.Name = "bt_getMaKHDD";
     this.bt_getMaKHDD.Size = new System.Drawing.Size(25, 23);
     this.bt_getMaKHDD.TabIndex = 40;
     this.bt_getMaKHDD.Text = "<<";
     this.bt_getMaKHDD.Click += new System.EventHandler(this.bt_getMaKHDD_Click);
     //
     // urlTraCuuPhong1
     //
     this.urlTraCuuPhong1.Location = new System.Drawing.Point(6, 19);
     this.urlTraCuuPhong1.Name = "urlTraCuuPhong1";
     this.urlTraCuuPhong1.Size = new System.Drawing.Size(510, 270);
     this.urlTraCuuPhong1.TabIndex = 0;
     //
     // frmPhieuThue
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1101, 763);
     this.Controls.Add(this.bt_getMaKHDD);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.bt_SendKH);
     this.Controls.Add(this.bt_SendPhong);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.groupBox1);
     this.Name = "frmPhieuThue";
     this.Text = "frmPhieuThue";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmPhieuThue_FormClosing);
     this.Load += new System.EventHandler(this.frmPhieuThue_Load);
     this.groupBox2.ResumeLayout(false);
     this.groupBox6.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigatorCTPhieuThue)).EndInit();
     this.bindingNavigatorCTPhieuThue.ResumeLayout(false);
     this.bindingNavigatorCTPhieuThue.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewCTPhieuThue)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.gb_KHDDPT.ResumeLayout(false);
     this.groupBoxGridPhieuThue.ResumeLayout(false);
     this.groupBoxGridPhieuThue.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigatorPhieuThue)).EndInit();
     this.bindingNavigatorPhieuThue.ResumeLayout(false);
     this.bindingNavigatorPhieuThue.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewPhieuThue)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_NgayTra)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_NgayThue)).EndInit();
     this.groupBox4.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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     this.tabControlPhanQuyen = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel4 = new DevComponents.DotNetBar.TabControlPanel();
     this.panelDTPower = new DevComponents.DotNetBar.PanelEx();
     this.bt_Save = new DevComponents.DotNetBar.ButtonX();
     this.dataGridViewXPQ = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.NghiepVu = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.QuanTri = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.BanGiamDoc = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.TiepTan = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Khac = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.tabItemDTPower = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel();
     this.panelPower = new DevComponents.DotNetBar.PanelEx();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.dataGridViewX3 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.STTPower = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.IdPower = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NamePower = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Description = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.textBoxX5 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX9 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX6 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX10 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX7 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX11 = new DevComponents.DotNetBar.LabelX();
     this.tabItemPower = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.panelUser = new DevComponents.DotNetBar.PanelEx();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.textBoxX4 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX8 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.dataGridViewX2 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.IdUser = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NameUser = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Password = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.IdKuser2 = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.Email = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.textBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX3 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.tabItemUser = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.panelKUser = new DevComponents.DotNetBar.PanelEx();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.dataGridViewX1 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.STT_KUser = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.IdKuser = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NameKUser = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NoteKUser = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.txt_NameKUser = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.txt_IdKuser = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.txt_NoteKUser = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.tabItemKUser = new DevComponents.DotNetBar.TabItem(this.components);
     this.btDelete = new DevComponents.DotNetBar.ButtonX();
     this.btUpdate = new DevComponents.DotNetBar.ButtonX();
     this.btAdd = new DevComponents.DotNetBar.ButtonX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX2 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX3 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX4 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX5 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX6 = new DevComponents.DotNetBar.ButtonX();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlPhanQuyen)).BeginInit();
     this.tabControlPhanQuyen.SuspendLayout();
     this.tabControlPanel4.SuspendLayout();
     this.panelDTPower.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewXPQ)).BeginInit();
     this.tabControlPanel3.SuspendLayout();
     this.panelPower.SuspendLayout();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX3)).BeginInit();
     this.tabControlPanel2.SuspendLayout();
     this.panelUser.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX2)).BeginInit();
     this.tabControlPanel1.SuspendLayout();
     this.panelKUser.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
     this.SuspendLayout();
     //
     // tabControlPhanQuyen
     //
     this.tabControlPhanQuyen.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabControlPhanQuyen.CanReorderTabs = true;
     this.tabControlPhanQuyen.Controls.Add(this.tabControlPanel2);
     this.tabControlPhanQuyen.Controls.Add(this.tabControlPanel3);
     this.tabControlPhanQuyen.Controls.Add(this.tabControlPanel4);
     this.tabControlPhanQuyen.Controls.Add(this.tabControlPanel1);
     this.tabControlPhanQuyen.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPhanQuyen.Location = new System.Drawing.Point(0, 0);
     this.tabControlPhanQuyen.Name = "tabControlPhanQuyen";
     this.tabControlPhanQuyen.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
     this.tabControlPhanQuyen.SelectedTabIndex = 3;
     this.tabControlPhanQuyen.Size = new System.Drawing.Size(618, 385);
     this.tabControlPhanQuyen.TabIndex = 0;
     this.tabControlPhanQuyen.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabControlPhanQuyen.Tabs.Add(this.tabItemKUser);
     this.tabControlPhanQuyen.Tabs.Add(this.tabItemUser);
     this.tabControlPhanQuyen.Tabs.Add(this.tabItemPower);
     this.tabControlPhanQuyen.Tabs.Add(this.tabItemDTPower);
     this.tabControlPhanQuyen.Text = "tabControl1";
     this.tabControlPhanQuyen.Click += new System.EventHandler(this.tabControlPhanQuyen_Click);
     //
     // tabControlPanel4
     //
     this.tabControlPanel4.Controls.Add(this.panelDTPower);
     this.tabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel4.Location = new System.Drawing.Point(0, 26);
     this.tabControlPanel4.Name = "tabControlPanel4";
     this.tabControlPanel4.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel4.Size = new System.Drawing.Size(611, 290);
     this.tabControlPanel4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(144)))), ((int)(((byte)(156)))), ((int)(((byte)(187)))));
     this.tabControlPanel4.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(233)))), ((int)(((byte)(240)))));
     this.tabControlPanel4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel4.Style.BorderColor.Color = System.Drawing.SystemColors.ControlDark;
     this.tabControlPanel4.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel4.Style.GradientAngle = 90;
     this.tabControlPanel4.TabIndex = 4;
     this.tabControlPanel4.TabItem = this.tabItemDTPower;
     //
     // panelDTPower
     //
     this.panelDTPower.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelDTPower.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelDTPower.Controls.Add(this.bt_Save);
     this.panelDTPower.Controls.Add(this.dataGridViewXPQ);
     this.panelDTPower.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelDTPower.Location = new System.Drawing.Point(1, 1);
     this.panelDTPower.Name = "panelDTPower";
     this.panelDTPower.Size = new System.Drawing.Size(609, 288);
     this.panelDTPower.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDTPower.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelDTPower.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelDTPower.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelDTPower.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelDTPower.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelDTPower.Style.GradientAngle = 90;
     this.panelDTPower.TabIndex = 1;
     //
     // bt_Save
     //
     this.bt_Save.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.bt_Save.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.bt_Save.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bt_Save.ForeColor = System.Drawing.Color.Red;
     this.bt_Save.Location = new System.Drawing.Point(1, 1);
     this.bt_Save.Name = "bt_Save";
     this.bt_Save.Size = new System.Drawing.Size(40, 19);
     this.bt_Save.TabIndex = 1;
     this.bt_Save.Text = "Lưu";
     //
     // dataGridViewXPQ
     //
     this.dataGridViewXPQ.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewXPQ.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.NghiepVu,
     this.QuanTri,
     this.BanGiamDoc,
     this.TiepTan,
     this.Khac});
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewXPQ.DefaultCellStyle = dataGridViewCellStyle3;
     this.dataGridViewXPQ.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataGridViewXPQ.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridViewXPQ.Location = new System.Drawing.Point(0, 0);
     this.dataGridViewXPQ.Name = "dataGridViewXPQ";
     this.dataGridViewXPQ.Size = new System.Drawing.Size(609, 288);
     this.dataGridViewXPQ.TabIndex = 0;
     //
     // NghiepVu
     //
     this.NghiepVu.HeaderText = "Nghiệp Vụ";
     this.NghiepVu.Name = "NghiepVu";
     this.NghiepVu.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.NghiepVu.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // QuanTri
     //
     this.QuanTri.HeaderText = "Người Quản Trị HT";
     this.QuanTri.Name = "QuanTri";
     this.QuanTri.Width = 155;
     //
     // BanGiamDoc
     //
     this.BanGiamDoc.HeaderText = "Ban Giám Đốc";
     this.BanGiamDoc.Name = "BanGiamDoc";
     //
     // TiepTan
     //
     this.TiepTan.HeaderText = "Tiếp Tân";
     this.TiepTan.Name = "TiepTan";
     //
     // Khac
     //
     this.Khac.HeaderText = "Người Dùng Khác";
     this.Khac.Name = "Khac";
     //
     // tabItemDTPower
     //
     this.tabItemDTPower.AttachedControl = this.tabControlPanel4;
     this.tabItemDTPower.Name = "tabItemDTPower";
     this.tabItemDTPower.Text = "Phân Quyền";
     //
     // tabControlPanel3
     //
     this.tabControlPanel3.Controls.Add(this.panelPower);
     this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel3.Location = new System.Drawing.Point(0, 26);
     this.tabControlPanel3.Name = "tabControlPanel3";
     this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel3.Size = new System.Drawing.Size(611, 290);
     this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(144)))), ((int)(((byte)(156)))), ((int)(((byte)(187)))));
     this.tabControlPanel3.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(233)))), ((int)(((byte)(240)))));
     this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.SystemColors.ControlDark;
     this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel3.Style.GradientAngle = 90;
     this.tabControlPanel3.TabIndex = 3;
     this.tabControlPanel3.TabItem = this.tabItemPower;
     //
     // panelPower
     //
     this.panelPower.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelPower.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelPower.Controls.Add(this.groupBox3);
     this.panelPower.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelPower.Location = new System.Drawing.Point(1, 1);
     this.panelPower.Name = "panelPower";
     this.panelPower.Size = new System.Drawing.Size(609, 288);
     this.panelPower.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelPower.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelPower.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelPower.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelPower.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelPower.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelPower.Style.GradientAngle = 90;
     this.panelPower.TabIndex = 1;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.buttonX4);
     this.groupBox3.Controls.Add(this.buttonX5);
     this.groupBox3.Controls.Add(this.buttonX6);
     this.groupBox3.Controls.Add(this.dataGridViewX3);
     this.groupBox3.Controls.Add(this.textBoxX5);
     this.groupBox3.Controls.Add(this.labelX9);
     this.groupBox3.Controls.Add(this.textBoxX6);
     this.groupBox3.Controls.Add(this.labelX10);
     this.groupBox3.Controls.Add(this.textBoxX7);
     this.groupBox3.Controls.Add(this.labelX11);
     this.groupBox3.Location = new System.Drawing.Point(7, 6);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(599, 279);
     this.groupBox3.TabIndex = 1;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Loại Người Dùng";
     //
     // dataGridViewX3
     //
     this.dataGridViewX3.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewX3.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.STTPower,
     this.IdPower,
     this.NamePower,
     this.Description});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewX3.DefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridViewX3.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridViewX3.Location = new System.Drawing.Point(22, 140);
     this.dataGridViewX3.Name = "dataGridViewX3";
     this.dataGridViewX3.Size = new System.Drawing.Size(481, 96);
     this.dataGridViewX3.TabIndex = 9;
     //
     // STTPower
     //
     this.STTPower.HeaderText = "STT";
     this.STTPower.Name = "STTPower";
     this.STTPower.ReadOnly = true;
     this.STTPower.Width = 35;
     //
     // IdPower
     //
     this.IdPower.HeaderText = "Mã Quyền Hạn";
     this.IdPower.Name = "IdPower";
     this.IdPower.Width = 150;
     //
     // NamePower
     //
     this.NamePower.HeaderText = "Tên Quyền Hạn";
     this.NamePower.Name = "NamePower";
     this.NamePower.Width = 150;
     //
     // Description
     //
     this.Description.HeaderText = "Diễn Giải";
     this.Description.Name = "Description";
     //
     // textBoxX5
     //
     //
     //
     //
     this.textBoxX5.Border.Class = "";
     this.textBoxX5.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX5.Location = new System.Drawing.Point(141, 64);
     this.textBoxX5.Name = "textBoxX5";
     this.textBoxX5.Size = new System.Drawing.Size(100, 20);
     this.textBoxX5.TabIndex = 8;
     //
     // labelX9
     //
     //
     //
     //
     this.labelX9.BackgroundStyle.Class = "";
     this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX9.Location = new System.Drawing.Point(22, 61);
     this.labelX9.Name = "labelX9";
     this.labelX9.Size = new System.Drawing.Size(113, 23);
     this.labelX9.TabIndex = 7;
     this.labelX9.Text = "Tên Quyền Hạn";
     //
     // textBoxX6
     //
     //
     //
     //
     this.textBoxX6.Border.Class = "";
     this.textBoxX6.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX6.Location = new System.Drawing.Point(141, 38);
     this.textBoxX6.Name = "textBoxX6";
     this.textBoxX6.Size = new System.Drawing.Size(100, 20);
     this.textBoxX6.TabIndex = 6;
     //
     // labelX10
     //
     //
     //
     //
     this.labelX10.BackgroundStyle.Class = "";
     this.labelX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX10.Location = new System.Drawing.Point(22, 35);
     this.labelX10.Name = "labelX10";
     this.labelX10.Size = new System.Drawing.Size(113, 23);
     this.labelX10.TabIndex = 5;
     this.labelX10.Text = "Mã Quyền Hạn";
     //
     // textBoxX7
     //
     //
     //
     //
     this.textBoxX7.Border.Class = "";
     this.textBoxX7.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX7.Location = new System.Drawing.Point(309, 38);
     this.textBoxX7.Name = "textBoxX7";
     this.textBoxX7.Size = new System.Drawing.Size(100, 20);
     this.textBoxX7.TabIndex = 4;
     //
     // labelX11
     //
     //
     //
     //
     this.labelX11.BackgroundStyle.Class = "";
     this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX11.Location = new System.Drawing.Point(247, 35);
     this.labelX11.Name = "labelX11";
     this.labelX11.Size = new System.Drawing.Size(56, 23);
     this.labelX11.TabIndex = 3;
     this.labelX11.Text = "Diễn Giải";
     //
     // tabItemPower
     //
     this.tabItemPower.AttachedControl = this.tabControlPanel3;
     this.tabItemPower.Name = "tabItemPower";
     this.tabItemPower.Text = "Quyền Hạn";
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.Controls.Add(this.panelUser);
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 26);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(618, 359);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(144)))), ((int)(((byte)(156)))), ((int)(((byte)(187)))));
     this.tabControlPanel2.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(233)))), ((int)(((byte)(240)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.SystemColors.ControlDark;
     this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.Style.GradientAngle = 90;
     this.tabControlPanel2.TabIndex = 2;
     this.tabControlPanel2.TabItem = this.tabItemUser;
     //
     // panelUser
     //
     this.panelUser.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelUser.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelUser.Controls.Add(this.groupBox2);
     this.panelUser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelUser.Location = new System.Drawing.Point(1, 1);
     this.panelUser.Name = "panelUser";
     this.panelUser.Size = new System.Drawing.Size(616, 357);
     this.panelUser.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelUser.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelUser.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelUser.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelUser.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelUser.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelUser.Style.GradientAngle = 90;
     this.panelUser.TabIndex = 1;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.buttonX1);
     this.groupBox2.Controls.Add(this.buttonX2);
     this.groupBox2.Controls.Add(this.buttonX3);
     this.groupBox2.Controls.Add(this.textBoxX4);
     this.groupBox2.Controls.Add(this.labelX8);
     this.groupBox2.Controls.Add(this.comboBoxEx1);
     this.groupBox2.Controls.Add(this.labelX7);
     this.groupBox2.Controls.Add(this.dataGridViewX2);
     this.groupBox2.Controls.Add(this.textBoxX1);
     this.groupBox2.Controls.Add(this.labelX4);
     this.groupBox2.Controls.Add(this.textBoxX2);
     this.groupBox2.Controls.Add(this.labelX5);
     this.groupBox2.Controls.Add(this.textBoxX3);
     this.groupBox2.Controls.Add(this.labelX6);
     this.groupBox2.Location = new System.Drawing.Point(11, 13);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(594, 333);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Người Dùng";
     //
     // textBoxX4
     //
     //
     //
     //
     this.textBoxX4.Border.Class = "TextBoxBorder";
     this.textBoxX4.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX4.Location = new System.Drawing.Point(141, 90);
     this.textBoxX4.Name = "textBoxX4";
     this.textBoxX4.Size = new System.Drawing.Size(100, 20);
     this.textBoxX4.TabIndex = 13;
     //
     // labelX8
     //
     //
     //
     //
     this.labelX8.BackgroundStyle.Class = "";
     this.labelX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX8.Location = new System.Drawing.Point(22, 90);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(39, 20);
     this.labelX8.TabIndex = 12;
     this.labelX8.Text = "Email";
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DisplayMember = "Text";
     this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.ItemHeight = 14;
     this.comboBoxEx1.Location = new System.Drawing.Point(352, 66);
     this.comboBoxEx1.Name = "comboBoxEx1";
     this.comboBoxEx1.Size = new System.Drawing.Size(100, 20);
     this.comboBoxEx1.TabIndex = 11;
     //
     // labelX7
     //
     //
     //
     //
     this.labelX7.BackgroundStyle.Class = "";
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Location = new System.Drawing.Point(257, 65);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(88, 23);
     this.labelX7.TabIndex = 10;
     this.labelX7.Text = "Loại Người Dùng";
     //
     // dataGridViewX2
     //
     this.dataGridViewX2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewX2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn1,
     this.IdUser,
     this.NameUser,
     this.Password,
     this.IdKuser2,
     this.Email});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewX2.DefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewX2.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridViewX2.Location = new System.Drawing.Point(6, 171);
     this.dataGridViewX2.Name = "dataGridViewX2";
     this.dataGridViewX2.Size = new System.Drawing.Size(583, 156);
     this.dataGridViewX2.TabIndex = 9;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.HeaderText = "STT";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly = true;
     this.dataGridViewTextBoxColumn1.Width = 35;
     //
     // IdUser
     //
     this.IdUser.HeaderText = "Mã Người Dùng";
     this.IdUser.Name = "IdUser";
     this.IdUser.Width = 107;
     //
     // NameUser
     //
     this.NameUser.HeaderText = "Tên Người Dùng";
     this.NameUser.Name = "NameUser";
     this.NameUser.Width = 115;
     //
     // Password
     //
     this.Password.HeaderText = "Mật Khẩu";
     this.Password.Name = "Password";
     this.Password.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Password.Width = 80;
     //
     // IdKuser2
     //
     this.IdKuser2.HeaderText = "Loại Người Dùng";
     this.IdKuser2.Name = "IdKuser2";
     //
     // Email
     //
     this.Email.HeaderText = "Email";
     this.Email.Name = "Email";
     //
     // textBoxX1
     //
     //
     //
     //
     this.textBoxX1.Border.Class = "TextBoxBorder";
     this.textBoxX1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX1.Location = new System.Drawing.Point(141, 64);
     this.textBoxX1.Name = "textBoxX1";
     this.textBoxX1.Size = new System.Drawing.Size(100, 20);
     this.textBoxX1.TabIndex = 8;
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(22, 65);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(81, 23);
     this.labelX4.TabIndex = 7;
     this.labelX4.Text = "Tên Người Dùng";
     //
     // textBoxX2
     //
     //
     //
     //
     this.textBoxX2.Border.Class = "TextBoxBorder";
     this.textBoxX2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX2.Location = new System.Drawing.Point(141, 38);
     this.textBoxX2.Name = "textBoxX2";
     this.textBoxX2.Size = new System.Drawing.Size(100, 20);
     this.textBoxX2.TabIndex = 6;
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Location = new System.Drawing.Point(22, 38);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(81, 23);
     this.labelX5.TabIndex = 5;
     this.labelX5.Text = "Mã Người Dùng";
     //
     // textBoxX3
     //
     //
     //
     //
     this.textBoxX3.Border.Class = "TextBoxBorder";
     this.textBoxX3.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX3.Location = new System.Drawing.Point(352, 38);
     this.textBoxX3.Name = "textBoxX3";
     this.textBoxX3.Size = new System.Drawing.Size(100, 20);
     this.textBoxX3.TabIndex = 4;
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Location = new System.Drawing.Point(257, 35);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(56, 23);
     this.labelX6.TabIndex = 3;
     this.labelX6.Text = "Mật Khẩu";
     //
     // tabItemUser
     //
     this.tabItemUser.AttachedControl = this.tabControlPanel2;
     this.tabItemUser.Name = "tabItemUser";
     this.tabItemUser.Text = "Người Dùng";
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.panelKUser);
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 26);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(611, 290);
     this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(144)))), ((int)(((byte)(156)))), ((int)(((byte)(187)))));
     this.tabControlPanel1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(233)))), ((int)(((byte)(240)))));
     this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.SystemColors.ControlDark;
     this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel1.Style.GradientAngle = 90;
     this.tabControlPanel1.TabIndex = 1;
     this.tabControlPanel1.TabItem = this.tabItemKUser;
     //
     // panelKUser
     //
     this.panelKUser.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelKUser.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelKUser.Controls.Add(this.groupBox1);
     this.panelKUser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelKUser.Location = new System.Drawing.Point(1, 1);
     this.panelKUser.Name = "panelKUser";
     this.panelKUser.Size = new System.Drawing.Size(609, 288);
     this.panelKUser.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelKUser.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelKUser.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelKUser.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelKUser.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelKUser.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelKUser.Style.GradientAngle = 90;
     this.panelKUser.TabIndex = 0;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.btDelete);
     this.groupBox1.Controls.Add(this.btUpdate);
     this.groupBox1.Controls.Add(this.btAdd);
     this.groupBox1.Controls.Add(this.dataGridViewX1);
     this.groupBox1.Controls.Add(this.txt_NameKUser);
     this.groupBox1.Controls.Add(this.labelX3);
     this.groupBox1.Controls.Add(this.txt_IdKuser);
     this.groupBox1.Controls.Add(this.labelX2);
     this.groupBox1.Controls.Add(this.txt_NoteKUser);
     this.groupBox1.Controls.Add(this.labelX1);
     this.groupBox1.Location = new System.Drawing.Point(7, 12);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(599, 273);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Loại Người Dùng";
     //
     // dataGridViewX1
     //
     this.dataGridViewX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewX1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.STT_KUser,
     this.IdKuser,
     this.NameKUser,
     this.NoteKUser});
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewX1.DefaultCellStyle = dataGridViewCellStyle4;
     this.dataGridViewX1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridViewX1.Location = new System.Drawing.Point(22, 140);
     this.dataGridViewX1.Name = "dataGridViewX1";
     this.dataGridViewX1.Size = new System.Drawing.Size(481, 96);
     this.dataGridViewX1.TabIndex = 9;
     //
     // STT_KUser
     //
     this.STT_KUser.HeaderText = "STT";
     this.STT_KUser.Name = "STT_KUser";
     this.STT_KUser.ReadOnly = true;
     this.STT_KUser.Width = 35;
     //
     // IdKuser
     //
     this.IdKuser.HeaderText = "Mã Loại Người Dùng";
     this.IdKuser.Name = "IdKuser";
     this.IdKuser.Width = 150;
     //
     // NameKUser
     //
     this.NameKUser.HeaderText = "Tên Loại Người Dùng";
     this.NameKUser.Name = "NameKUser";
     this.NameKUser.Width = 150;
     //
     // NoteKUser
     //
     this.NoteKUser.HeaderText = "Ghi Chú";
     this.NoteKUser.Name = "NoteKUser";
     //
     // txt_NameKUser
     //
     //
     //
     //
     this.txt_NameKUser.Border.Class = "";
     this.txt_NameKUser.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NameKUser.Location = new System.Drawing.Point(141, 64);
     this.txt_NameKUser.Name = "txt_NameKUser";
     this.txt_NameKUser.Size = new System.Drawing.Size(100, 20);
     this.txt_NameKUser.TabIndex = 8;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(22, 65);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(113, 23);
     this.labelX3.TabIndex = 7;
     this.labelX3.Text = "Tên Loại Người Dùng";
     //
     // txt_IdKuser
     //
     //
     //
     //
     this.txt_IdKuser.Border.Class = "";
     this.txt_IdKuser.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_IdKuser.Location = new System.Drawing.Point(141, 38);
     this.txt_IdKuser.Name = "txt_IdKuser";
     this.txt_IdKuser.Size = new System.Drawing.Size(100, 20);
     this.txt_IdKuser.TabIndex = 6;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(22, 32);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(113, 23);
     this.labelX2.TabIndex = 5;
     this.labelX2.Text = "Mã Loại Người Dùng";
     //
     // txt_NoteKUser
     //
     //
     //
     //
     this.txt_NoteKUser.Border.Class = "";
     this.txt_NoteKUser.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NoteKUser.Location = new System.Drawing.Point(309, 38);
     this.txt_NoteKUser.Name = "txt_NoteKUser";
     this.txt_NoteKUser.Size = new System.Drawing.Size(100, 20);
     this.txt_NoteKUser.TabIndex = 4;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(247, 38);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(56, 20);
     this.labelX1.TabIndex = 3;
     this.labelX1.Text = "Ghi Chú";
     //
     // tabItemKUser
     //
     this.tabItemKUser.AttachedControl = this.tabControlPanel1;
     this.tabItemKUser.Name = "tabItemKUser";
     this.tabItemKUser.Text = "Loại Người Dùng";
     //
     // btDelete
     //
     this.btDelete.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btDelete.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btDelete.Location = new System.Drawing.Point(141, 111);
     this.btDelete.Name = "btDelete";
     this.btDelete.Size = new System.Drawing.Size(75, 23);
     this.btDelete.TabIndex = 38;
     this.btDelete.Text = "Xóa";
     //
     // btUpdate
     //
     this.btUpdate.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btUpdate.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btUpdate.Location = new System.Drawing.Point(247, 111);
     this.btUpdate.Name = "btUpdate";
     this.btUpdate.Size = new System.Drawing.Size(75, 23);
     this.btUpdate.TabIndex = 39;
     this.btUpdate.Text = "Sửa";
     //
     // btAdd
     //
     this.btAdd.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btAdd.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btAdd.Location = new System.Drawing.Point(22, 111);
     this.btAdd.Name = "btAdd";
     this.btAdd.Size = new System.Drawing.Size(75, 23);
     this.btAdd.TabIndex = 37;
     this.btAdd.Text = "Thêm";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Location = new System.Drawing.Point(266, 124);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(75, 23);
     this.buttonX1.TabIndex = 41;
     this.buttonX1.Text = "Xóa";
     //
     // buttonX2
     //
     this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX2.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX2.Location = new System.Drawing.Point(372, 124);
     this.buttonX2.Name = "buttonX2";
     this.buttonX2.Size = new System.Drawing.Size(75, 23);
     this.buttonX2.TabIndex = 42;
     this.buttonX2.Text = "Sửa";
     //
     // buttonX3
     //
     this.buttonX3.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX3.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX3.Location = new System.Drawing.Point(147, 124);
     this.buttonX3.Name = "buttonX3";
     this.buttonX3.Size = new System.Drawing.Size(75, 23);
     this.buttonX3.TabIndex = 40;
     this.buttonX3.Text = "Thêm";
     //
     // buttonX4
     //
     this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX4.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX4.Location = new System.Drawing.Point(141, 99);
     this.buttonX4.Name = "buttonX4";
     this.buttonX4.Size = new System.Drawing.Size(75, 23);
     this.buttonX4.TabIndex = 41;
     this.buttonX4.Text = "Xóa";
     //
     // buttonX5
     //
     this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX5.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX5.Location = new System.Drawing.Point(247, 99);
     this.buttonX5.Name = "buttonX5";
     this.buttonX5.Size = new System.Drawing.Size(75, 23);
     this.buttonX5.TabIndex = 42;
     this.buttonX5.Text = "Sửa";
     //
     // buttonX6
     //
     this.buttonX6.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX6.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX6.Location = new System.Drawing.Point(22, 99);
     this.buttonX6.Name = "buttonX6";
     this.buttonX6.Size = new System.Drawing.Size(75, 23);
     this.buttonX6.TabIndex = 40;
     this.buttonX6.Text = "Thêm";
     //
     // frmQTHT
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(618, 385);
     this.Controls.Add(this.tabControlPhanQuyen);
     this.Name = "frmQTHT";
     this.Text = "Quản Trị Hệ Thống";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmQTHT_FormClosing);
     this.Load += new System.EventHandler(this.frmAccount_Load);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlPhanQuyen)).EndInit();
     this.tabControlPhanQuyen.ResumeLayout(false);
     this.tabControlPanel4.ResumeLayout(false);
     this.panelDTPower.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewXPQ)).EndInit();
     this.tabControlPanel3.ResumeLayout(false);
     this.panelPower.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX3)).EndInit();
     this.tabControlPanel2.ResumeLayout(false);
     this.panelUser.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX2)).EndInit();
     this.tabControlPanel1.ResumeLayout(false);
     this.panelKUser.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmReportDailyTest_VNIO));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     this.cmsGrd = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.tsmSelectAll = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmDeSelectAll = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmReverseSelection = new System.Windows.Forms.ToolStripMenuItem();
     this.grbDateSelector = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.chkUncheck = new System.Windows.Forms.CheckBox();
     this.chkChon = new System.Windows.Forms.CheckBox();
     this.dtpTodate = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.cboDate = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.lbltu = new System.Windows.Forms.Label();
     this.dtpFromDate = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.lblDen = new System.Windows.Forms.Label();
     this.grdObjectType = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.colX_Object = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colObjectType = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colID_Object = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.grdDoctor = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.grdTestTypeList = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.colX_TestType = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colTestType = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colID_TestType = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btnOK = new DevComponents.DotNetBar.ButtonX();
     this.grdDepartment = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.CHON = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.idkhoa = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btnExit = new DevComponents.DotNetBar.ButtonX();
     this.cmsGrd.SuspendLayout();
     this.grbDateSelector.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtpTodate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpFromDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdObjectType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdDoctor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdTestTypeList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdDepartment)).BeginInit();
     this.SuspendLayout();
     //
     // cmsGrd
     //
     this.cmsGrd.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsmSelectAll,
     this.tsmDeSelectAll,
     this.tsmReverseSelection});
     this.cmsGrd.Name = "cmsGrd";
     this.cmsGrd.Size = new System.Drawing.Size(141, 70);
     this.cmsGrd.Text = "Đánh dấu";
     //
     // tsmSelectAll
     //
     this.tsmSelectAll.Name = "tsmSelectAll";
     this.tsmSelectAll.Size = new System.Drawing.Size(140, 22);
     this.tsmSelectAll.Text = "Chọn Tất Cả";
     this.tsmSelectAll.Click += new System.EventHandler(this.tsmSelectAll_Click);
     //
     // tsmDeSelectAll
     //
     this.tsmDeSelectAll.Name = "tsmDeSelectAll";
     this.tsmDeSelectAll.Size = new System.Drawing.Size(140, 22);
     this.tsmDeSelectAll.Text = "Hủy Chọn";
     this.tsmDeSelectAll.Click += new System.EventHandler(this.tsmDeSelectAll_Click);
     //
     // tsmReverseSelection
     //
     this.tsmReverseSelection.Name = "tsmReverseSelection";
     this.tsmReverseSelection.Size = new System.Drawing.Size(140, 22);
     this.tsmReverseSelection.Text = "Đảo Chọn";
     this.tsmReverseSelection.Click += new System.EventHandler(this.tsmReverseSelection_Click);
     //
     // grbDateSelector
     //
     this.grbDateSelector.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.grbDateSelector.CanvasColor = System.Drawing.SystemColors.Control;
     this.grbDateSelector.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.grbDateSelector.Controls.Add(this.chkUncheck);
     this.grbDateSelector.Controls.Add(this.chkChon);
     this.grbDateSelector.Controls.Add(this.dtpTodate);
     this.grbDateSelector.Controls.Add(this.cboDate);
     this.grbDateSelector.Controls.Add(this.lbltu);
     this.grbDateSelector.Controls.Add(this.dtpFromDate);
     this.grbDateSelector.Controls.Add(this.lblDen);
     this.grbDateSelector.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grbDateSelector.Location = new System.Drawing.Point(12, 2);
     this.grbDateSelector.Name = "grbDateSelector";
     this.grbDateSelector.Size = new System.Drawing.Size(268, 132);
     //
     //
     //
     this.grbDateSelector.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.grbDateSelector.Style.BackColorGradientAngle = 90;
     this.grbDateSelector.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.grbDateSelector.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.grbDateSelector.Style.BorderBottomWidth = 1;
     this.grbDateSelector.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.grbDateSelector.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.grbDateSelector.Style.BorderLeftWidth = 1;
     this.grbDateSelector.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.grbDateSelector.Style.BorderRightWidth = 1;
     this.grbDateSelector.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.grbDateSelector.Style.BorderTopWidth = 1;
     this.grbDateSelector.Style.Class = "";
     this.grbDateSelector.Style.CornerDiameter = 4;
     this.grbDateSelector.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.grbDateSelector.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.grbDateSelector.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.grbDateSelector.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.grbDateSelector.StyleMouseDown.Class = "";
     this.grbDateSelector.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.grbDateSelector.StyleMouseOver.Class = "";
     this.grbDateSelector.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.grbDateSelector.TabIndex = 62;
     this.grbDateSelector.Text = "Ngày";
     //
     // chkUncheck
     //
     this.chkUncheck.AutoSize = true;
     this.chkUncheck.Location = new System.Drawing.Point(94, 94);
     this.chkUncheck.Name = "chkUncheck";
     this.chkUncheck.Size = new System.Drawing.Size(80, 19);
     this.chkUncheck.TabIndex = 75;
     this.chkUncheck.Text = "Đảo chọn";
     this.chkUncheck.UseVisualStyleBackColor = true;
     this.chkUncheck.CheckedChanged += new System.EventHandler(this.chkUncheck_CheckedChanged);
     //
     // chkChon
     //
     this.chkChon.AutoSize = true;
     this.chkChon.Location = new System.Drawing.Point(3, 94);
     this.chkChon.Name = "chkChon";
     this.chkChon.Size = new System.Drawing.Size(90, 19);
     this.chkChon.TabIndex = 74;
     this.chkChon.Text = "Chọn tất cả";
     this.chkChon.UseVisualStyleBackColor = true;
     this.chkChon.CheckedChanged += new System.EventHandler(this.chkChon_CheckedChanged);
     //
     // dtpTodate
     //
     this.dtpTodate.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.dtpTodate.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dtpTodate.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtpTodate.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dtpTodate.ButtonDropDown.Visible = true;
     this.dtpTodate.CustomFormat = "dd/MM/yyyy";
     this.dtpTodate.Format = DevComponents.Editors.eDateTimePickerFormat.Custom;
     this.dtpTodate.IsPopupCalendarOpen = false;
     this.dtpTodate.Location = new System.Drawing.Point(37, 57);
     //
     //
     //
     this.dtpTodate.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtpTodate.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dtpTodate.MonthCalendar.BackgroundStyle.Class = "";
     this.dtpTodate.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtpTodate.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dtpTodate.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dtpTodate.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dtpTodate.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dtpTodate.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dtpTodate.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dtpTodate.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dtpTodate.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dtpTodate.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtpTodate.MonthCalendar.DisplayMonth = new System.DateTime(2011, 4, 1, 0, 0, 0, 0);
     this.dtpTodate.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dtpTodate.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtpTodate.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dtpTodate.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dtpTodate.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dtpTodate.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dtpTodate.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtpTodate.MonthCalendar.TodayButtonVisible = true;
     this.dtpTodate.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dtpTodate.Name = "dtpTodate";
     this.dtpTodate.Size = new System.Drawing.Size(222, 21);
     this.dtpTodate.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dtpTodate.TabIndex = 1;
     //
     // cboDate
     //
     this.cboDate.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.cboDate.DisplayMember = "Text";
     this.cboDate.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cboDate.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboDate.FormattingEnabled = true;
     this.cboDate.ItemHeight = 15;
     this.cboDate.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2,
     this.comboItem3});
     this.cboDate.Location = new System.Drawing.Point(5, 5);
     this.cboDate.Name = "cboDate";
     this.cboDate.Size = new System.Drawing.Size(254, 21);
     this.cboDate.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cboDate.TabIndex = 0;
     this.cboDate.SelectedIndexChanged += new System.EventHandler(this.cboDate_SelectedIndexChanged);
     //
     // comboItem1
     //
     this.comboItem1.FontStyle = System.Drawing.FontStyle.Bold;
     this.comboItem1.Text = "Hôm nay";
     //
     // comboItem2
     //
     this.comboItem2.FontStyle = System.Drawing.FontStyle.Bold;
     this.comboItem2.Text = "Hôm qua";
     //
     // comboItem3
     //
     this.comboItem3.FontStyle = System.Drawing.FontStyle.Bold;
     this.comboItem3.Text = "Tùy chọn";
     //
     // lbltu
     //
     this.lbltu.AutoSize = true;
     this.lbltu.BackColor = System.Drawing.Color.Transparent;
     this.lbltu.Location = new System.Drawing.Point(3, 35);
     this.lbltu.Name = "lbltu";
     this.lbltu.Size = new System.Drawing.Size(26, 15);
     this.lbltu.TabIndex = 0;
     this.lbltu.Text = "Từ:";
     //
     // dtpFromDate
     //
     this.dtpFromDate.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.dtpFromDate.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dtpFromDate.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtpFromDate.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dtpFromDate.ButtonDropDown.Visible = true;
     this.dtpFromDate.CustomFormat = "dd/MM/yyyy";
     this.dtpFromDate.Format = DevComponents.Editors.eDateTimePickerFormat.Custom;
     this.dtpFromDate.IsPopupCalendarOpen = false;
     this.dtpFromDate.Location = new System.Drawing.Point(37, 31);
     //
     //
     //
     this.dtpFromDate.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtpFromDate.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dtpFromDate.MonthCalendar.BackgroundStyle.Class = "";
     this.dtpFromDate.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtpFromDate.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dtpFromDate.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dtpFromDate.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dtpFromDate.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dtpFromDate.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dtpFromDate.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dtpFromDate.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dtpFromDate.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dtpFromDate.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtpFromDate.MonthCalendar.DisplayMonth = new System.DateTime(2011, 4, 1, 0, 0, 0, 0);
     this.dtpFromDate.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dtpFromDate.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtpFromDate.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dtpFromDate.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dtpFromDate.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dtpFromDate.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dtpFromDate.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtpFromDate.MonthCalendar.TodayButtonVisible = true;
     this.dtpFromDate.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dtpFromDate.Name = "dtpFromDate";
     this.dtpFromDate.Size = new System.Drawing.Size(222, 21);
     this.dtpFromDate.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dtpFromDate.TabIndex = 1;
     //
     // lblDen
     //
     this.lblDen.AutoSize = true;
     this.lblDen.BackColor = System.Drawing.Color.Transparent;
     this.lblDen.Location = new System.Drawing.Point(2, 61);
     this.lblDen.Name = "lblDen";
     this.lblDen.Size = new System.Drawing.Size(33, 15);
     this.lblDen.TabIndex = 0;
     this.lblDen.Text = "Đến:";
     //
     // grdObjectType
     //
     this.grdObjectType.AllowUserToAddRows = false;
     this.grdObjectType.AllowUserToDeleteRows = false;
     this.grdObjectType.AllowUserToResizeRows = false;
     this.grdObjectType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.grdObjectType.BackgroundColor = System.Drawing.Color.White;
     this.grdObjectType.CausesValidation = false;
     this.grdObjectType.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdObjectType.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colX_Object,
     this.colObjectType,
     this.colID_Object});
     this.grdObjectType.ContextMenuStrip = this.cmsGrd;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdObjectType.DefaultCellStyle = dataGridViewCellStyle1;
     this.grdObjectType.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.grdObjectType.Location = new System.Drawing.Point(32, 196);
     this.grdObjectType.MultiSelect = false;
     this.grdObjectType.Name = "grdObjectType";
     this.grdObjectType.ReadOnly = true;
     this.grdObjectType.RowHeadersVisible = false;
     this.grdObjectType.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdObjectType.Size = new System.Drawing.Size(187, 279);
     this.grdObjectType.TabIndex = 64;
     this.grdObjectType.Click += new System.EventHandler(this.grdObjectType_Click);
     this.grdObjectType.KeyUp += new System.Windows.Forms.KeyEventHandler(this.grdObjectType_KeyUp);
     //
     // colX_Object
     //
     this.colX_Object.DataPropertyName = "Checked";
     this.colX_Object.FalseValue = "0";
     this.colX_Object.HeaderText = "X";
     this.colX_Object.Name = "colX_Object";
     this.colX_Object.ReadOnly = true;
     this.colX_Object.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.colX_Object.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.colX_Object.TrueValue = "1";
     this.colX_Object.Width = 25;
     //
     // colObjectType
     //
     this.colObjectType.DataPropertyName = "sName";
     this.colObjectType.HeaderText = "Đối tượng";
     this.colObjectType.Name = "colObjectType";
     this.colObjectType.ReadOnly = true;
     this.colObjectType.Width = 120;
     //
     // colID_Object
     //
     this.colID_Object.DataPropertyName = "ID";
     this.colID_Object.HeaderText = "ID";
     this.colID_Object.Name = "colID_Object";
     this.colID_Object.ReadOnly = true;
     this.colID_Object.Visible = false;
     this.colID_Object.Width = 40;
     //
     // grdDoctor
     //
     this.grdDoctor.AllowUserToAddRows = false;
     this.grdDoctor.AllowUserToDeleteRows = false;
     this.grdDoctor.AllowUserToResizeRows = false;
     this.grdDoctor.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.grdDoctor.BackgroundColor = System.Drawing.Color.White;
     this.grdDoctor.CausesValidation = false;
     this.grdDoctor.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdDoctor.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewCheckBoxColumn1,
     this.dataGridViewTextBoxColumn1,
     this.dataGridViewTextBoxColumn2});
     this.grdDoctor.ContextMenuStrip = this.cmsGrd;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdDoctor.DefaultCellStyle = dataGridViewCellStyle2;
     this.grdDoctor.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.grdDoctor.Location = new System.Drawing.Point(477, 12);
     this.grdDoctor.MultiSelect = false;
     this.grdDoctor.Name = "grdDoctor";
     this.grdDoctor.ReadOnly = true;
     this.grdDoctor.RowHeadersVisible = false;
     this.grdDoctor.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdDoctor.Size = new System.Drawing.Size(250, 565);
     this.grdDoctor.TabIndex = 71;
     this.grdDoctor.Visible = false;
     //
     // dataGridViewCheckBoxColumn1
     //
     this.dataGridViewCheckBoxColumn1.DataPropertyName = "Checked";
     this.dataGridViewCheckBoxColumn1.FalseValue = "0";
     this.dataGridViewCheckBoxColumn1.HeaderText = "X";
     this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
     this.dataGridViewCheckBoxColumn1.ReadOnly = true;
     this.dataGridViewCheckBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewCheckBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.dataGridViewCheckBoxColumn1.TrueValue = "1";
     this.dataGridViewCheckBoxColumn1.Width = 25;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.DataPropertyName = "bacSyDieuTri";
     this.dataGridViewTextBoxColumn1.HeaderText = "Bác Sỹ điều trị";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly = true;
     this.dataGridViewTextBoxColumn1.Width = 120;
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.DataPropertyName = "idbacSyDieuTri";
     this.dataGridViewTextBoxColumn2.HeaderText = "ID";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     this.dataGridViewTextBoxColumn2.ReadOnly = true;
     this.dataGridViewTextBoxColumn2.Visible = false;
     this.dataGridViewTextBoxColumn2.Width = 40;
     //
     // grdTestTypeList
     //
     this.grdTestTypeList.AllowUserToAddRows = false;
     this.grdTestTypeList.AllowUserToDeleteRows = false;
     this.grdTestTypeList.AllowUserToResizeRows = false;
     this.grdTestTypeList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.grdTestTypeList.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.grdTestTypeList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.grdTestTypeList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdTestTypeList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colX_TestType,
     this.colTestType,
     this.colID_TestType});
     this.grdTestTypeList.ContextMenuStrip = this.cmsGrd;
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdTestTypeList.DefaultCellStyle = dataGridViewCellStyle4;
     this.grdTestTypeList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.grdTestTypeList.Location = new System.Drawing.Point(6, 336);
     this.grdTestTypeList.Name = "grdTestTypeList";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle5.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle5.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle5.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle5.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle5.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.grdTestTypeList.RowHeadersDefaultCellStyle = dataGridViewCellStyle5;
     this.grdTestTypeList.RowHeadersVisible = false;
     this.grdTestTypeList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdTestTypeList.Size = new System.Drawing.Size(274, 193);
     this.grdTestTypeList.TabIndex = 73;
     //
     // colX_TestType
     //
     this.colX_TestType.DataPropertyName = "Checked";
     this.colX_TestType.FalseValue = "0";
     this.colX_TestType.HeaderText = "X";
     this.colX_TestType.Name = "colX_TestType";
     this.colX_TestType.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.colX_TestType.TrueValue = "1";
     this.colX_TestType.Width = 25;
     //
     // colTestType
     //
     this.colTestType.DataPropertyName = "TestType_Name";
     this.colTestType.HeaderText = "Loại Xét Nghiệm";
     this.colTestType.Name = "colTestType";
     this.colTestType.ReadOnly = true;
     this.colTestType.Width = 200;
     //
     // colID_TestType
     //
     this.colID_TestType.DataPropertyName = "TestType_ID";
     this.colID_TestType.HeaderText = "ID";
     this.colID_TestType.Name = "colID_TestType";
     this.colID_TestType.ReadOnly = true;
     this.colID_TestType.Width = 40;
     //
     // btnOK
     //
     this.btnOK.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnOK.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnOK.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnOK.Image = ((System.Drawing.Image)(resources.GetObject("btnOK.Image")));
     this.btnOK.Location = new System.Drawing.Point(13, 535);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(126, 45);
     this.btnOK.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnOK.TabIndex = 74;
     this.btnOK.Text = "In báo cáo (F4)";
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click_1);
     //
     // grdDepartment
     //
     this.grdDepartment.AllowUserToAddRows = false;
     this.grdDepartment.AllowUserToDeleteRows = false;
     this.grdDepartment.AllowUserToResizeRows = false;
     this.grdDepartment.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.grdDepartment.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle6.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle6.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle6.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle6.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.grdDepartment.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle6;
     this.grdDepartment.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdDepartment.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.CHON,
     this.dataGridViewTextBoxColumn3,
     this.idkhoa});
     this.grdDepartment.ContextMenuStrip = this.cmsGrd;
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle7.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle7.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdDepartment.DefaultCellStyle = dataGridViewCellStyle7;
     this.grdDepartment.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.grdDepartment.Location = new System.Drawing.Point(6, 140);
     this.grdDepartment.Name = "grdDepartment";
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle8.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle8.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.grdDepartment.RowHeadersDefaultCellStyle = dataGridViewCellStyle8;
     this.grdDepartment.RowHeadersVisible = false;
     this.grdDepartment.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdDepartment.Size = new System.Drawing.Size(274, 198);
     this.grdDepartment.TabIndex = 75;
     //
     // CHON
     //
     this.CHON.DataPropertyName = "CHON";
     this.CHON.FalseValue = "0";
     this.CHON.HeaderText = "X";
     this.CHON.Name = "CHON";
     this.CHON.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.CHON.TrueValue = "1";
     this.CHON.Width = 25;
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.DataPropertyName = "khoa";
     this.dataGridViewTextBoxColumn3.HeaderText = "Khoa";
     this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
     this.dataGridViewTextBoxColumn3.ReadOnly = true;
     this.dataGridViewTextBoxColumn3.Width = 200;
     //
     // idkhoa
     //
     this.idkhoa.DataPropertyName = "idkhoa";
     this.idkhoa.HeaderText = "IdKhoa";
     this.idkhoa.Name = "idkhoa";
     this.idkhoa.ReadOnly = true;
     this.idkhoa.Width = 40;
     //
     // btnExit
     //
     this.btnExit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnExit.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnExit.Image = ((System.Drawing.Image)(resources.GetObject("btnExit.Image")));
     this.btnExit.Location = new System.Drawing.Point(145, 535);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(126, 45);
     this.btnExit.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnExit.TabIndex = 76;
     this.btnExit.Text = "Thoát";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // FrmReportDailyTest_VNIO
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(746, 589);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.grdDepartment);
     this.Controls.Add(this.grdDoctor);
     this.Controls.Add(this.grbDateSelector);
     this.Controls.Add(this.grdTestTypeList);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.grdObjectType);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.Name = "FrmReportDailyTest_VNIO";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "BÁO CÁO THÔNG KÊ THEO KHOA LÂM SÀNG";
     this.Load += new System.EventHandler(this.FrmGeneralReport_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FrmGeneralReport_KeyDown);
     this.cmsGrd.ResumeLayout(false);
     this.grbDateSelector.ResumeLayout(false);
     this.grbDateSelector.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtpTodate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpFromDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdObjectType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdDoctor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdTestTypeList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdDepartment)).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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.lbTenGiaoVien = new DevComponents.DotNetBar.LabelX();
     this.comboHoTen = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.tbxMaHocSinh = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.comboLop = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.lbHoTen = new DevComponents.DotNetBar.LabelX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.dtgvHocSinh = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.STT = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Lop = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.HoTen = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaHocSinh = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.GioiTinh = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NgaySinh = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DiaChi = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Email = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.lbKetQua = new DevComponents.DotNetBar.LabelX();
     this.buttonX4 = new DevComponents.DotNetBar.ButtonX();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.lbKQ = new DevComponents.DotNetBar.LabelX();
     this.groupPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtgvHocSinh)).BeginInit();
     this.groupPanel2.SuspendLayout();
     this.SuspendLayout();
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX5.Location = new System.Drawing.Point(340, 1);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(171, 23);
     this.labelX5.TabIndex = 28;
     this.labelX5.Text = "Tra Cứu Học Sinh";
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.Location = new System.Drawing.Point(594, 3);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.TabIndex = 29;
     this.labelX1.Text = "Mã Học Sinh: ";
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.lbTenGiaoVien);
     this.groupPanel1.Controls.Add(this.comboHoTen);
     this.groupPanel1.Controls.Add(this.buttonX1);
     this.groupPanel1.Controls.Add(this.tbxMaHocSinh);
     this.groupPanel1.Controls.Add(this.comboLop);
     this.groupPanel1.Controls.Add(this.labelX2);
     this.groupPanel1.Controls.Add(this.labelX1);
     this.groupPanel1.Controls.Add(this.lbHoTen);
     this.groupPanel1.Controls.Add(this.labelX6);
     this.groupPanel1.Location = new System.Drawing.Point(1, 30);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(848, 80);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.Class = "";
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel1.StyleMouseDown.Class = "";
     this.groupPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel1.StyleMouseOver.Class = "";
     this.groupPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel1.TabIndex = 30;
     this.groupPanel1.Text = "Thông Tin Tra Cứu";
     //
     // lbTenGiaoVien
     //
     this.lbTenGiaoVien.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbTenGiaoVien.BackgroundStyle.Class = "";
     this.lbTenGiaoVien.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbTenGiaoVien.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbTenGiaoVien.Location = new System.Drawing.Point(164, 28);
     this.lbTenGiaoVien.Name = "lbTenGiaoVien";
     this.lbTenGiaoVien.Size = new System.Drawing.Size(92, 23);
     this.lbTenGiaoVien.TabIndex = 43;
     //
     // comboHoTen
     //
     this.comboHoTen.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.comboHoTen.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboHoTen.DisplayMember = "Text";
     this.comboHoTen.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboHoTen.FormattingEnabled = true;
     this.comboHoTen.ItemHeight = 14;
     this.comboHoTen.Location = new System.Drawing.Point(356, 6);
     this.comboHoTen.Name = "comboHoTen";
     this.comboHoTen.Size = new System.Drawing.Size(195, 20);
     this.comboHoTen.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboHoTen.TabIndex = 35;
     this.comboHoTen.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboHoTen_KeyDown);
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.ImageFixedSize = new System.Drawing.Size(26, 26);
     this.buttonX1.Location = new System.Drawing.Point(480, 32);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(71, 26);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 41;
     this.buttonX1.Text = "Search";
     this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // tbxMaHocSinh
     //
     //
     //
     //
     this.tbxMaHocSinh.Border.Class = "TextBoxBorder";
     this.tbxMaHocSinh.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.tbxMaHocSinh.Location = new System.Drawing.Point(698, 4);
     this.tbxMaHocSinh.Name = "tbxMaHocSinh";
     this.tbxMaHocSinh.Size = new System.Drawing.Size(133, 20);
     this.tbxMaHocSinh.TabIndex = 31;
     //
     // comboLop
     //
     this.comboLop.DisplayMember = "Text";
     this.comboLop.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboLop.FormattingEnabled = true;
     this.comboLop.ItemHeight = 14;
     this.comboLop.Location = new System.Drawing.Point(100, 3);
     this.comboLop.Name = "comboLop";
     this.comboLop.Size = new System.Drawing.Size(58, 20);
     this.comboLop.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboLop.TabIndex = 38;
     this.comboLop.SelectedIndexChanged += new System.EventHandler(this.comboLop_SelectedIndexChanged);
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX2.Location = new System.Drawing.Point(66, 3);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(28, 23);
     this.labelX2.TabIndex = 37;
     this.labelX2.Text = "Lớp: ";
     //
     // lbHoTen
     //
     this.lbHoTen.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbHoTen.BackgroundStyle.Class = "";
     this.lbHoTen.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbHoTen.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbHoTen.Location = new System.Drawing.Point(227, 6);
     this.lbHoTen.Name = "lbHoTen";
     this.lbHoTen.Size = new System.Drawing.Size(112, 23);
     this.lbHoTen.TabIndex = 34;
     this.lbHoTen.Text = "Họ và Tên Học Sinh";
     //
     // labelX6
     //
     this.labelX6.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX6.Location = new System.Drawing.Point(66, 29);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(92, 23);
     this.labelX6.TabIndex = 33;
     this.labelX6.Text = "Tên Giáo Viên: ";
     //
     // dtgvHocSinh
     //
     this.dtgvHocSinh.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dtgvHocSinh.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.STT,
     this.Lop,
     this.HoTen,
     this.MaHocSinh,
     this.GioiTinh,
     this.NgaySinh,
     this.DiaChi,
     this.Email});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dtgvHocSinh.DefaultCellStyle = dataGridViewCellStyle1;
     this.dtgvHocSinh.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     this.dtgvHocSinh.Location = new System.Drawing.Point(3, 3);
     this.dtgvHocSinh.Name = "dtgvHocSinh";
     this.dtgvHocSinh.Size = new System.Drawing.Size(842, 206);
     this.dtgvHocSinh.TabIndex = 0;
     //
     // STT
     //
     this.STT.DataPropertyName = "stt";
     this.STT.HeaderText = "STT";
     this.STT.Name = "STT";
     this.STT.Width = 30;
     //
     // Lop
     //
     this.Lop.DataPropertyName = "lop";
     this.Lop.HeaderText = "Lớp";
     this.Lop.Name = "Lop";
     this.Lop.Width = 50;
     //
     // HoTen
     //
     this.HoTen.DataPropertyName = "hoTen";
     this.HoTen.HeaderText = "Họ và Tên";
     this.HoTen.Name = "HoTen";
     this.HoTen.Width = 170;
     //
     // MaHocSinh
     //
     this.MaHocSinh.DataPropertyName = "maHocSinh";
     this.MaHocSinh.HeaderText = "Mã HS";
     this.MaHocSinh.Name = "MaHocSinh";
     this.MaHocSinh.Width = 70;
     //
     // GioiTinh
     //
     this.GioiTinh.DataPropertyName = "gioiTinh";
     this.GioiTinh.HeaderText = "Giới Tính";
     this.GioiTinh.Name = "GioiTinh";
     this.GioiTinh.Width = 80;
     //
     // NgaySinh
     //
     this.NgaySinh.DataPropertyName = "ngaySinh";
     this.NgaySinh.HeaderText = "Ngày Sinh";
     this.NgaySinh.Name = "NgaySinh";
     this.NgaySinh.Width = 130;
     //
     // DiaChi
     //
     this.DiaChi.DataPropertyName = "diaChi";
     this.DiaChi.HeaderText = "Địa Chỉ";
     this.DiaChi.Name = "DiaChi";
     this.DiaChi.Width = 170;
     //
     // Email
     //
     this.Email.DataPropertyName = "email";
     this.Email.HeaderText = "Email";
     this.Email.Name = "Email";
     //
     // lbKetQua
     //
     this.lbKetQua.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbKetQua.BackgroundStyle.Class = "";
     this.lbKetQua.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbKetQua.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbKetQua.Location = new System.Drawing.Point(1, 350);
     this.lbKetQua.Name = "lbKetQua";
     this.lbKetQua.Size = new System.Drawing.Size(97, 23);
     this.lbKetQua.TabIndex = 32;
     this.lbKetQua.Text = "Số lượng tìm thấy: ";
     //
     // buttonX4
     //
     this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX4.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX4.Location = new System.Drawing.Point(780, 350);
     this.buttonX4.Name = "buttonX4";
     this.buttonX4.Size = new System.Drawing.Size(75, 23);
     this.buttonX4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX4.TabIndex = 33;
     this.buttonX4.Text = "Đóng";
     this.buttonX4.Click += new System.EventHandler(this.buttonX4_Click);
     //
     // groupPanel2
     //
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.dtgvHocSinh);
     this.groupPanel2.Location = new System.Drawing.Point(1, 111);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(854, 233);
     //
     //
     //
     this.groupPanel2.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 1;
     this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 1;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 1;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 1;
     this.groupPanel2.Style.Class = "";
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel2.StyleMouseDown.Class = "";
     this.groupPanel2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel2.StyleMouseOver.Class = "";
     this.groupPanel2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel2.TabIndex = 34;
     this.groupPanel2.Text = "Thông Tin Tra Cứu";
     //
     // lbKQ
     //
     this.lbKQ.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbKQ.BackgroundStyle.Class = "";
     this.lbKQ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbKQ.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbKQ.Location = new System.Drawing.Point(104, 350);
     this.lbKQ.Name = "lbKQ";
     this.lbKQ.Size = new System.Drawing.Size(22, 23);
     this.lbKQ.TabIndex = 35;
     this.lbKQ.Text = "0";
     //
     // frmTraCuuHocSinh
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(860, 373);
     this.Controls.Add(this.lbKQ);
     this.Controls.Add(this.groupPanel2);
     this.Controls.Add(this.buttonX4);
     this.Controls.Add(this.lbKetQua);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.labelX5);
     this.DoubleBuffered = true;
     this.Name = "frmTraCuuHocSinh";
     this.Text = "Tra Cứu";
     this.Load += new System.EventHandler(this.frmTraCuu_Load);
     this.groupPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dtgvHocSinh)).EndInit();
     this.groupPanel2.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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.btnThem = new DevComponents.DotNetBar.ButtonX();
     this.btnSua = new DevComponents.DotNetBar.ButtonX();
     this.btnXoa = new DevComponents.DotNetBar.ButtonX();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.dtgvHocSinh = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.STT = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.HoTen = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaHocSinh = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.GioiTinh = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NgaySinh = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DiaChi = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Email = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gPThongTinHS = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.dtimeNgaySinh = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.btnKhongLuu = new DevComponents.DotNetBar.ButtonX();
     this.btnLuu = new DevComponents.DotNetBar.ButtonX();
     this.tbxHoTen = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.lbDiaChi = new DevComponents.DotNetBar.LabelX();
     this.tbxDiaChi = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.lbGioiTinh = new DevComponents.DotNetBar.LabelX();
     this.tbxEmail = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.lbEmail = new DevComponents.DotNetBar.LabelX();
     this.lbHoTen = new DevComponents.DotNetBar.LabelX();
     this.rdioNu = new System.Windows.Forms.RadioButton();
     this.lbNgaySinh = new DevComponents.DotNetBar.LabelX();
     this.rdioNam = new System.Windows.Forms.RadioButton();
     this.btnDong = new DevComponents.DotNetBar.ButtonX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtgvHocSinh)).BeginInit();
     this.gPThongTinHS.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtimeNgaySinh)).BeginInit();
     this.SuspendLayout();
     //
     // btnThem
     //
     this.btnThem.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnThem.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnThem.Location = new System.Drawing.Point(227, 419);
     this.btnThem.Name = "btnThem";
     this.btnThem.Size = new System.Drawing.Size(75, 23);
     this.btnThem.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnThem.TabIndex = 7;
     this.btnThem.Text = "Thêm";
     this.btnThem.Click += new System.EventHandler(this.btnThem_Click);
     //
     // btnSua
     //
     this.btnSua.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnSua.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnSua.Location = new System.Drawing.Point(413, 419);
     this.btnSua.Name = "btnSua";
     this.btnSua.Size = new System.Drawing.Size(75, 23);
     this.btnSua.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnSua.TabIndex = 9;
     this.btnSua.Text = "Sửa";
     this.btnSua.Click += new System.EventHandler(this.btnSua_Click);
     //
     // btnXoa
     //
     this.btnXoa.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnXoa.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnXoa.Location = new System.Drawing.Point(317, 419);
     this.btnXoa.Name = "btnXoa";
     this.btnXoa.Size = new System.Drawing.Size(75, 23);
     this.btnXoa.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnXoa.TabIndex = 8;
     this.btnXoa.Text = "Xóa";
     this.btnXoa.Click += new System.EventHandler(this.btnXoa_Click);
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.dtgvHocSinh);
     this.groupPanel1.Location = new System.Drawing.Point(2, 134);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(744, 279);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.Class = "";
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel1.StyleMouseDown.Class = "";
     this.groupPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel1.StyleMouseOver.Class = "";
     this.groupPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel1.TabIndex = 15;
     this.groupPanel1.Text = "Danh Sách Học Sinh";
     //
     // dtgvHocSinh
     //
     this.dtgvHocSinh.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dtgvHocSinh.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.STT,
     this.HoTen,
     this.MaHocSinh,
     this.GioiTinh,
     this.NgaySinh,
     this.DiaChi,
     this.Email});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dtgvHocSinh.DefaultCellStyle = dataGridViewCellStyle1;
     this.dtgvHocSinh.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     this.dtgvHocSinh.Location = new System.Drawing.Point(9, 3);
     this.dtgvHocSinh.MultiSelect = false;
     this.dtgvHocSinh.Name = "dtgvHocSinh";
     this.dtgvHocSinh.ReadOnly = true;
     this.dtgvHocSinh.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dtgvHocSinh.Size = new System.Drawing.Size(726, 252);
     this.dtgvHocSinh.TabIndex = 0;
     //
     // STT
     //
     this.STT.DataPropertyName = "stt";
     this.STT.HeaderText = "STT";
     this.STT.Name = "STT";
     this.STT.ReadOnly = true;
     this.STT.Width = 30;
     //
     // HoTen
     //
     this.HoTen.DataPropertyName = "hoTen";
     this.HoTen.HeaderText = "Họ và Tên";
     this.HoTen.Name = "HoTen";
     this.HoTen.ReadOnly = true;
     this.HoTen.Width = 130;
     //
     // MaHocSinh
     //
     this.MaHocSinh.DataPropertyName = "maHocSinh";
     this.MaHocSinh.HeaderText = "Mã Học Sinh";
     this.MaHocSinh.Name = "MaHocSinh";
     this.MaHocSinh.ReadOnly = true;
     //
     // GioiTinh
     //
     this.GioiTinh.DataPropertyName = "gioiTinh";
     this.GioiTinh.HeaderText = "Giới Tính";
     this.GioiTinh.Name = "GioiTinh";
     this.GioiTinh.ReadOnly = true;
     this.GioiTinh.Width = 80;
     //
     // NgaySinh
     //
     this.NgaySinh.DataPropertyName = "ngaySinh";
     this.NgaySinh.HeaderText = "Ngày Sinh";
     this.NgaySinh.Name = "NgaySinh";
     this.NgaySinh.ReadOnly = true;
     this.NgaySinh.Width = 80;
     //
     // DiaChi
     //
     this.DiaChi.DataPropertyName = "diaChi";
     this.DiaChi.HeaderText = "Địa Chỉ";
     this.DiaChi.Name = "DiaChi";
     this.DiaChi.ReadOnly = true;
     this.DiaChi.Width = 130;
     //
     // Email
     //
     this.Email.DataPropertyName = "email";
     this.Email.HeaderText = "Email";
     this.Email.Name = "Email";
     this.Email.ReadOnly = true;
     this.Email.Width = 150;
     //
     // gPThongTinHS
     //
     this.gPThongTinHS.CanvasColor = System.Drawing.SystemColors.Control;
     this.gPThongTinHS.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.gPThongTinHS.Controls.Add(this.dtimeNgaySinh);
     this.gPThongTinHS.Controls.Add(this.btnKhongLuu);
     this.gPThongTinHS.Controls.Add(this.btnLuu);
     this.gPThongTinHS.Controls.Add(this.tbxHoTen);
     this.gPThongTinHS.Controls.Add(this.lbDiaChi);
     this.gPThongTinHS.Controls.Add(this.tbxDiaChi);
     this.gPThongTinHS.Controls.Add(this.lbGioiTinh);
     this.gPThongTinHS.Controls.Add(this.tbxEmail);
     this.gPThongTinHS.Controls.Add(this.lbEmail);
     this.gPThongTinHS.Controls.Add(this.lbHoTen);
     this.gPThongTinHS.Controls.Add(this.rdioNu);
     this.gPThongTinHS.Controls.Add(this.lbNgaySinh);
     this.gPThongTinHS.Controls.Add(this.rdioNam);
     this.gPThongTinHS.Location = new System.Drawing.Point(2, 32);
     this.gPThongTinHS.Name = "gPThongTinHS";
     this.gPThongTinHS.Size = new System.Drawing.Size(744, 102);
     //
     //
     //
     this.gPThongTinHS.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.gPThongTinHS.Style.BackColorGradientAngle = 90;
     this.gPThongTinHS.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.gPThongTinHS.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.gPThongTinHS.Style.BorderBottomWidth = 1;
     this.gPThongTinHS.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.gPThongTinHS.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.gPThongTinHS.Style.BorderLeftWidth = 1;
     this.gPThongTinHS.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.gPThongTinHS.Style.BorderRightWidth = 1;
     this.gPThongTinHS.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.gPThongTinHS.Style.BorderTopWidth = 1;
     this.gPThongTinHS.Style.Class = "";
     this.gPThongTinHS.Style.CornerDiameter = 4;
     this.gPThongTinHS.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.gPThongTinHS.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.gPThongTinHS.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.gPThongTinHS.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.gPThongTinHS.StyleMouseDown.Class = "";
     this.gPThongTinHS.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.gPThongTinHS.StyleMouseOver.Class = "";
     this.gPThongTinHS.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.gPThongTinHS.TabIndex = 12;
     this.gPThongTinHS.Text = "Thông Tin Học Sinh";
     //
     // dtimeNgaySinh
     //
     //
     //
     //
     this.dtimeNgaySinh.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dtimeNgaySinh.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtimeNgaySinh.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dtimeNgaySinh.ButtonDropDown.Visible = true;
     this.dtimeNgaySinh.Location = new System.Drawing.Point(86, 29);
     //
     //
     //
     this.dtimeNgaySinh.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtimeNgaySinh.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dtimeNgaySinh.MonthCalendar.BackgroundStyle.Class = "";
     this.dtimeNgaySinh.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtimeNgaySinh.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dtimeNgaySinh.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dtimeNgaySinh.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dtimeNgaySinh.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dtimeNgaySinh.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dtimeNgaySinh.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dtimeNgaySinh.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dtimeNgaySinh.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dtimeNgaySinh.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtimeNgaySinh.MonthCalendar.DisplayMonth = new System.DateTime(2012, 12, 1, 0, 0, 0, 0);
     this.dtimeNgaySinh.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dtimeNgaySinh.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtimeNgaySinh.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dtimeNgaySinh.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dtimeNgaySinh.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dtimeNgaySinh.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dtimeNgaySinh.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtimeNgaySinh.MonthCalendar.TodayButtonVisible = true;
     this.dtimeNgaySinh.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dtimeNgaySinh.Name = "dtimeNgaySinh";
     this.dtimeNgaySinh.Size = new System.Drawing.Size(188, 20);
     this.dtimeNgaySinh.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dtimeNgaySinh.TabIndex = 4;
     //
     // btnKhongLuu
     //
     this.btnKhongLuu.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnKhongLuu.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnKhongLuu.Location = new System.Drawing.Point(592, 55);
     this.btnKhongLuu.Name = "btnKhongLuu";
     this.btnKhongLuu.Size = new System.Drawing.Size(75, 23);
     this.btnKhongLuu.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnKhongLuu.TabIndex = 14;
     this.btnKhongLuu.Text = "Không Lưu";
     this.btnKhongLuu.Click += new System.EventHandler(this.btnKhongLuu_Click);
     //
     // btnLuu
     //
     this.btnLuu.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnLuu.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnLuu.Location = new System.Drawing.Point(473, 55);
     this.btnLuu.Name = "btnLuu";
     this.btnLuu.Size = new System.Drawing.Size(75, 23);
     this.btnLuu.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnLuu.TabIndex = 13;
     this.btnLuu.Text = "Lưu";
     this.btnLuu.Click += new System.EventHandler(this.btnLuu_Click);
     //
     // tbxHoTen
     //
     //
     //
     //
     this.tbxHoTen.Border.Class = "TextBoxBorder";
     this.tbxHoTen.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.tbxHoTen.Location = new System.Drawing.Point(86, 3);
     this.tbxHoTen.Name = "tbxHoTen";
     this.tbxHoTen.Size = new System.Drawing.Size(188, 20);
     this.tbxHoTen.TabIndex = 1;
     //
     // lbDiaChi
     //
     this.lbDiaChi.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbDiaChi.BackgroundStyle.Class = "";
     this.lbDiaChi.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbDiaChi.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbDiaChi.Location = new System.Drawing.Point(280, 26);
     this.lbDiaChi.Name = "lbDiaChi";
     this.lbDiaChi.Size = new System.Drawing.Size(45, 23);
     this.lbDiaChi.TabIndex = 7;
     this.lbDiaChi.Text = "Địa Chỉ:";
     //
     // tbxDiaChi
     //
     //
     //
     //
     this.tbxDiaChi.Border.Class = "TextBoxBorder";
     this.tbxDiaChi.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.tbxDiaChi.Location = new System.Drawing.Point(329, 29);
     this.tbxDiaChi.Name = "tbxDiaChi";
     this.tbxDiaChi.Size = new System.Drawing.Size(219, 20);
     this.tbxDiaChi.TabIndex = 5;
     //
     // lbGioiTinh
     //
     this.lbGioiTinh.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbGioiTinh.BackgroundStyle.Class = "";
     this.lbGioiTinh.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbGioiTinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbGioiTinh.Location = new System.Drawing.Point(280, 3);
     this.lbGioiTinh.Name = "lbGioiTinh";
     this.lbGioiTinh.Size = new System.Drawing.Size(63, 23);
     this.lbGioiTinh.TabIndex = 11;
     this.lbGioiTinh.Text = "Giới Tính:";
     //
     // tbxEmail
     //
     //
     //
     //
     this.tbxEmail.Border.Class = "TextBoxBorder";
     this.tbxEmail.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.tbxEmail.Location = new System.Drawing.Point(592, 26);
     this.tbxEmail.Name = "tbxEmail";
     this.tbxEmail.Size = new System.Drawing.Size(133, 20);
     this.tbxEmail.TabIndex = 6;
     //
     // lbEmail
     //
     this.lbEmail.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbEmail.BackgroundStyle.Class = "";
     this.lbEmail.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbEmail.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbEmail.Location = new System.Drawing.Point(554, 26);
     this.lbEmail.Name = "lbEmail";
     this.lbEmail.Size = new System.Drawing.Size(32, 23);
     this.lbEmail.TabIndex = 8;
     this.lbEmail.Text = "Email:";
     //
     // lbHoTen
     //
     this.lbHoTen.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbHoTen.BackgroundStyle.Class = "";
     this.lbHoTen.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbHoTen.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbHoTen.Location = new System.Drawing.Point(19, 3);
     this.lbHoTen.Name = "lbHoTen";
     this.lbHoTen.Size = new System.Drawing.Size(61, 23);
     this.lbHoTen.TabIndex = 2;
     this.lbHoTen.Text = "Họ và Tên";
     //
     // rdioNu
     //
     this.rdioNu.AutoSize = true;
     this.rdioNu.BackColor = System.Drawing.Color.Transparent;
     this.rdioNu.Location = new System.Drawing.Point(412, 6);
     this.rdioNu.Name = "rdioNu";
     this.rdioNu.Size = new System.Drawing.Size(39, 17);
     this.rdioNu.TabIndex = 3;
     this.rdioNu.Text = "Nữ";
     this.rdioNu.UseVisualStyleBackColor = false;
     //
     // lbNgaySinh
     //
     this.lbNgaySinh.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbNgaySinh.BackgroundStyle.Class = "";
     this.lbNgaySinh.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbNgaySinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbNgaySinh.Location = new System.Drawing.Point(19, 26);
     this.lbNgaySinh.Name = "lbNgaySinh";
     this.lbNgaySinh.Size = new System.Drawing.Size(61, 23);
     this.lbNgaySinh.TabIndex = 5;
     this.lbNgaySinh.Text = "Ngày Sinh";
     //
     // rdioNam
     //
     this.rdioNam.AutoSize = true;
     this.rdioNam.BackColor = System.Drawing.Color.Transparent;
     this.rdioNam.Checked = true;
     this.rdioNam.Location = new System.Drawing.Point(359, 6);
     this.rdioNam.Name = "rdioNam";
     this.rdioNam.Size = new System.Drawing.Size(47, 17);
     this.rdioNam.TabIndex = 2;
     this.rdioNam.TabStop = true;
     this.rdioNam.Text = "Nam";
     this.rdioNam.UseVisualStyleBackColor = false;
     //
     // btnDong
     //
     this.btnDong.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnDong.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnDong.Location = new System.Drawing.Point(671, 419);
     this.btnDong.Name = "btnDong";
     this.btnDong.Size = new System.Drawing.Size(75, 23);
     this.btnDong.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnDong.TabIndex = 10;
     this.btnDong.Text = "Đóng";
     this.btnDong.Click += new System.EventHandler(this.btnDong_Click);
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX2.Location = new System.Drawing.Point(290, 3);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(180, 23);
     this.labelX2.TabIndex = 20;
     this.labelX2.Text = "Tiếp Nhận Học Sinh";
     //
     // frmTiepNhanHocSinh
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(751, 447);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.btnDong);
     this.Controls.Add(this.btnThem);
     this.Controls.Add(this.btnSua);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.btnXoa);
     this.Controls.Add(this.gPThongTinHS);
     this.DoubleBuffered = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.HelpButton = true;
     this.Name = "frmTiepNhanHocSinh";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Tiếp Nhận Học Sinh";
     this.Load += new System.EventHandler(this.frmTiepNhanHocSinh_Load);
     this.groupPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dtgvHocSinh)).EndInit();
     this.gPThongTinHS.ResumeLayout(false);
     this.gPThongTinHS.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtimeNgaySinh)).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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.txtVirualAccount = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.btnQuery = new DevComponents.DotNetBar.ButtonX();
     this.dgvMerge = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.chMName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.chMValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.lblPayInfo = new DevComponents.DotNetBar.LabelX();
     this.dgvPayItem = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.dgvMerge)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvPayItem)).BeginInit();
     this.SuspendLayout();
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(12, 12);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "虛擬帳號";
     //
     // txtVirualAccount
     //
     this.txtVirualAccount.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.txtVirualAccount.Border.Class = "TextBoxBorder";
     this.txtVirualAccount.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtVirualAccount.Location = new System.Drawing.Point(75, 11);
     this.txtVirualAccount.Name = "txtVirualAccount";
     this.txtVirualAccount.Size = new System.Drawing.Size(374, 25);
     this.txtVirualAccount.TabIndex = 1;
     //
     // btnQuery
     //
     this.btnQuery.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnQuery.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnQuery.BackColor = System.Drawing.Color.Transparent;
     this.btnQuery.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnQuery.Location = new System.Drawing.Point(455, 12);
     this.btnQuery.Name = "btnQuery";
     this.btnQuery.Size = new System.Drawing.Size(54, 23);
     this.btnQuery.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnQuery.TabIndex = 2;
     this.btnQuery.Text = "查詢";
     this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click);
     //
     // dgvMerge
     //
     this.dgvMerge.AllowUserToAddRows = false;
     this.dgvMerge.AllowUserToDeleteRows = false;
     this.dgvMerge.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.dgvMerge.BackgroundColor = System.Drawing.Color.White;
     this.dgvMerge.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvMerge.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.chMName,
     this.chMValue});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgvMerge.DefaultCellStyle = dataGridViewCellStyle1;
     this.dgvMerge.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgvMerge.Location = new System.Drawing.Point(12, 62);
     this.dgvMerge.Name = "dgvMerge";
     this.dgvMerge.ReadOnly = true;
     this.dgvMerge.RowHeadersVisible = false;
     this.dgvMerge.RowTemplate.Height = 24;
     this.dgvMerge.Size = new System.Drawing.Size(497, 200);
     this.dgvMerge.TabIndex = 3;
     //
     // chMName
     //
     this.chMName.HeaderText = "名稱";
     this.chMName.Name = "chMName";
     this.chMName.ReadOnly = true;
     this.chMName.Width = 150;
     //
     // chMValue
     //
     this.chMValue.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.chMValue.HeaderText = "資料";
     this.chMValue.Name = "chMValue";
     this.chMValue.ReadOnly = true;
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(12, 41);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 23);
     this.labelX2.TabIndex = 0;
     this.labelX2.Text = "合併欄位";
     //
     // lblPayInfo
     //
     this.lblPayInfo.AutoSize = true;
     this.lblPayInfo.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblPayInfo.BackgroundStyle.Class = "";
     this.lblPayInfo.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblPayInfo.Location = new System.Drawing.Point(12, 268);
     this.lblPayInfo.Name = "lblPayInfo";
     this.lblPayInfo.Size = new System.Drawing.Size(60, 21);
     this.lblPayInfo.TabIndex = 0;
     this.lblPayInfo.Text = "繳費資料";
     //
     // dgvPayItem
     //
     this.dgvPayItem.AllowUserToAddRows = false;
     this.dgvPayItem.AllowUserToDeleteRows = false;
     this.dgvPayItem.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.dgvPayItem.BackgroundColor = System.Drawing.Color.White;
     this.dgvPayItem.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvPayItem.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn1,
     this.dataGridViewTextBoxColumn2});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgvPayItem.DefaultCellStyle = dataGridViewCellStyle2;
     this.dgvPayItem.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgvPayItem.Location = new System.Drawing.Point(12, 295);
     this.dgvPayItem.Name = "dgvPayItem";
     this.dgvPayItem.ReadOnly = true;
     this.dgvPayItem.RowHeadersVisible = false;
     this.dgvPayItem.RowTemplate.Height = 24;
     this.dgvPayItem.Size = new System.Drawing.Size(497, 261);
     this.dgvPayItem.TabIndex = 3;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.HeaderText = "名稱";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly = true;
     this.dataGridViewTextBoxColumn1.Width = 150;
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.dataGridViewTextBoxColumn2.HeaderText = "資料";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     this.dataGridViewTextBoxColumn2.ReadOnly = true;
     //
     // VAFinder
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(521, 568);
     this.Controls.Add(this.dgvPayItem);
     this.Controls.Add(this.dgvMerge);
     this.Controls.Add(this.btnQuery);
     this.Controls.Add(this.txtVirualAccount);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.lblPayInfo);
     this.Controls.Add(this.labelX2);
     this.DoubleBuffered = true;
     this.Name = "VAFinder";
     this.Text = "依虛擬帳號反查";
     ((System.ComponentModel.ISupportInitialize)(this.dgvMerge)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvPayItem)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.lblImpName = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.dgQuizData = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.colDataField = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDataValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btnSave = new DevComponents.DotNetBar.ButtonX();
     this.btnExit = new DevComponents.DotNetBar.ButtonX();
     this.dtImplementationDate = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.dtAnalysisDate = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.cbxQuizName = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     ((System.ComponentModel.ISupportInitialize)(this.dgQuizData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtImplementationDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtAnalysisDate)).BeginInit();
     this.SuspendLayout();
     //
     // lblImpName
     //
     this.lblImpName.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblImpName.BackgroundStyle.Class = "";
     this.lblImpName.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblImpName.Location = new System.Drawing.Point(13, 54);
     this.lblImpName.Name = "lblImpName";
     this.lblImpName.Size = new System.Drawing.Size(58, 23);
     this.lblImpName.TabIndex = 1;
     this.lblImpName.Text = "實施日期";
     //
     // labelX3
     //
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(272, 54);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(70, 23);
     this.labelX3.TabIndex = 3;
     this.labelX3.Text = "解析日期";
     //
     // dgQuizData
     //
     this.dgQuizData.AllowUserToAddRows = false;
     this.dgQuizData.AllowUserToDeleteRows = false;
     this.dgQuizData.BackgroundColor = System.Drawing.Color.White;
     this.dgQuizData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgQuizData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colDataField,
     this.colDataValue});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgQuizData.DefaultCellStyle = dataGridViewCellStyle1;
     this.dgQuizData.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgQuizData.Location = new System.Drawing.Point(13, 91);
     this.dgQuizData.Name = "dgQuizData";
     this.dgQuizData.RowTemplate.Height = 24;
     this.dgQuizData.Size = new System.Drawing.Size(448, 183);
     this.dgQuizData.TabIndex = 3;
     this.dgQuizData.CurrentCellDirtyStateChanged += new System.EventHandler(this.dgQuizData_CurrentCellDirtyStateChanged);
     //
     // colDataField
     //
     this.colDataField.HeaderText = "項目名稱";
     this.colDataField.Name = "colDataField";
     this.colDataField.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // colDataValue
     //
     this.colDataValue.HeaderText = "測驗結果";
     this.colDataValue.Name = "colDataValue";
     this.colDataValue.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.colDataValue.Width = 300;
     //
     // btnSave
     //
     this.btnSave.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnSave.BackColor = System.Drawing.Color.Transparent;
     this.btnSave.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnSave.Location = new System.Drawing.Point(302, 282);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 4;
     this.btnSave.Text = "儲存";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnExit
     //
     this.btnExit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnExit.BackColor = System.Drawing.Color.Transparent;
     this.btnExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnExit.Location = new System.Drawing.Point(386, 282);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(75, 23);
     this.btnExit.TabIndex = 5;
     this.btnExit.Text = "離開";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // dtImplementationDate
     //
     this.dtImplementationDate.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.dtImplementationDate.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dtImplementationDate.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtImplementationDate.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dtImplementationDate.ButtonDropDown.Visible = true;
     this.dtImplementationDate.IsPopupCalendarOpen = false;
     this.dtImplementationDate.Location = new System.Drawing.Point(75, 52);
     //
     //
     //
     this.dtImplementationDate.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtImplementationDate.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dtImplementationDate.MonthCalendar.BackgroundStyle.Class = "";
     this.dtImplementationDate.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtImplementationDate.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dtImplementationDate.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dtImplementationDate.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dtImplementationDate.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dtImplementationDate.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dtImplementationDate.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dtImplementationDate.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dtImplementationDate.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dtImplementationDate.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtImplementationDate.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dtImplementationDate.MonthCalendar.DisplayMonth = new System.DateTime(2011, 5, 1, 0, 0, 0, 0);
     this.dtImplementationDate.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dtImplementationDate.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtImplementationDate.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dtImplementationDate.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dtImplementationDate.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dtImplementationDate.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dtImplementationDate.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtImplementationDate.MonthCalendar.TodayButtonVisible = true;
     this.dtImplementationDate.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dtImplementationDate.Name = "dtImplementationDate";
     this.dtImplementationDate.Size = new System.Drawing.Size(131, 25);
     this.dtImplementationDate.TabIndex = 1;
     //
     // dtAnalysisDate
     //
     this.dtAnalysisDate.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.dtAnalysisDate.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dtAnalysisDate.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtAnalysisDate.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dtAnalysisDate.ButtonDropDown.Visible = true;
     this.dtAnalysisDate.IsPopupCalendarOpen = false;
     this.dtAnalysisDate.Location = new System.Drawing.Point(330, 52);
     //
     //
     //
     this.dtAnalysisDate.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtAnalysisDate.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dtAnalysisDate.MonthCalendar.BackgroundStyle.Class = "";
     this.dtAnalysisDate.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtAnalysisDate.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dtAnalysisDate.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dtAnalysisDate.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dtAnalysisDate.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dtAnalysisDate.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dtAnalysisDate.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dtAnalysisDate.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dtAnalysisDate.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dtAnalysisDate.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtAnalysisDate.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dtAnalysisDate.MonthCalendar.DisplayMonth = new System.DateTime(2011, 5, 1, 0, 0, 0, 0);
     this.dtAnalysisDate.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dtAnalysisDate.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtAnalysisDate.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dtAnalysisDate.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dtAnalysisDate.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dtAnalysisDate.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dtAnalysisDate.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtAnalysisDate.MonthCalendar.TodayButtonVisible = true;
     this.dtAnalysisDate.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dtAnalysisDate.Name = "dtAnalysisDate";
     this.dtAnalysisDate.Size = new System.Drawing.Size(131, 25);
     this.dtAnalysisDate.TabIndex = 2;
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(13, 15);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(58, 23);
     this.labelX1.TabIndex = 6;
     this.labelX1.Text = "測驗名稱";
     //
     // cbxQuizName
     //
     this.cbxQuizName.DisplayMember = "Text";
     this.cbxQuizName.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cbxQuizName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxQuizName.FormattingEnabled = true;
     this.cbxQuizName.ItemHeight = 19;
     this.cbxQuizName.Location = new System.Drawing.Point(75, 13);
     this.cbxQuizName.Name = "cbxQuizName";
     this.cbxQuizName.Size = new System.Drawing.Size(386, 25);
     this.cbxQuizName.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cbxQuizName.TabIndex = 7;
     this.cbxQuizName.SelectedIndexChanged += new System.EventHandler(this.cbxQuizName_SelectedIndexChanged);
     //
     // StudQuizDataForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(470, 309);
     this.Controls.Add(this.cbxQuizName);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.dtAnalysisDate);
     this.Controls.Add(this.dtImplementationDate);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.dgQuizData);
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.lblImpName);
     this.DoubleBuffered = true;
     this.Name = "StudQuizDataForm";
     this.Text = "學生測驗內容";
     this.Load += new System.EventHandler(this.StudQuizDataForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgQuizData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtImplementationDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtAnalysisDate)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Tipo_Empresa));
     this.dgvTipoEmpresa = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.txtDescripcion = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtNombre = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.superValidator1 = new DevComponents.DotNetBar.Validator.SuperValidator();
     this.requiredFieldValidator1 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Campo requerido");
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.highlighter1 = new DevComponents.DotNetBar.Validator.Highlighter();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     ((System.ComponentModel.ISupportInitialize)(this.dgvTipoEmpresa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // dgvTipoEmpresa
     //
     this.dgvTipoEmpresa.AllowUserToAddRows = false;
     this.dgvTipoEmpresa.AllowUserToDeleteRows = false;
     this.dgvTipoEmpresa.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgvTipoEmpresa.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgvTipoEmpresa.DefaultCellStyle = dataGridViewCellStyle1;
     this.dgvTipoEmpresa.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
     this.dgvTipoEmpresa.Location = new System.Drawing.Point(29, 179);
     this.dgvTipoEmpresa.MultiSelect = false;
     this.dgvTipoEmpresa.Name = "dgvTipoEmpresa";
     this.dgvTipoEmpresa.ReadOnly = true;
     this.dgvTipoEmpresa.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvTipoEmpresa.Size = new System.Drawing.Size(473, 150);
     this.dgvTipoEmpresa.TabIndex = 1;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(29, 86);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 23);
     this.labelX2.TabIndex = 13;
     this.labelX2.Text = "Descripcion :";
     //
     // txtDescripcion
     //
     this.txtDescripcion.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtDescripcion.Border.Class = "TextBoxBorder";
     this.txtDescripcion.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtDescripcion.ForeColor = System.Drawing.Color.Black;
     this.txtDescripcion.Location = new System.Drawing.Point(110, 85);
     this.txtDescripcion.Multiline = true;
     this.txtDescripcion.Name = "txtDescripcion";
     this.txtDescripcion.ReadOnly = true;
     this.txtDescripcion.Size = new System.Drawing.Size(271, 81);
     this.txtDescripcion.TabIndex = 3;
     //
     // txtNombre
     //
     this.txtNombre.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtNombre.Border.Class = "TextBoxBorder";
     this.txtNombre.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtNombre.ForeColor = System.Drawing.Color.Black;
     this.txtNombre.Location = new System.Drawing.Point(110, 59);
     this.txtNombre.MaxLength = 50;
     this.txtNombre.Name = "txtNombre";
     this.txtNombre.ReadOnly = true;
     this.txtNombre.Size = new System.Drawing.Size(134, 20);
     this.txtNombre.TabIndex = 2;
     this.superValidator1.SetValidator1(this.txtNombre, this.requiredFieldValidator1);
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(29, 56);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
     this.labelX1.TabIndex = 10;
     this.labelX1.Text = "Nombre :";
     //
     // superValidator1
     //
     this.superValidator1.ContainerControl = this;
     this.superValidator1.ErrorProvider = this.errorProvider1;
     this.superValidator1.Highlighter = this.highlighter1;
     //
     // requiredFieldValidator1
     //
     this.requiredFieldValidator1.ErrorMessage = "Campo requerido";
     this.requiredFieldValidator1.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // highlighter1
     //
     this.highlighter1.ContainerControl = this;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX3.Location = new System.Drawing.Point(185, 17);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(182, 23);
     this.labelX3.TabIndex = 15;
     this.labelX3.Text = "TIPOS DE EMPRESA";
     //
     // Tipo_Empresa
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.dgvTipoEmpresa);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.txtDescripcion);
     this.Controls.Add(this.txtNombre);
     this.Controls.Add(this.labelX1);
     this.Name = "Tipo_Empresa";
     this.Size = new System.Drawing.Size(529, 343);
     this.Load += new System.EventHandler(this.Tipo_Empresa_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgvTipoEmpresa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.btnRemove = new DevComponents.DotNetBar.ButtonX();
     this.btnAdd = new DevComponents.DotNetBar.ButtonX();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.dgvData = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.ClassName = new DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn();
     this.SNum = new DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn();
     this.StudentName = new DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn();
     this.Gender = new DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn();
     this.ReportGroup = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.IsCancel = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.dgvData)).BeginInit();
     this.SuspendLayout();
     //
     // btnRemove
     //
     this.btnRemove.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnRemove.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnRemove.Location = new System.Drawing.Point(20, 227);
     this.btnRemove.Name = "btnRemove";
     this.btnRemove.Size = new System.Drawing.Size(115, 23);
     this.btnRemove.TabIndex = 4;
     this.btnRemove.Text = "移除修課學生";
     this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
     //
     // btnAdd
     //
     this.btnAdd.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnAdd.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnAdd.Location = new System.Drawing.Point(141, 227);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(132, 23);
     this.btnAdd.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem1});
     this.btnAdd.TabIndex = 6;
     this.btnAdd.Text = "加入待處理學生";
     this.btnAdd.PopupOpen += new System.EventHandler(this.btnAdd_PopupOpen);
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // buttonItem1
     //
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "New Item";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(304, 230);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(99, 17);
     this.label1.TabIndex = 7;
     this.label1.Text = "目前修課人數:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(399, 230);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(21, 17);
     this.label2.TabIndex = 8;
     this.label2.Text = " ";
     //
     // dgvData
     //
     this.dgvData.AllowUserToAddRows = false;
     this.dgvData.AllowUserToDeleteRows = false;
     this.dgvData.BackgroundColor = System.Drawing.Color.White;
     this.dgvData.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.dgvData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.ClassName,
     this.SNum,
     this.StudentName,
     this.Gender,
     this.ReportGroup,
     this.IsCancel});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgvData.DefaultCellStyle = dataGridViewCellStyle1;
     this.dgvData.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgvData.Location = new System.Drawing.Point(20, 22);
     this.dgvData.Name = "dgvData";
     this.dgvData.RowHeadersWidth = 25;
     this.dgvData.RowTemplate.Height = 24;
     this.dgvData.Size = new System.Drawing.Size(508, 188);
     this.dgvData.TabIndex = 9;
     //
     // ClassName
     //
     this.ClassName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ClassName.HeaderText = "教學分班";
     this.ClassName.Name = "ClassName";
     this.ClassName.ReadOnly = true;
     this.ClassName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.ClassName.TextAlignment = System.Drawing.StringAlignment.Center;
     this.ClassName.Width = 85;
     //
     // SNum
     //
     this.SNum.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.SNum.HeaderText = "學號";
     this.SNum.Name = "SNum";
     this.SNum.ReadOnly = true;
     this.SNum.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.SNum.TextAlignment = System.Drawing.StringAlignment.Center;
     this.SNum.Width = 59;
     //
     // StudentName
     //
     this.StudentName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.StudentName.HeaderText = "學生姓名";
     this.StudentName.Name = "StudentName";
     this.StudentName.ReadOnly = true;
     this.StudentName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.StudentName.TextAlignment = System.Drawing.StringAlignment.Center;
     this.StudentName.Width = 85;
     //
     // Gender
     //
     this.Gender.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.Gender.HeaderText = "性別";
     this.Gender.Name = "Gender";
     this.Gender.ReadOnly = true;
     this.Gender.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.Gender.TextAlignment = System.Drawing.StringAlignment.Center;
     this.Gender.Width = 59;
     //
     // ReportGroup
     //
     this.ReportGroup.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ReportGroup.HeaderText = "報告小組";
     this.ReportGroup.Name = "ReportGroup";
     this.ReportGroup.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.ReportGroup.Width = 85;
     //
     // IsCancel
     //
     this.IsCancel.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.IsCancel.HeaderText = "停修";
     this.IsCancel.Name = "IsCancel";
     this.IsCancel.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.IsCancel.Width = 59;
     //
     // Course_SCAttend
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.dgvData);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.btnRemove);
     this.Name = "Course_SCAttend";
     this.Size = new System.Drawing.Size(550, 260);
     ((System.ComponentModel.ISupportInitialize)(this.dgvData)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_recetas));
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem9 = new DevExpress.Utils.ToolTipTitleItem();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.btn_nuevo = new DevExpress.XtraBars.BarButtonItem();
     this.btn_cancelar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_imprimir = new DevExpress.XtraBars.BarButtonItem();
     this.btn_salir = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.btnLoad = new DevExpress.XtraBars.BarButtonItem();
     this.btnInicio = new DevExpress.XtraBars.BarButtonItem();
     this.btnAnterior = new DevExpress.XtraBars.BarButtonItem();
     this.btnSiguiente = new DevExpress.XtraBars.BarButtonItem();
     this.btnUltimo = new DevExpress.XtraBars.BarButtonItem();
     this.textBox13 = new System.Windows.Forms.TextBox();
     this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.pnl_busqueda = new System.Windows.Forms.GroupBox();
     this.btn_buscar = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.txt_versionbus = new System.Windows.Forms.TextBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txt_articnamebus = new System.Windows.Forms.TextBox();
     this.txt_articidoldbus = new System.Windows.Forms.TextBox();
     this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txt_version = new System.Windows.Forms.TextBox();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.txt_articname = new System.Windows.Forms.TextBox();
     this.txt_articidold = new System.Windows.Forms.TextBox();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.txt_fechemi = new DevExpress.XtraEditors.DateEdit();
     this.dgv_color = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.colorid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colorname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla01 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla02 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla03 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla04 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla05 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla06 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla07 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla08 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla09 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     this.pnl_busqueda.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
     this.panelControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechemi.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechemi.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_color)).BeginInit();
     this.SuspendLayout();
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.btn_nuevo,
     this.btn_cancelar,
     this.btn_imprimir,
     this.btnLoad,
     this.btnInicio,
     this.btnAnterior,
     this.btnSiguiente,
     this.btnUltimo,
     this.btn_salir});
     this.barManager1.MainMenu = this.bar1;
     this.barManager1.MaxItemId = 16;
     //
     // bar1
     //
     this.bar1.BarName = "Main menu";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btn_nuevo, DevExpress.XtraBars.BarItemPaintStyle.Standard),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_cancelar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_imprimir),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_salir)});
     this.bar1.OptionsBar.MultiLine = true;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Main menu";
     //
     // btn_nuevo
     //
     this.btn_nuevo.Caption = "btnNew";
     this.btn_nuevo.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.Glyph")));
     this.btn_nuevo.Id = 2;
     this.btn_nuevo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.LargeGlyph")));
     this.btn_nuevo.Name = "btn_nuevo";
     toolTipTitleItem1.Text = "Nuevo";
     superToolTip2.Items.Add(toolTipTitleItem1);
     this.btn_nuevo.SuperTip = superToolTip2;
     this.btn_nuevo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_nuevo_ItemClick);
     //
     // btn_cancelar
     //
     this.btn_cancelar.Caption = "btnCancel";
     this.btn_cancelar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.Glyph")));
     this.btn_cancelar.Id = 5;
     this.btn_cancelar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.LargeGlyph")));
     this.btn_cancelar.Name = "btn_cancelar";
     toolTipTitleItem2.Text = "Cancelar";
     superToolTip3.Items.Add(toolTipTitleItem2);
     this.btn_cancelar.SuperTip = superToolTip3;
     this.btn_cancelar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_cancelar_ItemClick);
     //
     // btn_imprimir
     //
     this.btn_imprimir.Caption = "btnPrint";
     this.btn_imprimir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.Glyph")));
     this.btn_imprimir.Id = 7;
     this.btn_imprimir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.LargeGlyph")));
     this.btn_imprimir.Name = "btn_imprimir";
     toolTipTitleItem3.Text = "Imprimir";
     superToolTip4.Items.Add(toolTipTitleItem3);
     this.btn_imprimir.SuperTip = superToolTip4;
     //
     // btn_salir
     //
     this.btn_salir.Caption = "btnExit";
     this.btn_salir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.Glyph")));
     this.btn_salir.Id = 14;
     this.btn_salir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.LargeGlyph")));
     this.btn_salir.Name = "btn_salir";
     toolTipTitleItem4.Text = "Salir";
     superToolTip5.Items.Add(toolTipTitleItem4);
     this.btn_salir.SuperTip = superToolTip5;
     this.btn_salir.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_salir_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(650, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 496);
     this.barDockControlBottom.Size = new System.Drawing.Size(650, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 472);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(650, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 472);
     //
     // btnLoad
     //
     this.btnLoad.Caption = "btnLoad";
     this.btnLoad.Glyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.Glyph")));
     this.btnLoad.Id = 8;
     this.btnLoad.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.LargeGlyph")));
     this.btnLoad.Name = "btnLoad";
     toolTipTitleItem5.Text = "Actualizar";
     superToolTip6.Items.Add(toolTipTitleItem5);
     this.btnLoad.SuperTip = superToolTip6;
     //
     // btnInicio
     //
     this.btnInicio.Caption = "btnInicio";
     this.btnInicio.Glyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.Glyph")));
     this.btnInicio.Id = 10;
     this.btnInicio.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.LargeGlyph")));
     this.btnInicio.Name = "btnInicio";
     toolTipTitleItem6.Text = "Primer Registro";
     superToolTip7.Items.Add(toolTipTitleItem6);
     this.btnInicio.SuperTip = superToolTip7;
     //
     // btnAnterior
     //
     this.btnAnterior.Caption = "btnAnterior";
     this.btnAnterior.Glyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.Glyph")));
     this.btnAnterior.Id = 11;
     this.btnAnterior.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.LargeGlyph")));
     this.btnAnterior.Name = "btnAnterior";
     toolTipTitleItem7.Text = "Anterior Registro";
     superToolTip8.Items.Add(toolTipTitleItem7);
     this.btnAnterior.SuperTip = superToolTip8;
     //
     // btnSiguiente
     //
     this.btnSiguiente.Caption = "btnSiguiente";
     this.btnSiguiente.Glyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.Glyph")));
     this.btnSiguiente.Id = 12;
     this.btnSiguiente.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.LargeGlyph")));
     this.btnSiguiente.Name = "btnSiguiente";
     toolTipTitleItem8.Text = "Siguiente Registro";
     superToolTip9.Items.Add(toolTipTitleItem8);
     this.btnSiguiente.SuperTip = superToolTip9;
     //
     // btnUltimo
     //
     this.btnUltimo.Caption = "btnUltimo";
     this.btnUltimo.Glyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.Glyph")));
     this.btnUltimo.Id = 13;
     this.btnUltimo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.LargeGlyph")));
     this.btnUltimo.Name = "btnUltimo";
     toolTipTitleItem9.Text = "Ultimo Registro";
     superToolTip10.Items.Add(toolTipTitleItem9);
     this.btnUltimo.SuperTip = superToolTip10;
     //
     // textBox13
     //
     this.textBox13.Location = new System.Drawing.Point(45, 28);
     this.textBox13.MaxLength = 10;
     this.textBox13.Name = "textBox13";
     this.textBox13.Size = new System.Drawing.Size(110, 20);
     this.textBox13.TabIndex = 228;
     //
     // superTooltip1
     //
     this.superTooltip1.DefaultTooltipSettings = new DevComponents.DotNetBar.SuperTooltipInfo("", "", "", null, null, DevComponents.DotNetBar.eTooltipColor.Gray);
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007VistaGlass;
     this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(87)))), ((int)(((byte)(154))))));
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.pnl_busqueda);
     this.panelControl2.Controls.Add(this.panelControl5);
     this.panelControl2.Controls.Add(this.dgv_color);
     this.panelControl2.Location = new System.Drawing.Point(0, 24);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(648, 473);
     this.panelControl2.TabIndex = 1;
     //
     // pnl_busqueda
     //
     this.pnl_busqueda.Controls.Add(this.btn_buscar);
     this.pnl_busqueda.Controls.Add(this.labelControl2);
     this.pnl_busqueda.Controls.Add(this.txt_versionbus);
     this.pnl_busqueda.Controls.Add(this.labelControl3);
     this.pnl_busqueda.Controls.Add(this.txt_articnamebus);
     this.pnl_busqueda.Controls.Add(this.txt_articidoldbus);
     this.pnl_busqueda.Location = new System.Drawing.Point(6, 56);
     this.pnl_busqueda.Name = "pnl_busqueda";
     this.pnl_busqueda.Size = new System.Drawing.Size(637, 44);
     this.pnl_busqueda.TabIndex = 441;
     this.pnl_busqueda.TabStop = false;
     this.pnl_busqueda.Text = "Busqueda";
     //
     // btn_buscar
     //
     this.btn_buscar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_buscar.Image = ((System.Drawing.Image)(resources.GetObject("btn_buscar.Image")));
     this.btn_buscar.Location = new System.Drawing.Point(538, 15);
     this.btn_buscar.Name = "btn_buscar";
     this.btn_buscar.Size = new System.Drawing.Size(59, 23);
     this.btn_buscar.TabIndex = 446;
     this.btn_buscar.Text = "Buscar";
     this.btn_buscar.ToolTip = "Buscar Receta";
     this.btn_buscar.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_buscar.Click += new System.EventHandler(this.btn_buscar_Click);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(421, 20);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(39, 13);
     this.labelControl2.TabIndex = 445;
     this.labelControl2.Text = "Versión:";
     //
     // txt_versionbus
     //
     this.txt_versionbus.BackColor = System.Drawing.SystemColors.Window;
     this.txt_versionbus.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_versionbus.Enabled = false;
     this.txt_versionbus.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.txt_versionbus.Location = new System.Drawing.Point(464, 17);
     this.txt_versionbus.MaxLength = 7;
     this.txt_versionbus.Name = "txt_versionbus";
     this.txt_versionbus.Size = new System.Drawing.Size(50, 20);
     this.txt_versionbus.TabIndex = 444;
     this.txt_versionbus.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(25, 19);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(40, 13);
     this.labelControl3.TabIndex = 443;
     this.labelControl3.Text = "Artículo:";
     //
     // txt_articnamebus
     //
     this.txt_articnamebus.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_articnamebus.Enabled = false;
     this.txt_articnamebus.Location = new System.Drawing.Point(120, 17);
     this.txt_articnamebus.MaxLength = 10;
     this.txt_articnamebus.Name = "txt_articnamebus";
     this.txt_articnamebus.Size = new System.Drawing.Size(292, 21);
     this.txt_articnamebus.TabIndex = 442;
     //
     // txt_articidoldbus
     //
     this.txt_articidoldbus.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_articidoldbus.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_articidoldbus.Location = new System.Drawing.Point(68, 17);
     this.txt_articidoldbus.MaxLength = 7;
     this.txt_articidoldbus.Name = "txt_articidoldbus";
     this.txt_articidoldbus.Size = new System.Drawing.Size(50, 21);
     this.txt_articidoldbus.TabIndex = 441;
     this.txt_articidoldbus.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_articidbus_KeyDown);
     //
     // panelControl5
     //
     this.panelControl5.Controls.Add(this.labelControl1);
     this.panelControl5.Controls.Add(this.txt_version);
     this.panelControl5.Controls.Add(this.labelControl20);
     this.panelControl5.Controls.Add(this.labelControl4);
     this.panelControl5.Controls.Add(this.txt_articname);
     this.panelControl5.Controls.Add(this.txt_articidold);
     this.panelControl5.Controls.Add(this.labelControl13);
     this.panelControl5.Controls.Add(this.txt_fechemi);
     this.panelControl5.Location = new System.Drawing.Point(6, 3);
     this.panelControl5.Name = "panelControl5";
     this.panelControl5.Size = new System.Drawing.Size(637, 51);
     this.panelControl5.TabIndex = 440;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(488, 6);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(35, 13);
     this.labelControl1.TabIndex = 440;
     this.labelControl1.Text = "Versión";
     //
     // txt_version
     //
     this.txt_version.BackColor = System.Drawing.Color.Yellow;
     this.txt_version.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_version.Enabled = false;
     this.txt_version.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.txt_version.Location = new System.Drawing.Point(485, 22);
     this.txt_version.MaxLength = 7;
     this.txt_version.Name = "txt_version";
     this.txt_version.Size = new System.Drawing.Size(50, 22);
     this.txt_version.TabIndex = 439;
     this.txt_version.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // labelControl20
     //
     this.labelControl20.Location = new System.Drawing.Point(131, 7);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(40, 13);
     this.labelControl20.TabIndex = 205;
     this.labelControl20.Text = "Artículo:";
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Papyrus", 16F, System.Drawing.FontStyle.Bold);
     this.labelControl4.Appearance.ForeColor = System.Drawing.Color.Teal;
     this.labelControl4.LineColor = System.Drawing.SystemColors.ActiveBorder;
     this.labelControl4.Location = new System.Drawing.Point(25, 8);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(81, 33);
     this.labelControl4.TabIndex = 438;
     this.labelControl4.Text = "Recetas";
     //
     // txt_articname
     //
     this.txt_articname.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_articname.Enabled = false;
     this.txt_articname.Location = new System.Drawing.Point(181, 23);
     this.txt_articname.MaxLength = 10;
     this.txt_articname.Name = "txt_articname";
     this.txt_articname.Size = new System.Drawing.Size(292, 21);
     this.txt_articname.TabIndex = 203;
     //
     // txt_articidold
     //
     this.txt_articidold.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_articidold.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_articidold.Location = new System.Drawing.Point(129, 23);
     this.txt_articidold.MaxLength = 7;
     this.txt_articidold.Name = "txt_articidold";
     this.txt_articidold.Size = new System.Drawing.Size(50, 21);
     this.txt_articidold.TabIndex = 202;
     this.txt_articidold.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_articidold_KeyDown);
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(544, 7);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(67, 13);
     this.labelControl13.TabIndex = 189;
     this.labelControl13.Text = "Fecha Emisión";
     //
     // txt_fechemi
     //
     this.txt_fechemi.EditValue = null;
     this.txt_fechemi.Enabled = false;
     this.txt_fechemi.Location = new System.Drawing.Point(541, 24);
     this.txt_fechemi.MenuManager = this.barManager1;
     this.txt_fechemi.Name = "txt_fechemi";
     this.txt_fechemi.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.txt_fechemi.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechemi.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechemi.Properties.CalendarTimeProperties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.F4);
     this.txt_fechemi.Properties.CalendarTimeProperties.PopupBorderStyle = DevExpress.XtraEditors.Controls.PopupBorderStyles.Default;
     this.txt_fechemi.Size = new System.Drawing.Size(84, 20);
     this.txt_fechemi.TabIndex = 188;
     //
     // dgv_color
     //
     this.dgv_color.AllowUserToAddRows = false;
     this.dgv_color.BackgroundColor = System.Drawing.Color.Teal;
     this.dgv_color.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgv_color.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colorid,
     this.colorname,
     this.talla01,
     this.talla02,
     this.talla03,
     this.talla04,
     this.talla05,
     this.talla06,
     this.talla07,
     this.talla08,
     this.talla09,
     this.talla10,
     this.talla11,
     this.talla12});
     dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle13.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle13.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     dataGridViewCellStyle13.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle13.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     dataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgv_color.DefaultCellStyle = dataGridViewCellStyle13;
     this.dgv_color.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgv_color.Location = new System.Drawing.Point(5, 101);
     this.dgv_color.Name = "dgv_color";
     this.dgv_color.ReadOnly = true;
     this.dgv_color.RowHeadersVisible = false;
     this.dgv_color.Size = new System.Drawing.Size(638, 367);
     this.dgv_color.TabIndex = 431;
     this.dgv_color.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_color_CellDoubleClick);
     //
     // colorid
     //
     this.colorid.DataPropertyName = "colorid";
     this.colorid.HeaderText = "Cod";
     this.colorid.Name = "colorid";
     this.colorid.ReadOnly = true;
     this.colorid.Width = 40;
     //
     // colorname
     //
     this.colorname.DataPropertyName = "colorname";
     this.colorname.HeaderText = "Color";
     this.colorname.Name = "colorname";
     this.colorname.ReadOnly = true;
     this.colorname.Width = 210;
     //
     // talla01
     //
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla01.DefaultCellStyle = dataGridViewCellStyle1;
     this.talla01.HeaderText = "ta01";
     this.talla01.Name = "talla01";
     this.talla01.ReadOnly = true;
     this.talla01.Width = 30;
     //
     // talla02
     //
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla02.DefaultCellStyle = dataGridViewCellStyle2;
     this.talla02.HeaderText = "ta02";
     this.talla02.Name = "talla02";
     this.talla02.ReadOnly = true;
     this.talla02.Width = 30;
     //
     // talla03
     //
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla03.DefaultCellStyle = dataGridViewCellStyle3;
     this.talla03.HeaderText = "ta03";
     this.talla03.Name = "talla03";
     this.talla03.ReadOnly = true;
     this.talla03.Width = 30;
     //
     // talla04
     //
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla04.DefaultCellStyle = dataGridViewCellStyle4;
     this.talla04.HeaderText = "ta04";
     this.talla04.Name = "talla04";
     this.talla04.ReadOnly = true;
     this.talla04.Width = 30;
     //
     // talla05
     //
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla05.DefaultCellStyle = dataGridViewCellStyle5;
     this.talla05.HeaderText = "ta05";
     this.talla05.Name = "talla05";
     this.talla05.ReadOnly = true;
     this.talla05.Width = 30;
     //
     // talla06
     //
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla06.DefaultCellStyle = dataGridViewCellStyle6;
     this.talla06.HeaderText = "ta06";
     this.talla06.Name = "talla06";
     this.talla06.ReadOnly = true;
     this.talla06.Width = 30;
     //
     // talla07
     //
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla07.DefaultCellStyle = dataGridViewCellStyle7;
     this.talla07.HeaderText = "ta07";
     this.talla07.Name = "talla07";
     this.talla07.ReadOnly = true;
     this.talla07.Width = 30;
     //
     // talla08
     //
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla08.DefaultCellStyle = dataGridViewCellStyle8;
     this.talla08.HeaderText = "ta08";
     this.talla08.Name = "talla08";
     this.talla08.ReadOnly = true;
     this.talla08.Width = 30;
     //
     // talla09
     //
     dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla09.DefaultCellStyle = dataGridViewCellStyle9;
     this.talla09.HeaderText = "ta09";
     this.talla09.Name = "talla09";
     this.talla09.ReadOnly = true;
     this.talla09.Width = 30;
     //
     // talla10
     //
     dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla10.DefaultCellStyle = dataGridViewCellStyle10;
     this.talla10.HeaderText = "ta10";
     this.talla10.Name = "talla10";
     this.talla10.ReadOnly = true;
     this.talla10.Width = 30;
     //
     // talla11
     //
     dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla11.DefaultCellStyle = dataGridViewCellStyle11;
     this.talla11.HeaderText = "ta11";
     this.talla11.Name = "talla11";
     this.talla11.ReadOnly = true;
     this.talla11.Width = 30;
     //
     // talla12
     //
     dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla12.DefaultCellStyle = dataGridViewCellStyle12;
     this.talla12.HeaderText = "ta12";
     this.talla12.Name = "talla12";
     this.talla12.ReadOnly = true;
     this.talla12.Width = 30;
     //
     // Frm_recetas
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(650, 496);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_recetas";
     this.Text = "» Frm_Recetas";
     this.Load += new System.EventHandler(this.Frm_orden_produccion_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.pnl_busqueda.ResumeLayout(false);
     this.pnl_busqueda.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
     this.panelControl5.ResumeLayout(false);
     this.panelControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechemi.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechemi.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_color)).EndInit();
     this.ResumeLayout(false);
 }
示例#57
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar3 = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainer6 = new DevComponents.DotNetBar.ItemContainer();
     this.btnQuery = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainer5 = new DevComponents.DotNetBar.ItemContainer();
     this.btnStart = new DevComponents.DotNetBar.ButtonItem();
     this.btnFinish = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar5 = new DevComponents.DotNetBar.RibbonBar();
     this.btnTest = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar4 = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainer7 = new DevComponents.DotNetBar.ItemContainer();
     this.btnShakeHand = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonTabItem1 = new DevComponents.DotNetBar.RibbonTabItem();
     this.office2007StartButton1 = new DevComponents.DotNetBar.Office2007StartButton();
     this.itemContainer1 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer2 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer3 = new DevComponents.DotNetBar.ItemContainer();
     this.btnAbout = new DevComponents.DotNetBar.ButtonItem();
     this.lblResult = new DevComponents.DotNetBar.LabelX();
     this.lblTime = new DevComponents.DotNetBar.LabelX();
     this.mainTimer = new System.Windows.Forms.Timer(this.components);
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.loadCircle = new CNPOPSOFT.Controls.LoadingCircle();
     this.logList = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     this.rackAdvTree = new DevComponents.AdvTree.AdvTree();
     this.node1 = new DevComponents.AdvTree.Node();
     this.nodeConnector1 = new DevComponents.AdvTree.NodeConnector();
     this.elementStyle1 = new DevComponents.DotNetBar.ElementStyle();
     this.panelEx3 = new DevComponents.DotNetBar.PanelEx();
     this.ribbonControl1.SuspendLayout();
     this.ribbonPanel1.SuspendLayout();
     this.panelEx1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.logList)).BeginInit();
     this.panelEx2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rackAdvTree)).BeginInit();
     this.panelEx3.SuspendLayout();
     this.SuspendLayout();
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Blue;
     //
     // buttonItem1
     //
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "buttonItem1";
     //
     // ribbonControl1
     //
     //
     //
     //
     this.ribbonControl1.BackgroundStyle.Class = "";
     this.ribbonControl1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonControl1.CaptionVisible = true;
     this.ribbonControl1.Controls.Add(this.ribbonPanel1);
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.ribbonTabItem1});
     this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl1.Location = new System.Drawing.Point(5, 1);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 2);
     this.ribbonControl1.QuickToolbarItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.office2007StartButton1});
     this.ribbonControl1.Size = new System.Drawing.Size(896, 154);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex = 0;
     this.ribbonControl1.Text = "ribbonControl1";
     //
     // ribbonPanel1
     //
     this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel1.Controls.Add(this.ribbonBar3);
     this.ribbonPanel1.Controls.Add(this.ribbonBar2);
     this.ribbonPanel1.Controls.Add(this.ribbonBar5);
     this.ribbonPanel1.Controls.Add(this.ribbonBar4);
     this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel1.Location = new System.Drawing.Point(0, 56);
     this.ribbonPanel1.Name = "ribbonPanel1";
     this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel1.Size = new System.Drawing.Size(896, 96);
     //
     //
     //
     this.ribbonPanel1.Style.Class = "";
     this.ribbonPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel1.StyleMouseDown.Class = "";
     this.ribbonPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel1.StyleMouseOver.Class = "";
     this.ribbonPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel1.TabIndex = 1;
     //
     // ribbonBar3
     //
     this.ribbonBar3.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar3.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar3.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.BackgroundStyle.Class = "";
     this.ribbonBar3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar3.ContainerControlProcessDialogKey = true;
     this.ribbonBar3.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar3.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.ribbonBar3.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer6});
     this.ribbonBar3.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.ribbonBar3.Location = new System.Drawing.Point(291, 0);
     this.ribbonBar3.Name = "ribbonBar3";
     this.ribbonBar3.Size = new System.Drawing.Size(78, 93);
     this.ribbonBar3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar3.TabIndex = 22;
     this.ribbonBar3.Text = "查询";
     //
     //
     //
     this.ribbonBar3.TitleStyle.Class = "";
     this.ribbonBar3.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.TitleStyleMouseOver.Class = "";
     this.ribbonBar3.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar3.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // itemContainer6
     //
     //
     //
     //
     this.itemContainer6.BackgroundStyle.Class = "";
     this.itemContainer6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer6.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer6.Name = "itemContainer6";
     this.itemContainer6.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnQuery});
     this.itemContainer6.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnQuery.Image = ((System.Drawing.Image)(resources.GetObject("btnQuery.Image")));
     this.btnQuery.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnQuery.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnQuery.Name = "btnQuery";
     this.btnQuery.Text = "数据查询";
     this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click);
     //
     // ribbonBar2
     //
     this.ribbonBar2.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar2.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar2.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.BackgroundStyle.Class = "";
     this.ribbonBar2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar2.ContainerControlProcessDialogKey = true;
     this.ribbonBar2.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar2.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer5,
     this.btnFinish});
     this.ribbonBar2.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.ribbonBar2.Location = new System.Drawing.Point(158, 0);
     this.ribbonBar2.Name = "ribbonBar2";
     this.ribbonBar2.Size = new System.Drawing.Size(133, 93);
     this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar2.TabIndex = 20;
     this.ribbonBar2.Text = "测试";
     //
     //
     //
     this.ribbonBar2.TitleStyle.Class = "";
     this.ribbonBar2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.TitleStyleMouseOver.Class = "";
     this.ribbonBar2.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar2.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // itemContainer5
     //
     //
     //
     //
     this.itemContainer5.BackgroundStyle.Class = "";
     this.itemContainer5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer5.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer5.Name = "itemContainer5";
     this.itemContainer5.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnStart});
     this.itemContainer5.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnStart
     //
     this.btnStart.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnStart.Image = ((System.Drawing.Image)(resources.GetObject("btnStart.Image")));
     this.btnStart.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnStart.Name = "btnStart";
     this.btnStart.Text = "开始测试";
     this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
     //
     // btnFinish
     //
     this.btnFinish.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnFinish.Image = ((System.Drawing.Image)(resources.GetObject("btnFinish.Image")));
     this.btnFinish.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnFinish.Name = "btnFinish";
     this.btnFinish.Text = "停止测试";
     this.btnFinish.Click += new System.EventHandler(this.btnFinish_Click);
     //
     // ribbonBar5
     //
     this.ribbonBar5.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar5.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar5.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar5.BackgroundStyle.Class = "";
     this.ribbonBar5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar5.ContainerControlProcessDialogKey = true;
     this.ribbonBar5.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar5.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.ribbonBar5.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnTest});
     this.ribbonBar5.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.ribbonBar5.Location = new System.Drawing.Point(76, 0);
     this.ribbonBar5.Name = "ribbonBar5";
     this.ribbonBar5.Size = new System.Drawing.Size(82, 93);
     this.ribbonBar5.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar5.TabIndex = 19;
     this.ribbonBar5.Text = "设置";
     //
     //
     //
     this.ribbonBar5.TitleStyle.Class = "";
     this.ribbonBar5.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar5.TitleStyleMouseOver.Class = "";
     this.ribbonBar5.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar5.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnTest
     //
     this.btnTest.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTest.Image = ((System.Drawing.Image)(resources.GetObject("btnTest.Image")));
     this.btnTest.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTest.Name = "btnTest";
     this.btnTest.Text = "测试预设";
     this.btnTest.Click += new System.EventHandler(this.btnTest_Click);
     //
     // ribbonBar4
     //
     this.ribbonBar4.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar4.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar4.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar4.BackgroundStyle.Class = "";
     this.ribbonBar4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar4.ContainerControlProcessDialogKey = true;
     this.ribbonBar4.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar4.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer7});
     this.ribbonBar4.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.ribbonBar4.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar4.Name = "ribbonBar4";
     this.ribbonBar4.Size = new System.Drawing.Size(73, 93);
     this.ribbonBar4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar4.TabIndex = 18;
     this.ribbonBar4.Text = "握手";
     //
     //
     //
     this.ribbonBar4.TitleStyle.Class = "";
     this.ribbonBar4.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar4.TitleStyleMouseOver.Class = "";
     this.ribbonBar4.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // itemContainer7
     //
     //
     //
     //
     this.itemContainer7.BackgroundStyle.Class = "";
     this.itemContainer7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer7.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer7.Name = "itemContainer7";
     this.itemContainer7.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnShakeHand});
     this.itemContainer7.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnShakeHand
     //
     this.btnShakeHand.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnShakeHand.Image = ((System.Drawing.Image)(resources.GetObject("btnShakeHand.Image")));
     this.btnShakeHand.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnShakeHand.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnShakeHand.Name = "btnShakeHand";
     this.btnShakeHand.Text = "开始握手";
     this.btnShakeHand.Click += new System.EventHandler(this.btnShakeHand_Click);
     //
     // ribbonTabItem1
     //
     this.ribbonTabItem1.Checked = true;
     this.ribbonTabItem1.Name = "ribbonTabItem1";
     this.ribbonTabItem1.Panel = this.ribbonPanel1;
     this.ribbonTabItem1.Text = "TSP";
     //
     // office2007StartButton1
     //
     this.office2007StartButton1.AutoExpandOnClick = true;
     this.office2007StartButton1.CanCustomize = false;
     this.office2007StartButton1.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.Image;
     this.office2007StartButton1.Image = ((System.Drawing.Image)(resources.GetObject("office2007StartButton1.Image")));
     this.office2007StartButton1.ImagePaddingHorizontal = 2;
     this.office2007StartButton1.ImagePaddingVertical = 2;
     this.office2007StartButton1.Name = "office2007StartButton1";
     this.office2007StartButton1.ShowSubItems = false;
     this.office2007StartButton1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer1});
     this.office2007StartButton1.Text = "&File";
     //
     // itemContainer1
     //
     //
     //
     //
     this.itemContainer1.BackgroundStyle.Class = "RibbonFileMenuContainer";
     this.itemContainer1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer1.Name = "itemContainer1";
     this.itemContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer2});
     //
     // itemContainer2
     //
     //
     //
     //
     this.itemContainer2.BackgroundStyle.Class = "RibbonFileMenuTwoColumnContainer";
     this.itemContainer2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer2.ItemSpacing = 0;
     this.itemContainer2.Name = "itemContainer2";
     this.itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer3});
     //
     // itemContainer3
     //
     //
     //
     //
     this.itemContainer3.BackgroundStyle.Class = "RibbonFileMenuColumnOneContainer";
     this.itemContainer3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer3.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer3.MinimumSize = new System.Drawing.Size(120, 0);
     this.itemContainer3.Name = "itemContainer3";
     this.itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnAbout});
     //
     // btnAbout
     //
     this.btnAbout.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnAbout.Image = ((System.Drawing.Image)(resources.GetObject("btnAbout.Image")));
     this.btnAbout.Name = "btnAbout";
     this.btnAbout.SubItemsExpandWidth = 24;
     this.btnAbout.Text = "关于";
     this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
     //
     // lblResult
     //
     this.lblResult.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblResult.BackgroundStyle.Class = "";
     this.lblResult.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblResult.BackgroundStyle.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.lblResult.Dock = System.Windows.Forms.DockStyle.Right;
     this.lblResult.Font = new System.Drawing.Font("宋体", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblResult.ForeColor = System.Drawing.SystemColors.ControlText;
     this.lblResult.Location = new System.Drawing.Point(720, 0);
     this.lblResult.Name = "lblResult";
     this.lblResult.SingleLineColor = System.Drawing.SystemColors.Control;
     this.lblResult.Size = new System.Drawing.Size(176, 57);
     this.lblResult.TabIndex = 21;
     this.lblResult.Text = "Preparing...";
     this.lblResult.TextAlignment = System.Drawing.StringAlignment.Center;
     //
     // lblTime
     //
     this.lblTime.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblTime.BackgroundStyle.Class = "";
     this.lblTime.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblTime.Dock = System.Windows.Forms.DockStyle.Left;
     this.lblTime.Font = new System.Drawing.Font("Calibri", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTime.Location = new System.Drawing.Point(0, 0);
     this.lblTime.Name = "lblTime";
     this.lblTime.Size = new System.Drawing.Size(174, 57);
     this.lblTime.TabIndex = 19;
     this.lblTime.Text = "00:00:00";
     //
     // mainTimer
     //
     this.mainTimer.Interval = 500;
     this.mainTimer.Tick += new System.EventHandler(this.mainTimer_Tick);
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.loadCircle);
     this.panelEx1.Controls.Add(this.logList);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location = new System.Drawing.Point(230, 155);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(671, 497);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 3;
     this.panelEx1.Text = "panelEx1";
     //
     // loadCircle
     //
     this.loadCircle.Active = false;
     this.loadCircle.Color = System.Drawing.Color.Maroon;
     this.loadCircle.InnerCircleRadius = 5;
     this.loadCircle.Location = new System.Drawing.Point(256, 180);
     this.loadCircle.Name = "loadCircle";
     this.loadCircle.NumberSpoke = 12;
     this.loadCircle.OuterCircleRadius = 11;
     this.loadCircle.RotationSpeed = 100;
     this.loadCircle.Size = new System.Drawing.Size(132, 115);
     this.loadCircle.SpokeThickness = 2;
     this.loadCircle.StylePreset = CNPOPSOFT.Controls.LoadingCircle.StylePresets.MacOSX;
     this.loadCircle.TabIndex = 1;
     this.loadCircle.Text = "loadingCircle1";
     this.loadCircle.Visible = false;
     //
     // logList
     //
     this.logList.AllowUserToAddRows = false;
     this.logList.AllowUserToDeleteRows = false;
     this.logList.AllowUserToResizeRows = false;
     this.logList.BackgroundColor = System.Drawing.Color.White;
     this.logList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.logList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1,
     this.Column2,
     this.Column3});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.logList.DefaultCellStyle = dataGridViewCellStyle1;
     this.logList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.logList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.logList.Location = new System.Drawing.Point(0, 0);
     this.logList.MultiSelect = false;
     this.logList.Name = "logList";
     this.logList.ReadOnly = true;
     this.logList.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.Info;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.logList.RowHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.logList.RowHeadersVisible = false;
     this.logList.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
     this.logList.RowTemplate.Height = 23;
     this.logList.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.logList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.logList.Size = new System.Drawing.Size(671, 497);
     this.logList.TabIndex = 0;
     //
     // Column1
     //
     this.Column1.HeaderText = "时间";
     this.Column1.Name = "Column1";
     this.Column1.ReadOnly = true;
     this.Column1.Width = 150;
     //
     // Column2
     //
     this.Column2.HeaderText = "板卡";
     this.Column2.Name = "Column2";
     this.Column2.ReadOnly = true;
     //
     // Column3
     //
     this.Column3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.Column3.HeaderText = "状态";
     this.Column3.Name = "Column3";
     this.Column3.ReadOnly = true;
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Controls.Add(this.rackAdvTree);
     this.panelEx2.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelEx2.Location = new System.Drawing.Point(5, 155);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Size = new System.Drawing.Size(225, 497);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 1;
     this.panelEx2.Text = "panelEx2";
     //
     // rackAdvTree
     //
     this.rackAdvTree.AccessibleRole = System.Windows.Forms.AccessibleRole.Outline;
     this.rackAdvTree.AllowDrop = true;
     this.rackAdvTree.BackColor = System.Drawing.SystemColors.Window;
     //
     //
     //
     this.rackAdvTree.BackgroundStyle.Class = "TreeBorderKey";
     this.rackAdvTree.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.rackAdvTree.Dock = System.Windows.Forms.DockStyle.Fill;
     this.rackAdvTree.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.rackAdvTree.Location = new System.Drawing.Point(0, 0);
     this.rackAdvTree.Name = "rackAdvTree";
     this.rackAdvTree.Nodes.AddRange(new DevComponents.AdvTree.Node[] {
     this.node1});
     this.rackAdvTree.NodesConnector = this.nodeConnector1;
     this.rackAdvTree.NodeStyle = this.elementStyle1;
     this.rackAdvTree.PathSeparator = ";";
     this.rackAdvTree.Size = new System.Drawing.Size(225, 497);
     this.rackAdvTree.Styles.Add(this.elementStyle1);
     this.rackAdvTree.TabIndex = 0;
     this.rackAdvTree.AfterCheck += new DevComponents.AdvTree.AdvTreeCellEventHandler(this.rackAdvTree_AfterCheck);
     this.rackAdvTree.AfterNodeSelect += new DevComponents.AdvTree.AdvTreeNodeEventHandler(this.rackAdvTree_AfterNodeSelect);
     //
     // node1
     //
     this.node1.Expanded = true;
     this.node1.Name = "node1";
     this.node1.Text = "node1";
     //
     // nodeConnector1
     //
     this.nodeConnector1.LineColor = System.Drawing.SystemColors.ControlText;
     //
     // elementStyle1
     //
     this.elementStyle1.Class = "";
     this.elementStyle1.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.elementStyle1.Name = "elementStyle1";
     this.elementStyle1.TextColor = System.Drawing.SystemColors.ControlText;
     //
     // panelEx3
     //
     this.panelEx3.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx3.Controls.Add(this.lblResult);
     this.panelEx3.Controls.Add(this.lblTime);
     this.panelEx3.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelEx3.Location = new System.Drawing.Point(5, 652);
     this.panelEx3.Name = "panelEx3";
     this.panelEx3.Size = new System.Drawing.Size(896, 57);
     this.panelEx3.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx3.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx3.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx3.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx3.Style.GradientAngle = 90;
     this.panelEx3.TabIndex = 0;
     //
     // FormMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(906, 711);
     this.Controls.Add(this.panelEx1);
     this.Controls.Add(this.panelEx2);
     this.Controls.Add(this.panelEx3);
     this.Controls.Add(this.ribbonControl1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize = new System.Drawing.Size(906, 711);
     this.Name = "FormMain";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "TSP硬件测试平台";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.formMain_FormClosing);
     this.Load += new System.EventHandler(this.FormMain_Load);
     this.ribbonControl1.ResumeLayout(false);
     this.ribbonControl1.PerformLayout();
     this.ribbonPanel1.ResumeLayout(false);
     this.panelEx1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.logList)).EndInit();
     this.panelEx2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.rackAdvTree)).EndInit();
     this.panelEx3.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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.lbTenGiaoVien = new DevComponents.DotNetBar.LabelX();
     this.lbSiSo = new DevComponents.DotNetBar.LabelX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.comboLop = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.dtgvHocSinh = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.STT = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.HoTen = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaHocSinh = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Lop = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.GioiTinh = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NgaySinh = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DiaChi = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Email = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.groupPanel3 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.lbNS = new DevComponents.DotNetBar.LabelX();
     this.lbGT = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.combomaHocSinh = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.btnKhongLuu = new DevComponents.DotNetBar.ButtonX();
     this.btnLuu = new DevComponents.DotNetBar.ButtonX();
     this.tbxHoTen = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.lbDiaChi = new DevComponents.DotNetBar.LabelX();
     this.tbxDiaChi = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.lbGioiTinh = new DevComponents.DotNetBar.LabelX();
     this.tbxEmail = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.lbHoTen = new DevComponents.DotNetBar.LabelX();
     this.lbNgaySinh = new DevComponents.DotNetBar.LabelX();
     this.btnDong = new DevComponents.DotNetBar.ButtonX();
     this.btnThem = new DevComponents.DotNetBar.ButtonX();
     this.btnSua = new DevComponents.DotNetBar.ButtonX();
     this.btnXoa = new DevComponents.DotNetBar.ButtonX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel1.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtgvHocSinh)).BeginInit();
     this.groupPanel3.SuspendLayout();
     this.SuspendLayout();
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.lbTenGiaoVien);
     this.groupPanel1.Controls.Add(this.lbSiSo);
     this.groupPanel1.Controls.Add(this.labelX6);
     this.groupPanel1.Controls.Add(this.comboLop);
     this.groupPanel1.Controls.Add(this.labelX2);
     this.groupPanel1.Controls.Add(this.labelX1);
     this.groupPanel1.Location = new System.Drawing.Point(2, 33);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(859, 45);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.Class = "";
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel1.StyleMouseDown.Class = "";
     this.groupPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel1.StyleMouseOver.Class = "";
     this.groupPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel1.TabIndex = 0;
     this.groupPanel1.Text = "Thông Tin Lớp";
     //
     // lbTenGiaoVien
     //
     this.lbTenGiaoVien.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbTenGiaoVien.BackgroundStyle.Class = "";
     this.lbTenGiaoVien.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbTenGiaoVien.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbTenGiaoVien.Location = new System.Drawing.Point(566, 3);
     this.lbTenGiaoVien.Name = "lbTenGiaoVien";
     this.lbTenGiaoVien.Size = new System.Drawing.Size(39, 23);
     this.lbTenGiaoVien.TabIndex = 8;
     //
     // lbSiSo
     //
     this.lbSiSo.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbSiSo.BackgroundStyle.Class = "";
     this.lbSiSo.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbSiSo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbSiSo.Location = new System.Drawing.Point(343, 3);
     this.lbSiSo.Name = "lbSiSo";
     this.lbSiSo.Size = new System.Drawing.Size(39, 23);
     this.lbSiSo.TabIndex = 7;
     //
     // labelX6
     //
     this.labelX6.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX6.Location = new System.Drawing.Point(477, 3);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(83, 23);
     this.labelX6.TabIndex = 6;
     this.labelX6.Text = "Tên Giáo Viên: ";
     //
     // comboLop
     //
     this.comboLop.DisplayMember = "Text";
     this.comboLop.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboLop.FormattingEnabled = true;
     this.comboLop.ItemHeight = 14;
     this.comboLop.Location = new System.Drawing.Point(158, 3);
     this.comboLop.Name = "comboLop";
     this.comboLop.Size = new System.Drawing.Size(58, 20);
     this.comboLop.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboLop.TabIndex = 2;
     this.comboLop.SelectedIndexChanged += new System.EventHandler(this.comboLop_SelectedIndexChanged);
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX2.Location = new System.Drawing.Point(307, 3);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(39, 23);
     this.labelX2.TabIndex = 1;
     this.labelX2.Text = "Sĩ Số: ";
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.Location = new System.Drawing.Point(124, 3);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(28, 23);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "Lớp: ";
     //
     // groupPanel2
     //
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.dtgvHocSinh);
     this.groupPanel2.Location = new System.Drawing.Point(2, 194);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(865, 198);
     //
     //
     //
     this.groupPanel2.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 1;
     this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 1;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 1;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 1;
     this.groupPanel2.Style.Class = "";
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel2.StyleMouseDown.Class = "";
     this.groupPanel2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel2.StyleMouseOver.Class = "";
     this.groupPanel2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel2.TabIndex = 2;
     this.groupPanel2.Text = "Danh Sách Học Sinh";
     //
     // dtgvHocSinh
     //
     this.dtgvHocSinh.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dtgvHocSinh.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.STT,
     this.HoTen,
     this.MaHocSinh,
     this.Lop,
     this.GioiTinh,
     this.NgaySinh,
     this.DiaChi,
     this.Email});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dtgvHocSinh.DefaultCellStyle = dataGridViewCellStyle2;
     this.dtgvHocSinh.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dtgvHocSinh.Location = new System.Drawing.Point(3, 3);
     this.dtgvHocSinh.Name = "dtgvHocSinh";
     this.dtgvHocSinh.ReadOnly = true;
     this.dtgvHocSinh.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dtgvHocSinh.Size = new System.Drawing.Size(853, 171);
     this.dtgvHocSinh.TabIndex = 1;
     //
     // STT
     //
     this.STT.DataPropertyName = "stt";
     this.STT.HeaderText = "STT";
     this.STT.Name = "STT";
     this.STT.ReadOnly = true;
     this.STT.Width = 50;
     //
     // HoTen
     //
     this.HoTen.DataPropertyName = "hoTen";
     this.HoTen.HeaderText = "Họ và Tên";
     this.HoTen.Name = "HoTen";
     this.HoTen.ReadOnly = true;
     this.HoTen.Width = 170;
     //
     // MaHocSinh
     //
     this.MaHocSinh.DataPropertyName = "maHocSinh";
     this.MaHocSinh.HeaderText = "Mã Học Sinh";
     this.MaHocSinh.Name = "MaHocSinh";
     this.MaHocSinh.ReadOnly = true;
     //
     // Lop
     //
     this.Lop.DataPropertyName = "lop";
     this.Lop.HeaderText = "Lớp";
     this.Lop.Name = "Lop";
     this.Lop.ReadOnly = true;
     this.Lop.Width = 80;
     //
     // GioiTinh
     //
     this.GioiTinh.DataPropertyName = "gioiTinh";
     this.GioiTinh.HeaderText = "Giới Tính";
     this.GioiTinh.Name = "GioiTinh";
     this.GioiTinh.ReadOnly = true;
     this.GioiTinh.Width = 80;
     //
     // NgaySinh
     //
     this.NgaySinh.DataPropertyName = "ngaySinh";
     this.NgaySinh.HeaderText = "Ngày Sinh";
     this.NgaySinh.Name = "NgaySinh";
     this.NgaySinh.ReadOnly = true;
     this.NgaySinh.Width = 80;
     //
     // DiaChi
     //
     this.DiaChi.DataPropertyName = "diaChi";
     this.DiaChi.HeaderText = "Địa Chỉ";
     this.DiaChi.Name = "DiaChi";
     this.DiaChi.ReadOnly = true;
     this.DiaChi.Width = 150;
     //
     // Email
     //
     this.Email.DataPropertyName = "email";
     this.Email.HeaderText = "Email";
     this.Email.Name = "Email";
     this.Email.ReadOnly = true;
     //
     // groupPanel3
     //
     this.groupPanel3.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel3.Controls.Add(this.lbNS);
     this.groupPanel3.Controls.Add(this.lbGT);
     this.groupPanel3.Controls.Add(this.labelX3);
     this.groupPanel3.Controls.Add(this.combomaHocSinh);
     this.groupPanel3.Controls.Add(this.labelX4);
     this.groupPanel3.Controls.Add(this.btnKhongLuu);
     this.groupPanel3.Controls.Add(this.btnLuu);
     this.groupPanel3.Controls.Add(this.tbxHoTen);
     this.groupPanel3.Controls.Add(this.lbDiaChi);
     this.groupPanel3.Controls.Add(this.tbxDiaChi);
     this.groupPanel3.Controls.Add(this.lbGioiTinh);
     this.groupPanel3.Controls.Add(this.tbxEmail);
     this.groupPanel3.Controls.Add(this.lbHoTen);
     this.groupPanel3.Controls.Add(this.lbNgaySinh);
     this.groupPanel3.Location = new System.Drawing.Point(2, 84);
     this.groupPanel3.Name = "groupPanel3";
     this.groupPanel3.Size = new System.Drawing.Size(859, 104);
     //
     //
     //
     this.groupPanel3.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel3.Style.BackColorGradientAngle = 90;
     this.groupPanel3.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel3.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderBottomWidth = 1;
     this.groupPanel3.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel3.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderLeftWidth = 1;
     this.groupPanel3.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderRightWidth = 1;
     this.groupPanel3.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderTopWidth = 1;
     this.groupPanel3.Style.Class = "";
     this.groupPanel3.Style.CornerDiameter = 4;
     this.groupPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel3.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel3.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel3.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel3.StyleMouseDown.Class = "";
     this.groupPanel3.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel3.StyleMouseOver.Class = "";
     this.groupPanel3.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel3.TabIndex = 3;
     this.groupPanel3.Text = "Thông Tin Học Sinh";
     //
     // lbNS
     //
     this.lbNS.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbNS.BackgroundStyle.Class = "";
     this.lbNS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbNS.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbNS.Location = new System.Drawing.Point(98, 32);
     this.lbNS.Name = "lbNS";
     this.lbNS.Size = new System.Drawing.Size(126, 23);
     this.lbNS.TabIndex = 34;
     //
     // lbGT
     //
     this.lbGT.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbGT.BackgroundStyle.Class = "";
     this.lbGT.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbGT.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbGT.Location = new System.Drawing.Point(611, -3);
     this.lbGT.Name = "lbGT";
     this.lbGT.Size = new System.Drawing.Size(51, 23);
     this.lbGT.TabIndex = 33;
     //
     // labelX3
     //
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX3.Location = new System.Drawing.Point(538, 29);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(45, 23);
     this.labelX3.TabIndex = 32;
     this.labelX3.Text = "Email: ";
     //
     // combomaHocSinh
     //
     this.combomaHocSinh.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.combomaHocSinh.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.combomaHocSinh.DisplayMember = "Text";
     this.combomaHocSinh.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.combomaHocSinh.FormattingEnabled = true;
     this.combomaHocSinh.ItemHeight = 14;
     this.combomaHocSinh.Location = new System.Drawing.Point(98, 3);
     this.combomaHocSinh.Name = "combomaHocSinh";
     this.combomaHocSinh.Size = new System.Drawing.Size(126, 20);
     this.combomaHocSinh.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.combomaHocSinh.TabIndex = 31;
     this.combomaHocSinh.SelectedIndexChanged += new System.EventHandler(this.combomaHocSinh_SelectedIndexChanged);
     //
     // labelX4
     //
     this.labelX4.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX4.Location = new System.Drawing.Point(13, 5);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(75, 23);
     this.labelX4.TabIndex = 30;
     this.labelX4.Text = "Mã Học Sinh: ";
     //
     // btnKhongLuu
     //
     this.btnKhongLuu.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnKhongLuu.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnKhongLuu.Enabled = false;
     this.btnKhongLuu.Location = new System.Drawing.Point(757, 58);
     this.btnKhongLuu.Name = "btnKhongLuu";
     this.btnKhongLuu.Size = new System.Drawing.Size(75, 23);
     this.btnKhongLuu.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnKhongLuu.TabIndex = 27;
     this.btnKhongLuu.Text = "Không Lưu";
     this.btnKhongLuu.Click += new System.EventHandler(this.btnKhongLuu_Click);
     //
     // btnLuu
     //
     this.btnLuu.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnLuu.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnLuu.Enabled = false;
     this.btnLuu.Location = new System.Drawing.Point(638, 58);
     this.btnLuu.Name = "btnLuu";
     this.btnLuu.Size = new System.Drawing.Size(75, 23);
     this.btnLuu.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnLuu.TabIndex = 26;
     this.btnLuu.Text = "Lưu";
     this.btnLuu.Click += new System.EventHandler(this.btnLuu_Click);
     //
     // tbxHoTen
     //
     //
     //
     //
     this.tbxHoTen.Border.Class = "TextBoxBorder";
     this.tbxHoTen.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.tbxHoTen.Location = new System.Drawing.Point(297, 6);
     this.tbxHoTen.Name = "tbxHoTen";
     this.tbxHoTen.ReadOnly = true;
     this.tbxHoTen.Size = new System.Drawing.Size(206, 20);
     this.tbxHoTen.TabIndex = 25;
     //
     // lbDiaChi
     //
     this.lbDiaChi.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbDiaChi.BackgroundStyle.Class = "";
     this.lbDiaChi.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbDiaChi.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbDiaChi.Location = new System.Drawing.Point(230, 32);
     this.lbDiaChi.Name = "lbDiaChi";
     this.lbDiaChi.Size = new System.Drawing.Size(45, 23);
     this.lbDiaChi.TabIndex = 21;
     this.lbDiaChi.Text = "Địa Chỉ:";
     //
     // tbxDiaChi
     //
     //
     //
     //
     this.tbxDiaChi.Border.Class = "TextBoxBorder";
     this.tbxDiaChi.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.tbxDiaChi.Location = new System.Drawing.Point(296, 35);
     this.tbxDiaChi.Name = "tbxDiaChi";
     this.tbxDiaChi.ReadOnly = true;
     this.tbxDiaChi.Size = new System.Drawing.Size(207, 20);
     this.tbxDiaChi.TabIndex = 23;
     //
     // lbGioiTinh
     //
     this.lbGioiTinh.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbGioiTinh.BackgroundStyle.Class = "";
     this.lbGioiTinh.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbGioiTinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbGioiTinh.Location = new System.Drawing.Point(538, -3);
     this.lbGioiTinh.Name = "lbGioiTinh";
     this.lbGioiTinh.Size = new System.Drawing.Size(51, 23);
     this.lbGioiTinh.TabIndex = 24;
     this.lbGioiTinh.Text = "Giới Tính:";
     //
     // tbxEmail
     //
     //
     //
     //
     this.tbxEmail.Border.Class = "TextBoxBorder";
     this.tbxEmail.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.tbxEmail.Location = new System.Drawing.Point(611, 32);
     this.tbxEmail.Name = "tbxEmail";
     this.tbxEmail.ReadOnly = true;
     this.tbxEmail.Size = new System.Drawing.Size(122, 20);
     this.tbxEmail.TabIndex = 22;
     //
     // lbHoTen
     //
     this.lbHoTen.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbHoTen.BackgroundStyle.Class = "";
     this.lbHoTen.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbHoTen.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbHoTen.Location = new System.Drawing.Point(230, 3);
     this.lbHoTen.Name = "lbHoTen";
     this.lbHoTen.Size = new System.Drawing.Size(61, 23);
     this.lbHoTen.TabIndex = 17;
     this.lbHoTen.Text = "Họ và Tên";
     //
     // lbNgaySinh
     //
     this.lbNgaySinh.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbNgaySinh.BackgroundStyle.Class = "";
     this.lbNgaySinh.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbNgaySinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbNgaySinh.Location = new System.Drawing.Point(13, 34);
     this.lbNgaySinh.Name = "lbNgaySinh";
     this.lbNgaySinh.Size = new System.Drawing.Size(61, 23);
     this.lbNgaySinh.TabIndex = 20;
     this.lbNgaySinh.Text = "Ngày Sinh";
     //
     // btnDong
     //
     this.btnDong.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnDong.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnDong.Location = new System.Drawing.Point(792, 398);
     this.btnDong.Name = "btnDong";
     this.btnDong.Size = new System.Drawing.Size(75, 23);
     this.btnDong.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnDong.TabIndex = 23;
     this.btnDong.Text = "Đóng";
     this.btnDong.Click += new System.EventHandler(this.btnDong_Click);
     //
     // btnThem
     //
     this.btnThem.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnThem.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnThem.Location = new System.Drawing.Point(276, 398);
     this.btnThem.Name = "btnThem";
     this.btnThem.Size = new System.Drawing.Size(75, 23);
     this.btnThem.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnThem.TabIndex = 20;
     this.btnThem.Text = "Thêm";
     this.btnThem.Click += new System.EventHandler(this.btnThem_Click);
     //
     // btnSua
     //
     this.btnSua.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnSua.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnSua.Location = new System.Drawing.Point(462, 398);
     this.btnSua.Name = "btnSua";
     this.btnSua.Size = new System.Drawing.Size(75, 23);
     this.btnSua.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnSua.TabIndex = 22;
     this.btnSua.Text = "Sửa";
     this.btnSua.Click += new System.EventHandler(this.btnSua_Click);
     //
     // btnXoa
     //
     this.btnXoa.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnXoa.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnXoa.Location = new System.Drawing.Point(366, 398);
     this.btnXoa.Name = "btnXoa";
     this.btnXoa.Size = new System.Drawing.Size(75, 23);
     this.btnXoa.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnXoa.TabIndex = 21;
     this.btnXoa.Text = "Xóa";
     this.btnXoa.Click += new System.EventHandler(this.btnXoa_Click);
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX5.Location = new System.Drawing.Point(268, 4);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(249, 23);
     this.labelX5.TabIndex = 26;
     this.labelX5.Text = "Lập Danh Sách Lớp";
     //
     // frmLapDanhSachLop
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(879, 426);
     this.Controls.Add(this.labelX5);
     this.Controls.Add(this.btnDong);
     this.Controls.Add(this.btnThem);
     this.Controls.Add(this.btnSua);
     this.Controls.Add(this.btnXoa);
     this.Controls.Add(this.groupPanel3);
     this.Controls.Add(this.groupPanel2);
     this.Controls.Add(this.groupPanel1);
     this.DoubleBuffered = true;
     this.Name = "frmLapDanhSachLop";
     this.Text = "Lập Danh Sách Lớp";
     this.Load += new System.EventHandler(this.frmLapDanhSachLop_Load);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dtgvHocSinh)).EndInit();
     this.groupPanel3.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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.btnClose = new DevComponents.DotNetBar.ButtonX();
     this.btnCopy = new DevComponents.DotNetBar.ButtonX();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.grdProgramPlanList = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.colID = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colGrade_year = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.grdProgramPlanList)).BeginInit();
     this.SuspendLayout();
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.HeaderText = "系統編號";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly = true;
     this.dataGridViewTextBoxColumn1.Visible = false;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(9, 396);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(194, 56);
     this.labelX1.TabIndex = 7;
     this.labelX1.Text = "黃色為重覆班級\r\n請選擇所要複製班級\r\n複製時,您可選擇覆蓋或略過。";
     //
     // btnClose
     //
     this.btnClose.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnClose.BackColor = System.Drawing.Color.Transparent;
     this.btnClose.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.Location = new System.Drawing.Point(309, 423);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 25);
     this.btnClose.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnClose.TabIndex = 6;
     this.btnClose.Text = "關閉";
     //
     // btnCopy
     //
     this.btnCopy.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnCopy.BackColor = System.Drawing.Color.Transparent;
     this.btnCopy.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnCopy.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnCopy.Location = new System.Drawing.Point(196, 423);
     this.btnCopy.Name = "btnCopy";
     this.btnCopy.Size = new System.Drawing.Size(107, 25);
     this.btnCopy.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnCopy.TabIndex = 5;
     this.btnCopy.Text = "複製所選(0)";
     this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn2.DefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewTextBoxColumn2.HeaderText = "課程規劃名稱";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     this.dataGridViewTextBoxColumn2.ReadOnly = true;
     //
     // grdProgramPlanList
     //
     this.grdProgramPlanList.AllowUserToAddRows = false;
     this.grdProgramPlanList.AllowUserToDeleteRows = false;
     this.grdProgramPlanList.AllowUserToResizeRows = false;
     this.grdProgramPlanList.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.grdProgramPlanList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.grdProgramPlanList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdProgramPlanList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colID,
     this.colName,
     this.colGrade_year});
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle4.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdProgramPlanList.DefaultCellStyle = dataGridViewCellStyle4;
     this.grdProgramPlanList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.grdProgramPlanList.Location = new System.Drawing.Point(9, 9);
     this.grdProgramPlanList.Name = "grdProgramPlanList";
     this.grdProgramPlanList.ReadOnly = true;
     this.grdProgramPlanList.RowTemplate.Height = 24;
     this.grdProgramPlanList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdProgramPlanList.Size = new System.Drawing.Size(375, 381);
     this.grdProgramPlanList.TabIndex = 4;
     this.grdProgramPlanList.SelectionChanged += new System.EventHandler(this.grdProgramPlanList_SelectionChanged);
     //
     // colID
     //
     this.colID.HeaderText = "系統編號";
     this.colID.Name = "colID";
     this.colID.ReadOnly = true;
     this.colID.Visible = false;
     //
     // colName
     //
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     this.colName.DefaultCellStyle = dataGridViewCellStyle3;
     this.colName.HeaderText = "班級名稱";
     this.colName.Name = "colName";
     this.colName.ReadOnly = true;
     this.colName.Width = 220;
     //
     // colGrade_year
     //
     this.colGrade_year.HeaderText = "年級";
     this.colGrade_year.Name = "colGrade_year";
     this.colGrade_year.ReadOnly = true;
     //
     // GetClassListForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(393, 461);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.btnCopy);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.grdProgramPlanList);
     this.Name = "GetClassListForm";
     this.Text = "複製班級清單";
     this.Load += new System.EventHandler(this.GetClassListForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grdProgramPlanList)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#60
0
 /// <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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Tipo_Tarifa));
     this.dgvTipoTarifas = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.txtDescripcion = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtNombre = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.txtMontoAnual = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.superValidator1 = new DevComponents.DotNetBar.Validator.SuperValidator();
     this.requiredFieldValidator1 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Campo requerido.");
     this.requiredFieldValidator2 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Campo requerido.");
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.highlighter1 = new DevComponents.DotNetBar.Validator.Highlighter();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.cADINDataSet = new Sistema_De_Administracion_De_Servicios.CADINDataSet();
     this.tipo_TarifaBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.tipo_TarifaTableAdapter = new Sistema_De_Administracion_De_Servicios.CADINDataSetTableAdapters.Tipo_TarifaTableAdapter();
     this.tableAdapterManager = new Sistema_De_Administracion_De_Servicios.CADINDataSetTableAdapters.TableAdapterManager();
     ((System.ComponentModel.ISupportInitialize)(this.dgvTipoTarifas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cADINDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipo_TarifaBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // dgvTipoTarifas
     //
     this.dgvTipoTarifas.AllowUserToAddRows = false;
     this.dgvTipoTarifas.AllowUserToDeleteRows = false;
     this.dgvTipoTarifas.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgvTipoTarifas.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgvTipoTarifas.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dgvTipoTarifas.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.White;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgvTipoTarifas.DefaultCellStyle = dataGridViewCellStyle2;
     this.dgvTipoTarifas.EnableHeadersVisualStyles = false;
     this.dgvTipoTarifas.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgvTipoTarifas.Location = new System.Drawing.Point(35, 189);
     this.dgvTipoTarifas.MultiSelect = false;
     this.dgvTipoTarifas.Name = "dgvTipoTarifas";
     this.dgvTipoTarifas.ReadOnly = true;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgvTipoTarifas.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.dgvTipoTarifas.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvTipoTarifas.Size = new System.Drawing.Size(470, 150);
     this.dgvTipoTarifas.TabIndex = 1;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(35, 111);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 23);
     this.labelX2.TabIndex = 13;
     this.labelX2.Text = "Descripcion :";
     //
     // txtDescripcion
     //
     this.txtDescripcion.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtDescripcion.Border.Class = "TextBoxBorder";
     this.txtDescripcion.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtDescripcion.ForeColor = System.Drawing.Color.Black;
     this.txtDescripcion.Location = new System.Drawing.Point(116, 110);
     this.txtDescripcion.Multiline = true;
     this.txtDescripcion.Name = "txtDescripcion";
     this.txtDescripcion.ReadOnly = true;
     this.txtDescripcion.Size = new System.Drawing.Size(271, 64);
     this.txtDescripcion.TabIndex = 4;
     //
     // txtNombre
     //
     this.txtNombre.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtNombre.Border.Class = "TextBoxBorder";
     this.txtNombre.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtNombre.ForeColor = System.Drawing.Color.Black;
     this.txtNombre.Location = new System.Drawing.Point(116, 58);
     this.txtNombre.MaxLength = 50;
     this.txtNombre.Name = "txtNombre";
     this.txtNombre.ReadOnly = true;
     this.txtNombre.Size = new System.Drawing.Size(147, 20);
     this.txtNombre.TabIndex = 2;
     this.superValidator1.SetValidator1(this.txtNombre, this.requiredFieldValidator1);
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(35, 55);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
     this.labelX1.TabIndex = 10;
     this.labelX1.Text = "Nombre :";
     //
     // txtMontoAnual
     //
     this.txtMontoAnual.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtMontoAnual.Border.Class = "TextBoxBorder";
     this.txtMontoAnual.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtMontoAnual.ForeColor = System.Drawing.Color.Black;
     this.txtMontoAnual.Location = new System.Drawing.Point(116, 84);
     this.txtMontoAnual.MaxLength = 5;
     this.txtMontoAnual.Name = "txtMontoAnual";
     this.txtMontoAnual.ReadOnly = true;
     this.txtMontoAnual.Size = new System.Drawing.Size(79, 20);
     this.txtMontoAnual.TabIndex = 3;
     this.superValidator1.SetValidator1(this.txtMontoAnual, this.requiredFieldValidator2);
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(35, 81);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(75, 23);
     this.labelX3.Style = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
     this.labelX3.TabIndex = 15;
     this.labelX3.Text = "Monto Anual :";
     //
     // superValidator1
     //
     this.superValidator1.ContainerControl = this;
     this.superValidator1.ErrorProvider = this.errorProvider1;
     this.superValidator1.Highlighter = this.highlighter1;
     //
     // requiredFieldValidator1
     //
     this.requiredFieldValidator1.ErrorMessage = "Campo requerido.";
     this.requiredFieldValidator1.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // requiredFieldValidator2
     //
     this.requiredFieldValidator2.ErrorMessage = "Campo requerido.";
     this.requiredFieldValidator2.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // highlighter1
     //
     this.highlighter1.ContainerControl = this;
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX4.Location = new System.Drawing.Point(183, 17);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(175, 23);
     this.labelX4.TabIndex = 16;
     this.labelX4.Text = "TIPOS DE TARIFAS";
     //
     // cADINDataSet
     //
     this.cADINDataSet.DataSetName = "CADINDataSet";
     this.cADINDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // tipo_TarifaBindingSource
     //
     this.tipo_TarifaBindingSource.DataMember = "Tipo_Tarifa";
     this.tipo_TarifaBindingSource.DataSource = this.cADINDataSet;
     //
     // tipo_TarifaTableAdapter
     //
     this.tipo_TarifaTableAdapter.ClearBeforeFill = true;
     //
     // tableAdapterManager
     //
     this.tableAdapterManager.ActividadesTableAdapter = null;
     this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
     this.tableAdapterManager.CasoTableAdapter = null;
     this.tableAdapterManager.ComunicacionTableAdapter = null;
     this.tableAdapterManager.Contacto_EmpresaTableAdapter = null;
     this.tableAdapterManager.DepartamentosTableAdapter = null;
     this.tableAdapterManager.Empresa_AgrupacionTableAdapter = null;
     this.tableAdapterManager.EmpresaTableAdapter = null;
     this.tableAdapterManager.MensajeTableAdapter = null;
     this.tableAdapterManager.Pago_MembresiaTableAdapter = null;
     this.tableAdapterManager.ReciboTableAdapter = null;
     this.tableAdapterManager.SectoresTableAdapter = null;
     this.tableAdapterManager.Solicitud_ApoyoTableAdapter = null;
     this.tableAdapterManager.Tipo_ActividadTableAdapter = null;
     this.tableAdapterManager.Tipo_EmpresaTableAdapter = null;
     this.tableAdapterManager.Tipo_MembresiaTableAdapter = null;
     this.tableAdapterManager.Tipo_TarifaTableAdapter = this.tipo_TarifaTableAdapter;
     this.tableAdapterManager.UpdateOrder = Sistema_De_Administracion_De_Servicios.CADINDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
     this.tableAdapterManager.UsuarioTableAdapter = null;
     //
     // Tipo_Tarifa
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.labelX4);
     this.Controls.Add(this.txtMontoAnual);
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.dgvTipoTarifas);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.txtDescripcion);
     this.Controls.Add(this.txtNombre);
     this.Controls.Add(this.labelX1);
     this.Name = "Tipo_Tarifa";
     this.Size = new System.Drawing.Size(557, 684);
     this.Load += new System.EventHandler(this.Tipo_Tarifa_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgvTipoTarifas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cADINDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipo_TarifaBindingSource)).EndInit();
     this.ResumeLayout(false);
 }