示例#1
0
        public override void OnCreate(Plugin.Application.IApplicationRef hook)
        {
            _hook = hook as Plugin.Application.IAppFormRef;

            if (_hook == null)
            {
                return;
            }
            ModData.v_AppFileDB = new Plugin.Application.AppFileDB(_hook.MainForm, _hook.ControlContainer, _hook.SystemXml, _hook.DataTreeXml, _hook.DatabaseInfoXml, _hook.ColParsePlugin, _hook.ImageResPath);

            _ControlFileDBTool = new UserControlFileDBTool(this.Name, this.Caption);

            _ControlFileDBTool.Show();

            _hook.MainForm.Controls.Add(_ControlFileDBTool);
            _hook.MainForm.Controls.Add(ModData.v_AppFileDB.StatusBar);
            _hook.MainForm.FormClosing        += new System.Windows.Forms.FormClosingEventHandler(MainForm_FormClosing);
            _ControlFileDBTool.EnabledChanged += new EventHandler(_ControlFileDBTool_EnabledChanged);  // Enable事件,用来触发数据库工程树图界面的初始化

            ModData.v_AppFileDB.RefScaleCmb.SelectedIndexChanged += new EventHandler(RefScaleCmb_SelectedIndexChanged);
            ModData.v_AppFileDB.CurScaleCmb.SelectedIndexChanged += new EventHandler(CurScaleCmb_SelectedIndexChanged);

            //添加回车事件自定义比例尺
            DevComponents.DotNetBar.Controls.ComboBoxEx vComboEx = ModData.v_AppFileDB.CurScaleCmb.ComboBoxEx;
            vComboEx.KeyDown += new KeyEventHandler(vComboEx_KeyDown);
        }
示例#2
0
 public FrmLabelExpression(DevComponents.DotNetBar.Controls.ComboBoxEx cmbbox, ILayer layer)
 {
     InitializeComponent();
     this.EnableGlass = false;
     cmbboxexp        = cmbbox;
     pLayer           = layer;
 }
示例#3
0
        //响应回车时间 改变当前显示比例尺
        void vComboEx_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.KeyCode != Keys.Enter)
            {
                return;
            }

            DevComponents.DotNetBar.Controls.ComboBoxEx vComboEx = sender as DevComponents.DotNetBar.Controls.ComboBoxEx;
            string strScale = vComboEx.Text;
            double dblSacle = 0;

            try
            {
                if (double.TryParse(strScale, out dblSacle))
                {
                    ModData.v_AppGisUpdate.MapControl.Map.MapScale = dblSacle;
                    ModData.v_AppGisUpdate.MapControl.ActiveView.Refresh();
                }
                else
                {
                    vComboEx.Text = ModData.v_AppGisUpdate.MapControl.Map.MapScale.ToString();
                }
            }
            catch
            {
            }
        }
示例#4
0
        public override void OnClick()
        {
            Exception eError;

            if (ucCtl == null)
            {
                ucCtl                = new SubControl.UCDataSourceManger(_hook as Plugin.Application.IAppFormRef);
                ucCtl.Dock           = DockStyle.Fill;
                ucCtl.m_TmpWorkSpace = _hook.TempWksInfo.Wks;

                _hook.MainForm.Controls.Add(ucCtl);
            }
            else
            {
                ucCtl.RefreshLayerTree();
            }
            if (this.WriteLog)
            {
                Plugin.LogTable.Writelog(Caption);//xisheng 2011.07.09 增加日志
            }
            ucCtl.Enabled = true;
            ucCtl.Visible = true;
            _hook.MainForm.Controls.SetChildIndex(ucCtl, 0);


            _hook.CurScaleCmb.SelectedIndexChanged += new EventHandler(CurScaleCmb_SelectedIndexChanged);

            //添加回车事件自定义比例尺
            DevComponents.DotNetBar.Controls.ComboBoxEx vComboEx = _hook.CurScaleCmb.ComboBoxEx;
            vComboEx.KeyDown += new KeyEventHandler(vComboEx_KeyDown);
        }
示例#5
0
        /// <summary>
        /// The purpose of this event is to shorten the string displayed on the ComboBoxEx
        /// and restore the removed details when a new item is selected.
        ///
        /// cboxxSender.Tag: Stores descriptive string.
        /// cboxxSender.MaxLength: Stores index for previously selected value.
        /// </summary>
        private void comboBoxEx_SelectionChangeCommitted(object sender, EventArgs e)
        {
            DevComponents.DotNetBar.Controls.ComboBoxEx cboxxSender = (sender as DevComponents.DotNetBar.Controls.ComboBoxEx);

            // Restore descriptive text to previously selected item.
            if (cboxxSender.Tag != null)
            {
                if (!cboxxSender.Tag.ToString().Equals(String.Empty))
                {
                    if (cboxxSender.MaxLength > -1 && cboxxSender.MaxLength < cboxxSender.Items.Count) // If oldIndex is in bounds.
                    {
                        if (!cboxxSender.Items[cboxxSender.MaxLength].ToString().Contains("-"))        // If the item does not already have a descriptive string.
                        {
                            (cboxxSender.Items[cboxxSender.MaxLength]) += cboxxSender.Tag.ToString();  // Restore text.
                        }
                    }
                }
            }

            // Backup excess text to temp variable.
            string currentText     = (cboxxSender.Items[cboxxSender.SelectedIndex] as string);
            int    dividerLocation = currentText.IndexOf('-');

            cboxxSender.Tag = currentText.Substring(dividerLocation - 1);

            // Remove excess text.
            cboxxSender.Items[cboxxSender.SelectedIndex] = currentText.Substring(0, (currentText.IndexOf('-') - 1));
            cboxxSender.Refresh();

            cboxxSender.MaxLength = cboxxSender.SelectedIndex; // Backup latest selection value.
        }
示例#6
0
 public static void AdderComvbox <T>(DevComponents.DotNetBar.Controls.ComboBoxEx ComboEx, List <T> Class)
 {
     foreach (IaddName DD in Class)
     {
         ComboEx.Items.Add(DD.RetunNameString());
     }
 }
示例#7
0
        //响应回车时间 改变当前显示比例尺
        void vComboEx_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.KeyCode != Keys.Enter)
            {
                return;
            }

            DevComponents.DotNetBar.Controls.ComboBoxEx vComboEx = sender as DevComponents.DotNetBar.Controls.ComboBoxEx;
            string strScale = vComboEx.Text;
            double dblSacle = 0;

            Plugin.Application.IAppDBIntegraRef pDBIntegraRef = _hook as Plugin.Application.IAppDBIntegraRef;
            try
            {
                if (double.TryParse(strScale, out dblSacle))
                {
                    pDBIntegraRef.MapControl.Map.MapScale = dblSacle;
                    pDBIntegraRef.MapControl.ActiveView.Refresh();
                }
                else
                {
                    vComboEx.Text = pDBIntegraRef.MapControl.Map.MapScale.ToString();
                }
            }
            catch
            {
            }
        }
示例#8
0
        private void ChangeSymbol(DevComponents.DotNetBar.Controls.ComboBoxEx cmb, Color pColor, esriSymbologyStyleClass styleClass)
        {
            try
            {
                DevComponents.Editors.ComboItem item = cmb.SelectedItem as DevComponents.Editors.ComboItem;
                object obj = item.Tag;
                if (obj == null)
                {
                    return;
                }
                IFrameDecoration pFrameDecoration = (IFrameDecoration)obj;
                IRgbColor        pRgbColor        = new RgbColorClass();
                pRgbColor.Red   = pColor.R;
                pRgbColor.Green = pColor.G;
                pRgbColor.Blue  = pColor.B;

                pFrameDecoration.Color = (IColor)pRgbColor;
                IStyleGalleryItem pItem = new ServerStyleGalleryItemClass();
                pItem.Name = "temp";
                pItem.Item = pFrameDecoration;
                stdole.IPictureDisp  picture;
                System.Drawing.Image image;

                ISymbologyStyleClass symbologyStyleClass = axSymbologyControl1.GetStyleClass(styleClass);
                picture    = symbologyStyleClass.PreviewItem(pItem, cmb.Width - 80, cmb.Height);
                image      = System.Drawing.Image.FromHbitmap(new System.IntPtr(picture.Handle));
                item.Image = image;
            }
            catch
            {
            }
        }
示例#9
0
 private void InitLayerReference(IMapControl3 mapControl, DevComponents.DotNetBar.Controls.ComboBoxEx cmb)
 {
     cmb.Items.Clear();
     for (int i = 0; i < mapControl.Map.LayerCount; i++)
     {
         ILayer pLayer = mapControl.Map.Layer[i];
         if (pLayer is IFeatureLayer)
         {
             IFeatureLayer pFLayer = pLayer as IFeatureLayer;
             IFeatureClass pFClass = pFLayer.FeatureClass;
             if (pFClass.ShapeType == esriGeometryType.esriGeometryMultipoint || pFClass.ShapeType == esriGeometryType.esriGeometryPoint || pFClass.ShapeType == esriGeometryType.esriGeometryLine ||
                 pFClass.ShapeType == esriGeometryType.esriGeometryPolyline || pFClass.ShapeType == esriGeometryType.esriGeometryPolygon)
             {
                 cmb.Items.Add(pLayer.Name);
             }
         }
         else if (pLayer is IRasterLayer)
         {
             cmb.Items.Add(pLayer.Name);
         }
     }
     if (cmb.Items.Count > 0)
     {
         cmb.SelectedIndex = 0;
     }
 }
示例#10
0
 private void comboBoxRoadLayer_DropDown(object sender, EventArgs e)
 {
     this.groupPanelRoad.Controls.Add(panelExTreeLayer);
     panelExTreeLayer.Location = new Point(comboBoxRoadLayer.Location.X, comboBoxRoadLayer.Location.Y);
     panelExTreeLayer.Visible  = true;
     panelExTreeLayer.BringToFront();
     _CurCombox = comboBoxRoadLayer;
 }
        public void HienthinvCombobox(DevComponents.DotNetBar.Controls.ComboBoxEx cmb)
        {
            DataTable tbl = data.DanhsachNhanVien();

            cmb.DataSource    = tbl;
            cmb.DisplayMember = "HOTEN";
            cmb.ValueMember   = "MANV";
        }
        public void HienThiPhongBanComBoBox(DevComponents.DotNetBar.Controls.ComboBoxEx cmb)
        {
            string[]  Fisrt = { "%", "Tất Cả" };
            DataTable tbl   = data_pb.DanhsachPhongBan();

            tbl.Rows.Add(Fisrt);
            cmb.DataSource    = tbl;
            cmb.DisplayMember = "TENPB";
            cmb.ValueMember   = "MAPB";
        }
示例#13
0
        public void StokAltGoster(DevComponents.DotNetBar.Controls.ComboBoxEx cmBox_AraAGrup, DevComponents.DotNetBar.Controls.DataGridViewX dGView_Stok)
        {
            baglanti.Open();
            adap = new SqlDataAdapter("SELECT * FROM StokList WHERE AltGrup=@AG;", baglanti);
            adap.SelectCommand.Parameters.Add("AG", cmBox_AraAGrup.SelectedItem.ToString());
            DataSet ds = new DataSet();

            adap.Fill(ds, "CariSuzme");
            dGView_Stok.DataSource = ds.Tables["CariSuzme"];
            adap.Dispose();
            baglanti.Close();
        }
示例#14
0
        public void KasaParaGoster(DevComponents.DotNetBar.Controls.ComboBoxEx cmBox_araPbirim, DevComponents.DotNetBar.Controls.DataGridViewX dGView_Kasa)
        {
            baglanti.Open();
            adap = new SqlDataAdapter("SELECT * FROM KasaList WHERE ParaBirimi=@PB", baglanti);
            adap.SelectCommand.Parameters.Add("PB", cmBox_araPbirim.SelectedItem.ToString());
            DataSet ds = new DataSet();

            adap.Fill(ds, "Veriler2");
            dGView_Kasa.DataSource = ds.Tables["Veriler2"];
            adap.Dispose();
            baglanti.Close();
        }
示例#15
0
 private void ComboKeyDown(object sender, KeyEventArgs e)
 {
     if (e.KeyCode == Keys.Enter)
     {
         DevComponents.DotNetBar.Controls.ComboBoxEx cbo = sender as DevComponents.DotNetBar.Controls.ComboBoxEx;
         // Remember in combo box
         m_RecordRecentlyUsed = true;
         // Try to navigate to that location
         object o = null;
         axWebBrowser1.Navigate(cbo.Text, ref o, ref o, ref o, ref o);
     }
 }
示例#16
0
        public static void AdderComvbox(DevComponents.DotNetBar.Controls.ComboBoxEx ComboEx, List <NameTeamType> mo, List <NameTeam> mo1)
        {
            var fe = from s in mo1
                     join e in mo
                     on s.NameTeamType_Id equals e.id
                     select new { e.TypeOfTeam, s.nameOftame };

            foreach (var strin in fe)
            {
                ComboEx.Items.Add(strin.TypeOfTeam + " - " + strin.nameOftame);
            }
        }
 private void FormatCombox(ref DevComponents.DotNetBar.Controls.ComboBoxEx cb)
 {
     cb.Items.Add("0");
     cb.Text   = "0";
     cb.Leave += new EventHandler(Combox_TextChanged);
     cb.SelectedIndexChanged += new EventHandler(Combox_TextChanged);
     cb.Visible       = false;
     cb.DropDownStyle = ComboBoxStyle.DropDownList;
     cb.Font          = new System.Drawing.Font("宋体", 15F);
     cb.BackColor     = Color.AliceBlue;
     cb.Style         = DevComponents.DotNetBar.eDotNetBarStyle.Office2013;
 }
示例#18
0
        public void LoadMxd(DevComponents.DotNetBar.Controls.ComboBoxEx cmbbox, string FileDir)
        {
            DirectoryInfo dri = new DirectoryInfo(FileDir);

            foreach (FileInfo NextFile in dri.GetFiles())
            {
                if (NextFile.Extension.ToUpper().Equals(".MXD"))
                {
                    cmbbox.Items.Add(NextFile.Name);
                }
            }
        }
示例#19
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();
        }
示例#20
0
        public void StokAltDoldur(DevComponents.DotNetBar.Controls.ComboBoxEx cmBox_AraAGrup)
        {
            baglanti.Open();
            cmd = new SqlCommand("SELECT Urungrubu FROM AltGrup", baglanti);
            SqlDataReader oku = cmd.ExecuteReader();

            while (oku.Read())
            {
                cmBox_AraAGrup.Items.Add(oku["Urungrubu"]);
            }
            oku.Close();
            cmd.Dispose();
            baglanti.Close();
        }
示例#21
0
        public void KDVgoster(DevComponents.DotNetBar.Controls.ComboBoxEx cmBox_KDV)
        {
            baglanti.Open();
            cmd = new SqlCommand("SELECT Deger FROM KDV", baglanti);
            SqlDataReader oku = cmd.ExecuteReader();

            while (oku.Read())
            {
                cmBox_KDV.Items.Add(oku["Deger"]);
            }
            oku.Close();
            cmd.Dispose();
            baglanti.Close();
        }
示例#22
0
        public void Birimdoldur(DevComponents.DotNetBar.Controls.ComboBoxEx cmBox_Parabirimi)
        {
            baglanti.Open();
            cmd = new SqlCommand("SELECT Paraadi FROM ParaTipi", baglanti);
            SqlDataReader oku = cmd.ExecuteReader();

            while (oku.Read())
            {
                cmBox_Parabirimi.Items.Add(oku["Paraadi"]);
            }
            oku.Close();
            cmd.Dispose();
            baglanti.Close();
        }
示例#23
0
        public void StokBoxDoldur(DevComponents.DotNetBar.Controls.ComboBoxEx cmBox_StokGrup, DevComponents.DotNetBar.Controls.ComboBoxEx cmBox_AraSGrup)
        {
            baglanti.Open();
            cmd = new SqlCommand("SELECT StokAdi FROM StokGrup", baglanti);
            SqlDataReader oku = cmd.ExecuteReader();

            while (oku.Read())
            {
                cmBox_StokGrup.Items.Add(oku["StokAdi"]);
                cmBox_AraSGrup.Items.Add(oku["StokAdi"]);
            }
            oku.Close();
            cmd.Dispose();
            baglanti.Close();
        }
示例#24
0
        public override void OnCreate(Plugin.Application.IApplicationRef hook)
        {
            _hook = hook as Plugin.Application.IAppFormRef;
            if (_hook == null)
            {
                return;
            }

            Plugin.Application.IAppFormRef     pAppFormRef = _hook as Plugin.Application.IAppFormRef;
            ESRI.ArcGIS.Geodatabase.IWorkspace pWks        = pAppFormRef.TempWksInfo.Wks;

            //启动数据更新子系统同时连接数据库(配置)
            if (ModData.v_SysDataSet == null)
            {
                //生成数据库操作对象
                ModData.v_SysDataSet           = new SysGisDataSet();
                ModData.v_SysDataSet.WorkSpace = pWks;
                ModData.Server   = pAppFormRef.TempWksInfo.Server;
                ModData.Instance = pAppFormRef.TempWksInfo.Service;
                ModData.Database = pAppFormRef.TempWksInfo.DataBase;
                ModData.User     = pAppFormRef.TempWksInfo.User;
                ModData.Password = pAppFormRef.TempWksInfo.PassWord;
                ModData.Version  = pAppFormRef.TempWksInfo.Version;
                ModData.dbType   = pAppFormRef.TempWksInfo.DBType;
            }

            //权限控制入口
            ModData.v_AppGisUpdate = new Plugin.Application.AppGidUpdate(_hook.MainForm, _hook.ControlContainer, _hook.ListUserPrivilegeID, _hook.SystemXml, _hook.DataTreeXml, _hook.DatabaseInfoXml, _hook.ColParsePlugin, _hook.ImageResPath, _hook.ConnUser);
            //ModData.v_AppGisUpdate = new Plugin.Application.AppGidUpdate(_hook.MainForm, _hook.ControlContainer, _hook.SystemXml, _hook.DataTreeXml, _hook.DatabaseInfoXml, _hook.ColParsePlugin, _hook.ImageResPath, _hook.ConnUser);
            ModData.v_AppGisUpdate.MyDocument = new System.Drawing.Printing.PrintDocument();
            ModData.v_AppGisUpdate.CurWksInfo = pAppFormRef.TempWksInfo;

            m_TrackCancel = new CancelTrackerClass();
            ModData.v_AppGisUpdate.MyDocument.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(MyDocument_PrintPage);
            _UserControl = new UserControlSMPD(this.Name, this.Caption);
            _hook.MainForm.Controls.Add(_UserControl);
            _hook.MainForm.Controls.Add(ModData.v_AppGisUpdate.StatusBar);
            ModData.v_AppGisUpdate.UserInfo = "当前登录: " + _hook.ConnUser.TrueName;
            _hook.MainForm.FormClosing     += new System.Windows.Forms.FormClosingEventHandler(MainForm_FormClosing);

            //cyf 20110615 add:添加比例尺窗口事件
            ModData.v_AppGisUpdate.RefScaleCmb.SelectedIndexChanged += new EventHandler(RefScaleCmb_SelectedIndexChanged);
            ModData.v_AppGisUpdate.CurScaleCmb.SelectedIndexChanged += new EventHandler(CurScaleCmb_SelectedIndexChanged);

            //添加回车事件自定义比例尺
            DevComponents.DotNetBar.Controls.ComboBoxEx vComboEx = ModData.v_AppGisUpdate.CurScaleCmb.ComboBoxEx;
            vComboEx.KeyDown += new KeyEventHandler(vComboEx_KeyDown);
        }
示例#25
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="pComboBoxItem"></param>
        /// <param name="strValue"></param>
        /// <returns></returns>
        private static bool IsExist(DevComponents.DotNetBar.Controls.ComboBoxEx pComboBoxItem, string strValue)
        {
            bool IsExist = false;

            if (pComboBoxItem.Items.Count > 0)
            {
                for (int i = 0; i < pComboBoxItem.Items.Count; i++)
                {
                    if (pComboBoxItem.Items[i].ToString() == strValue)
                    {
                        IsExist = true;
                        return(IsExist);
                    }
                }
            }
            return(IsExist);
        }
示例#26
0
        public void AltBoxDoldur(DevComponents.DotNetBar.Controls.ComboBoxEx cmBox_AltGrup, int index)
        {
            cmBox_AltGrup.SelectedItem = null;
            cmBox_AltGrup.Items.Clear();
            baglanti.Open();
            cmd = new SqlCommand("SELECT Urungrubu FROM AltGrup WHERE UstID=@id", baglanti);
            cmd.Parameters.Add("id", index + 1);
            SqlDataReader oku = cmd.ExecuteReader();

            while (oku.Read())
            {
                cmBox_AltGrup.Items.Add(oku["Urungrubu"]);
            }
            oku.Close();
            cmd.Dispose();
            baglanti.Close();
        }
示例#27
0
        private void PreViewCustom(DevComponents.DotNetBar.Controls.ComboBoxEx cmb, object item, esriSymbologyStyleClass styleClass)
        {
            IStyleGalleryItem pStyleItem = new ServerStyleGalleryItemClass();

            pStyleItem.Name = "Custom";
            pStyleItem.Item = item;
            stdole.IPictureDisp  picture;
            System.Drawing.Image image;

            ISymbologyStyleClass symbologyStyleClass = axSymbologyControl1.GetStyleClass(styleClass);

            picture = symbologyStyleClass.PreviewItem(pStyleItem, cmb.Width - 80, cmb.Height);
            image   = System.Drawing.Image.FromHbitmap(new System.IntPtr(picture.Handle));

            DevComponents.Editors.ComboItem valueItem;
            valueItem       = new DevComponents.Editors.ComboItem();
            valueItem.Text  = "Custom";
            valueItem.Tag   = item;
            valueItem.Image = image;
            cmb.Items.Add(valueItem);
            cmb.SelectedIndex = cmb.Items.Count - 1;
        }
示例#28
0
        private void comboBox_Item_Init(DevComponents.DotNetBar.Controls.ComboBoxEx cb)
        {
            IList <Service.Model.YY_RTU_ITEM> ItemList = PublicBD.db.GetItemList(" where ItemCode!='-1' and ItemCode!='0000000000'");

            if (ItemList != null && ItemList.Count > 0)
            {
                Service.Model.YY_RTU_ITEM item = new Service.Model.YY_RTU_ITEM();
                item.ItemName = "全部";
                item.ItemID   = "-1";
                ItemList.Insert(0, item);

                if (Program.wrx.XMLObj.dllfile.ToLower() == "gsprotocol.dll")
                {
                    var items = from il in ItemList where il.ItemID == "180" || il.ItemID == "181" || il.ItemID == "182" || il.ItemID == "183" || il.ItemID == "184" || il.ItemID == "185" select il;

                    if (items.Count() > 0)
                    {
                        foreach (var tem in items.ToArray <Service.Model.YY_RTU_ITEM>())
                        {
                            ItemList.Remove(tem);
                        }

                        (from il in ItemList where il.ItemID == "12" select il).First().ItemName = "雨量";
                        (from il in ItemList where il.ItemID == "15" select il).First().ItemName = "水位1";
                        (from il in ItemList where il.ItemID == "16" select il).First().ItemName = "水位2";
                    }
                }


                ITEMList         = ItemList;
                cb.DataSource    = ItemList;
                cb.DisplayMember = "ItemName";
                cb.ValueMember   = "ItemID";
                cb.SelectedIndex = 0;
            }
        }
示例#29
0
        private void FillComboBox(DevComponents.DotNetBar.Controls.ComboBoxEx combo, SqlDataReader dr, String strValue)
        {
            combo.Items.Clear();
            if (dr.HasRows)
            {
                int nItemIdx    = 0;
                int nSelItemIdx = -1;
                while (dr.Read())
                {
                    ComboBoxItem item = new ComboBoxItem();

                    if (dr.FieldCount >= 2)
                    {
                        item.Text = OVRDataBaseUtils.GetFieldValue2String(ref dr, dr.GetName(0));
                        item.Tag  = OVRDataBaseUtils.GetFieldValue2String(ref dr, dr.GetName(1));
                    }
                    else if (dr.FieldCount == 1)
                    {
                        item.Text = OVRDataBaseUtils.GetFieldValue2String(ref dr, dr.GetName(0));
                        item.Tag  = OVRDataBaseUtils.GetFieldValue2String(ref dr, dr.GetName(0));
                    }
                    combo.Items.Add(item);

                    if (item.Tag.ToString().CompareTo(strValue) == 0)
                    {
                        nSelItemIdx = nItemIdx;
                    }
                    nItemIdx++;
                }

                if (nSelItemIdx >= 0)
                {
                    combo.Text = combo.Items[nSelItemIdx].ToString();
                }
            }
        }
 /// <summary> 
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.panel3 = new System.Windows.Forms.Panel();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.dateTimeInput4 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.textBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.學籍異動 = new System.Windows.Forms.Panel();
     this.groupPanel10 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBoxX27 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.dateTimeInput8 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX42 = new DevComponents.DotNetBar.LabelX();
     this.labelX20 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx16 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBoxEx5 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.textBoxX28 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX29 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX33 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx10 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX45 = new DevComponents.DotNetBar.LabelX();
     this.labelX46 = new DevComponents.DotNetBar.LabelX();
     this.labelX47 = new DevComponents.DotNetBar.LabelX();
     this.labelX48 = new DevComponents.DotNetBar.LabelX();
     this.labelX49 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx9 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.groupPanel11 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.dateTimeInput9 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.comboBoxEx21 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.cmbOldClassType = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.lblOldDepartmentCode = new DevComponents.DotNetBar.LabelX();
     this.lblOldClassType = new DevComponents.DotNetBar.LabelX();
     this.textBoxX12 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX19 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX33 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX55 = new DevComponents.DotNetBar.LabelX();
     this.labelX50 = new DevComponents.DotNetBar.LabelX();
     this.labelX51 = new DevComponents.DotNetBar.LabelX();
     this.labelX52 = new DevComponents.DotNetBar.LabelX();
     this.txtNewData = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtNewStudentNumber = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX30 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX31 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.lblNewStudentNumber = new DevComponents.DotNetBar.LabelX();
     this.textBoxX32 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX54 = new DevComponents.DotNetBar.LabelX();
     this.lblNewData = new DevComponents.DotNetBar.LabelX();
     this.新生名冊 = new System.Windows.Forms.Panel();
     this.groupPanel4 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBoxX8 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.button1 = new System.Windows.Forms.Button();
     this.labelX72 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX22 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX43 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX13 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX15 = new DevComponents.DotNetBar.LabelX();
     this.labelX14 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX9 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.groupPanel3 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBoxX11 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.dateTimeInput11 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX18 = new DevComponents.DotNetBar.LabelX();
     this.labelX11 = new DevComponents.DotNetBar.LabelX();
     this.labelX13 = new DevComponents.DotNetBar.LabelX();
     this.labelX9 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX7 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX6 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.comboBoxEx3 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX12 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX5 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX10 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBoxX23 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.dateTimeInput10 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX44 = new DevComponents.DotNetBar.LabelX();
     this.labelX40 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx18 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.textBoxX3 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX8 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx2 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.畢業名冊 = new System.Windows.Forms.Panel();
     this.groupPanel13 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.dateTimeInput3 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.dateTimeInput2 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.textBoxX10 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX17 = new DevComponents.DotNetBar.LabelX();
     this.labelX62 = new DevComponents.DotNetBar.LabelX();
     this.labelX68 = new DevComponents.DotNetBar.LabelX();
     this.labelX63 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX41 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX70 = new DevComponents.DotNetBar.LabelX();
     this.labelX64 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX43 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX38 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX39 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX67 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx14 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.textBoxX42 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX65 = new DevComponents.DotNetBar.LabelX();
     this.labelX69 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX40 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX66 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel12 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.dateTimeInput1 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX21 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx17 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.textBoxX36 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX37 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX56 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx11 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBoxEx13 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX57 = new DevComponents.DotNetBar.LabelX();
     this.labelX58 = new DevComponents.DotNetBar.LabelX();
     this.labelX59 = new DevComponents.DotNetBar.LabelX();
     this.labelX60 = new DevComponents.DotNetBar.LabelX();
     this.labelX61 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx15 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.轉入名冊 = new System.Windows.Forms.Panel();
     this.groupPanel8 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.dateTimeInput7 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.textBoxX25 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX19 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX26 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX20 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX21 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX34 = new DevComponents.DotNetBar.LabelX();
     this.labelX35 = new DevComponents.DotNetBar.LabelX();
     this.labelX36 = new DevComponents.DotNetBar.LabelX();
     this.labelX37 = new DevComponents.DotNetBar.LabelX();
     this.labelX38 = new DevComponents.DotNetBar.LabelX();
     this.labelX39 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel7 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.dateTimeInput6 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.textBoxX4 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX16 = new DevComponents.DotNetBar.LabelX();
     this.labelX28 = new DevComponents.DotNetBar.LabelX();
     this.labelX29 = new DevComponents.DotNetBar.LabelX();
     this.labelX30 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX16 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX17 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.comboBoxEx8 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX31 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX18 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX32 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel6 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBoxX24 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.dateTimeInput5 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX71 = new DevComponents.DotNetBar.LabelX();
     this.labelX41 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx19 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBoxEx12 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.textBoxX14 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX15 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX22 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx6 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBoxEx7 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX23 = new DevComponents.DotNetBar.LabelX();
     this.labelX24 = new DevComponents.DotNetBar.LabelX();
     this.labelX25 = new DevComponents.DotNetBar.LabelX();
     this.labelX26 = new DevComponents.DotNetBar.LabelX();
     this.labelX27 = new DevComponents.DotNetBar.LabelX();
     this.panelEx1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.groupPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput4)).BeginInit();
     this.學籍異動.SuspendLayout();
     this.groupPanel10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput8)).BeginInit();
     this.groupPanel11.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput9)).BeginInit();
     this.新生名冊.SuspendLayout();
     this.groupPanel4.SuspendLayout();
     this.groupPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput11)).BeginInit();
     this.groupPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput10)).BeginInit();
     this.畢業名冊.SuspendLayout();
     this.groupPanel13.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput2)).BeginInit();
     this.groupPanel12.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput1)).BeginInit();
     this.轉入名冊.SuspendLayout();
     this.groupPanel8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput7)).BeginInit();
     this.groupPanel7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput6)).BeginInit();
     this.groupPanel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput5)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.panel3);
     this.panelEx1.Controls.Add(this.學籍異動);
     this.panelEx1.Controls.Add(this.新生名冊);
     this.panelEx1.Controls.Add(this.畢業名冊);
     this.panelEx1.Controls.Add(this.轉入名冊);
     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(511, 465);
     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 = 7;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.groupPanel1);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel3.Location = new System.Drawing.Point(0, 397);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(511, 68);
     this.panel3.TabIndex = 0;
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.dateTimeInput4);
     this.groupPanel1.Controls.Add(this.textBoxX1);
     this.groupPanel1.Controls.Add(this.labelX2);
     this.groupPanel1.Controls.Add(this.labelX1);
     this.groupPanel1.Location = new System.Drawing.Point(3, 3);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(499, 60);
     //
     //
     //
     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.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 = "核准資料";
     //
     // dateTimeInput4
     //
     //
     //
     //
     this.dateTimeInput4.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput4.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput4.ButtonDropDown.Visible = true;
     this.dateTimeInput4.IsPopupCalendarOpen = false;
     this.dateTimeInput4.Location = new System.Drawing.Point(100, 4);
     //
     //
     //
     this.dateTimeInput4.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput4.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput4.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput4.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput4.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput4.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput4.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput4.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput4.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput4.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput4.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput4.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput4.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput4.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput4.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput4.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput4.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput4.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput4.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput4.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput4.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput4.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput4.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput4.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput4.Name = "dateTimeInput4";
     this.dateTimeInput4.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput4.TabIndex = 3;
     this.dateTimeInput4.Tag = "ADDate";
     //
     // textBoxX1
     //
     //
     //
     //
     this.textBoxX1.Border.Class = "TextBoxBorder";
     this.textBoxX1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX1.Location = new System.Drawing.Point(307, 4);
     this.textBoxX1.Name = "textBoxX1";
     this.textBoxX1.Size = new System.Drawing.Size(185, 25);
     this.textBoxX1.TabIndex = 1;
     this.textBoxX1.TabStop = false;
     this.textBoxX1.Tag = "ADNumber";
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.ForeColor = System.Drawing.Color.Black;
     this.labelX2.Location = new System.Drawing.Point(236, 6);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 21);
     this.labelX2.TabIndex = 0;
     this.labelX2.Text = "核准文號:";
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.ForeColor = System.Drawing.Color.Black;
     this.labelX1.Location = new System.Drawing.Point(22, 6);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "核准日期:";
     //
     // 學籍異動
     //
     this.學籍異動.Controls.Add(this.groupPanel10);
     this.學籍異動.Controls.Add(this.groupPanel11);
     this.學籍異動.Dock = System.Windows.Forms.DockStyle.Fill;
     this.學籍異動.Location = new System.Drawing.Point(0, 0);
     this.學籍異動.Name = "學籍異動";
     this.學籍異動.Size = new System.Drawing.Size(511, 465);
     this.學籍異動.TabIndex = 4;
     //
     // groupPanel10
     //
     this.groupPanel10.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel10.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel10.Controls.Add(this.textBoxX27);
     this.groupPanel10.Controls.Add(this.dateTimeInput8);
     this.groupPanel10.Controls.Add(this.labelX42);
     this.groupPanel10.Controls.Add(this.labelX20);
     this.groupPanel10.Controls.Add(this.comboBoxEx16);
     this.groupPanel10.Controls.Add(this.comboBoxEx5);
     this.groupPanel10.Controls.Add(this.textBoxX28);
     this.groupPanel10.Controls.Add(this.textBoxX29);
     this.groupPanel10.Controls.Add(this.labelX33);
     this.groupPanel10.Controls.Add(this.comboBoxEx10);
     this.groupPanel10.Controls.Add(this.labelX45);
     this.groupPanel10.Controls.Add(this.labelX46);
     this.groupPanel10.Controls.Add(this.labelX47);
     this.groupPanel10.Controls.Add(this.labelX48);
     this.groupPanel10.Controls.Add(this.labelX49);
     this.groupPanel10.Controls.Add(this.comboBoxEx9);
     this.groupPanel10.Location = new System.Drawing.Point(3, 12);
     this.groupPanel10.Name = "groupPanel10";
     this.groupPanel10.Size = new System.Drawing.Size(499, 154);
     //
     //
     //
     this.groupPanel10.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel10.Style.BackColorGradientAngle = 90;
     this.groupPanel10.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel10.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel10.Style.BorderBottomWidth = 1;
     this.groupPanel10.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel10.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel10.Style.BorderLeftWidth = 1;
     this.groupPanel10.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel10.Style.BorderRightWidth = 1;
     this.groupPanel10.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel10.Style.BorderTopWidth = 1;
     this.groupPanel10.Style.Class = "";
     this.groupPanel10.Style.CornerDiameter = 4;
     this.groupPanel10.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel10.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel10.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel10.StyleMouseDown.Class = "";
     this.groupPanel10.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel10.StyleMouseOver.Class = "";
     this.groupPanel10.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel10.TabIndex = 0;
     this.groupPanel10.Text = "異動狀況";
     //
     // textBoxX27
     //
     //
     //
     //
     this.textBoxX27.Border.Class = "TextBoxBorder";
     this.textBoxX27.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX27.Location = new System.Drawing.Point(362, 98);
     this.textBoxX27.Name = "textBoxX27";
     this.textBoxX27.Size = new System.Drawing.Size(130, 25);
     this.textBoxX27.TabIndex = 11;
     this.textBoxX27.Tag = "SpecialStatus";
     //
     // dateTimeInput8
     //
     //
     //
     //
     this.dateTimeInput8.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput8.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput8.ButtonDropDown.Visible = true;
     this.dateTimeInput8.IsPopupCalendarOpen = false;
     this.dateTimeInput8.Location = new System.Drawing.Point(101, 37);
     //
     //
     //
     this.dateTimeInput8.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput8.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput8.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput8.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput8.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput8.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput8.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput8.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput8.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput8.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput8.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput8.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput8.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput8.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput8.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput8.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput8.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput8.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput8.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput8.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput8.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput8.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput8.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput8.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput8.Name = "dateTimeInput8";
     this.dateTimeInput8.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput8.TabIndex = 10;
     this.dateTimeInput8.Tag = "UpdateDate";
     //
     // labelX42
     //
     this.labelX42.AutoSize = true;
     //
     //
     //
     this.labelX42.BackgroundStyle.Class = "";
     this.labelX42.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX42.ForeColor = System.Drawing.Color.Black;
     this.labelX42.Location = new System.Drawing.Point(253, 100);
     this.labelX42.Name = "labelX42";
     this.labelX42.Size = new System.Drawing.Size(101, 21);
     this.labelX42.TabIndex = 8;
     this.labelX42.Text = "特殊身份代碼:";
     //
     // labelX20
     //
     this.labelX20.AutoSize = true;
     //
     //
     //
     this.labelX20.BackgroundStyle.Class = "";
     this.labelX20.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX20.ForeColor = System.Drawing.Color.Black;
     this.labelX20.Location = new System.Drawing.Point(49, 102);
     this.labelX20.Name = "labelX20";
     this.labelX20.Size = new System.Drawing.Size(47, 21);
     this.labelX20.TabIndex = 6;
     this.labelX20.Text = "班別:";
     //
     // comboBoxEx16
     //
     this.comboBoxEx16.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx16.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx16.FormattingEnabled = true;
     this.comboBoxEx16.ItemHeight = 18;
     this.comboBoxEx16.Location = new System.Drawing.Point(99, 99);
     this.comboBoxEx16.Name = "comboBoxEx16";
     this.comboBoxEx16.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx16.TabIndex = 7;
     this.comboBoxEx16.Tag = "ClassType";
     //
     // comboBoxEx5
     //
     this.comboBoxEx5.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx5.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx5.FormattingEnabled = true;
     this.comboBoxEx5.ItemHeight = 18;
     this.comboBoxEx5.Location = new System.Drawing.Point(100, 69);
     this.comboBoxEx5.Name = "comboBoxEx5";
     this.comboBoxEx5.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx5.TabIndex = 4;
     this.comboBoxEx5.Tag = "GradeYear";
     //
     // textBoxX28
     //
     //
     //
     //
     this.textBoxX28.Border.Class = "TextBoxBorder";
     this.textBoxX28.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX28.Location = new System.Drawing.Point(362, 34);
     this.textBoxX28.Name = "textBoxX28";
     this.textBoxX28.Size = new System.Drawing.Size(130, 25);
     this.textBoxX28.TabIndex = 3;
     this.textBoxX28.Tag = "Comment";
     //
     // textBoxX29
     //
     //
     //
     //
     this.textBoxX29.Border.Class = "TextBoxBorder";
     this.textBoxX29.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX29.Location = new System.Drawing.Point(262, 3);
     this.textBoxX29.Name = "textBoxX29";
     this.textBoxX29.Size = new System.Drawing.Size(230, 25);
     this.textBoxX29.TabIndex = 1;
     this.textBoxX29.Tag = "UpdateDescription";
     //
     // labelX33
     //
     this.labelX33.AutoSize = true;
     //
     //
     //
     this.labelX33.BackgroundStyle.Class = "";
     this.labelX33.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX33.ForeColor = System.Drawing.Color.Black;
     this.labelX33.Location = new System.Drawing.Point(307, 70);
     this.labelX33.Name = "labelX33";
     this.labelX33.Size = new System.Drawing.Size(47, 21);
     this.labelX33.TabIndex = 0;
     this.labelX33.Text = "科別:";
     //
     // comboBoxEx10
     //
     this.comboBoxEx10.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx10.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx10.FormattingEnabled = true;
     this.comboBoxEx10.ItemHeight = 18;
     this.comboBoxEx10.Location = new System.Drawing.Point(100, 6);
     this.comboBoxEx10.Name = "comboBoxEx10";
     this.comboBoxEx10.Size = new System.Drawing.Size(73, 24);
     this.comboBoxEx10.TabIndex = 0;
     this.comboBoxEx10.Tag = "UpdateCode";
     //
     // labelX45
     //
     this.labelX45.AutoSize = true;
     //
     //
     //
     this.labelX45.BackgroundStyle.Class = "";
     this.labelX45.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX45.ForeColor = System.Drawing.Color.Black;
     this.labelX45.Location = new System.Drawing.Point(50, 72);
     this.labelX45.Name = "labelX45";
     this.labelX45.Size = new System.Drawing.Size(47, 21);
     this.labelX45.TabIndex = 0;
     this.labelX45.Text = "年級:";
     //
     // labelX46
     //
     this.labelX46.AutoSize = true;
     //
     //
     //
     this.labelX46.BackgroundStyle.Class = "";
     this.labelX46.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX46.ForeColor = System.Drawing.Color.Black;
     this.labelX46.Location = new System.Drawing.Point(307, 38);
     this.labelX46.Name = "labelX46";
     this.labelX46.Size = new System.Drawing.Size(47, 21);
     this.labelX46.TabIndex = 0;
     this.labelX46.Text = "備註:";
     //
     // labelX47
     //
     this.labelX47.AutoSize = true;
     //
     //
     //
     this.labelX47.BackgroundStyle.Class = "";
     this.labelX47.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX47.ForeColor = System.Drawing.Color.Black;
     this.labelX47.Location = new System.Drawing.Point(23, 40);
     this.labelX47.Name = "labelX47";
     this.labelX47.Size = new System.Drawing.Size(74, 21);
     this.labelX47.TabIndex = 0;
     this.labelX47.Text = "異動日期:";
     //
     // labelX48
     //
     this.labelX48.AutoSize = true;
     //
     //
     //
     this.labelX48.BackgroundStyle.Class = "";
     this.labelX48.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX48.ForeColor = System.Drawing.Color.Black;
     this.labelX48.Location = new System.Drawing.Point(179, 7);
     this.labelX48.Name = "labelX48";
     this.labelX48.Size = new System.Drawing.Size(87, 21);
     this.labelX48.TabIndex = 0;
     this.labelX48.Text = "原因及事項:";
     //
     // labelX49
     //
     this.labelX49.AutoSize = true;
     //
     //
     //
     this.labelX49.BackgroundStyle.Class = "";
     this.labelX49.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX49.ForeColor = System.Drawing.Color.Black;
     this.labelX49.Location = new System.Drawing.Point(-4, 7);
     this.labelX49.Name = "labelX49";
     this.labelX49.Size = new System.Drawing.Size(101, 21);
     this.labelX49.TabIndex = 0;
     this.labelX49.Text = "異動原因代碼:";
     //
     // comboBoxEx9
     //
     this.comboBoxEx9.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx9.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx9.FormattingEnabled = true;
     this.comboBoxEx9.ItemHeight = 18;
     this.comboBoxEx9.Location = new System.Drawing.Point(362, 66);
     this.comboBoxEx9.Name = "comboBoxEx9";
     this.comboBoxEx9.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx9.TabIndex = 5;
     this.comboBoxEx9.Tag = "Department";
     //
     // groupPanel11
     //
     this.groupPanel11.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel11.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel11.Controls.Add(this.dateTimeInput9);
     this.groupPanel11.Controls.Add(this.comboBoxEx21);
     this.groupPanel11.Controls.Add(this.cmbOldClassType);
     this.groupPanel11.Controls.Add(this.lblOldDepartmentCode);
     this.groupPanel11.Controls.Add(this.lblOldClassType);
     this.groupPanel11.Controls.Add(this.textBoxX12);
     this.groupPanel11.Controls.Add(this.labelX19);
     this.groupPanel11.Controls.Add(this.textBoxX33);
     this.groupPanel11.Controls.Add(this.labelX55);
     this.groupPanel11.Controls.Add(this.labelX50);
     this.groupPanel11.Controls.Add(this.labelX51);
     this.groupPanel11.Controls.Add(this.labelX52);
     this.groupPanel11.Controls.Add(this.txtNewData);
     this.groupPanel11.Controls.Add(this.txtNewStudentNumber);
     this.groupPanel11.Controls.Add(this.textBoxX30);
     this.groupPanel11.Controls.Add(this.textBoxX31);
     this.groupPanel11.Controls.Add(this.lblNewStudentNumber);
     this.groupPanel11.Controls.Add(this.textBoxX32);
     this.groupPanel11.Controls.Add(this.labelX54);
     this.groupPanel11.Controls.Add(this.lblNewData);
     this.groupPanel11.Location = new System.Drawing.Point(4, 172);
     this.groupPanel11.Name = "groupPanel11";
     this.groupPanel11.Size = new System.Drawing.Size(498, 193);
     //
     //
     //
     this.groupPanel11.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel11.Style.BackColorGradientAngle = 90;
     this.groupPanel11.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel11.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel11.Style.BorderBottomWidth = 1;
     this.groupPanel11.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel11.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel11.Style.BorderLeftWidth = 1;
     this.groupPanel11.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel11.Style.BorderRightWidth = 1;
     this.groupPanel11.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel11.Style.BorderTopWidth = 1;
     this.groupPanel11.Style.Class = "";
     this.groupPanel11.Style.CornerDiameter = 4;
     this.groupPanel11.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel11.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel11.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel11.StyleMouseDown.Class = "";
     this.groupPanel11.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel11.StyleMouseOver.Class = "";
     this.groupPanel11.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel11.TabIndex = 1;
     this.groupPanel11.Text = "學生基本資料";
     //
     // dateTimeInput9
     //
     //
     //
     //
     this.dateTimeInput9.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput9.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput9.ButtonDropDown.Visible = true;
     this.dateTimeInput9.IsPopupCalendarOpen = false;
     this.dateTimeInput9.Location = new System.Drawing.Point(98, 132);
     //
     //
     //
     this.dateTimeInput9.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput9.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput9.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput9.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput9.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput9.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput9.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput9.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput9.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput9.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput9.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput9.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput9.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput9.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput9.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput9.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput9.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput9.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput9.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput9.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput9.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput9.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput9.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput9.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput9.Name = "dateTimeInput9";
     this.dateTimeInput9.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput9.TabIndex = 19;
     this.dateTimeInput9.Tag = "LastADDate";
     //
     // comboBoxEx21
     //
     this.comboBoxEx21.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx21.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx21.FormattingEnabled = true;
     this.comboBoxEx21.ItemHeight = 18;
     this.comboBoxEx21.Location = new System.Drawing.Point(362, 102);
     this.comboBoxEx21.Name = "comboBoxEx21";
     this.comboBoxEx21.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx21.TabIndex = 18;
     this.comboBoxEx21.Tag = "OldDepartmentCode";
     //
     // cmbOldClassType
     //
     this.cmbOldClassType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbOldClassType.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.cmbOldClassType.FormattingEnabled = true;
     this.cmbOldClassType.ItemHeight = 18;
     this.cmbOldClassType.Location = new System.Drawing.Point(99, 99);
     this.cmbOldClassType.Name = "cmbOldClassType";
     this.cmbOldClassType.Size = new System.Drawing.Size(130, 24);
     this.cmbOldClassType.TabIndex = 17;
     this.cmbOldClassType.Tag = "OldClassType";
     //
     // lblOldDepartmentCode
     //
     //
     //
     //
     this.lblOldDepartmentCode.BackgroundStyle.Class = "";
     this.lblOldDepartmentCode.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblOldDepartmentCode.ForeColor = System.Drawing.Color.Black;
     this.lblOldDepartmentCode.Location = new System.Drawing.Point(263, 99);
     this.lblOldDepartmentCode.Name = "lblOldDepartmentCode";
     this.lblOldDepartmentCode.Size = new System.Drawing.Size(91, 23);
     this.lblOldDepartmentCode.TabIndex = 14;
     this.lblOldDepartmentCode.Text = "舊科別代碼:";
     //
     // lblOldClassType
     //
     this.lblOldClassType.AutoSize = true;
     //
     //
     //
     this.lblOldClassType.BackgroundStyle.Class = "";
     this.lblOldClassType.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblOldClassType.ForeColor = System.Drawing.Color.Black;
     this.lblOldClassType.Location = new System.Drawing.Point(34, 100);
     this.lblOldClassType.Name = "lblOldClassType";
     this.lblOldClassType.Size = new System.Drawing.Size(60, 21);
     this.lblOldClassType.TabIndex = 13;
     this.lblOldClassType.Text = "舊班別:";
     //
     // textBoxX12
     //
     //
     //
     //
     this.textBoxX12.Border.Class = "TextBoxBorder";
     this.textBoxX12.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX12.Location = new System.Drawing.Point(99, 68);
     this.textBoxX12.Name = "textBoxX12";
     this.textBoxX12.Size = new System.Drawing.Size(130, 25);
     this.textBoxX12.TabIndex = 11;
     this.textBoxX12.Tag = "IDNumberComment";
     //
     // labelX19
     //
     this.labelX19.AutoSize = true;
     //
     //
     //
     this.labelX19.BackgroundStyle.Class = "";
     this.labelX19.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX19.Font = new System.Drawing.Font("Microsoft JhengHei", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX19.ForeColor = System.Drawing.Color.Black;
     this.labelX19.Location = new System.Drawing.Point(0, 70);
     this.labelX19.Name = "labelX19";
     this.labelX19.Size = new System.Drawing.Size(106, 19);
     this.labelX19.TabIndex = 12;
     this.labelX19.Text = "註1(身分證註記):";
     //
     // textBoxX33
     //
     //
     //
     //
     this.textBoxX33.Border.Class = "TextBoxBorder";
     this.textBoxX33.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX33.Location = new System.Drawing.Point(361, 132);
     this.textBoxX33.Name = "textBoxX33";
     this.textBoxX33.Size = new System.Drawing.Size(130, 25);
     this.textBoxX33.TabIndex = 5;
     this.textBoxX33.Tag = "LastADNumber";
     //
     // labelX55
     //
     //
     //
     //
     this.labelX55.BackgroundStyle.Class = "";
     this.labelX55.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX55.ForeColor = System.Drawing.Color.Black;
     this.labelX55.Location = new System.Drawing.Point(279, 130);
     this.labelX55.Name = "labelX55";
     this.labelX55.Size = new System.Drawing.Size(75, 23);
     this.labelX55.TabIndex = 3;
     this.labelX55.Text = "備查文號:";
     //
     // labelX50
     //
     this.labelX50.AutoSize = true;
     //
     //
     //
     this.labelX50.BackgroundStyle.Class = "";
     this.labelX50.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX50.ForeColor = System.Drawing.Color.Black;
     this.labelX50.Location = new System.Drawing.Point(22, 132);
     this.labelX50.Name = "labelX50";
     this.labelX50.Size = new System.Drawing.Size(74, 21);
     this.labelX50.TabIndex = 0;
     this.labelX50.Text = "備查日期:";
     //
     // labelX51
     //
     this.labelX51.AutoSize = true;
     //
     //
     //
     this.labelX51.BackgroundStyle.Class = "";
     this.labelX51.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX51.ForeColor = System.Drawing.Color.Black;
     this.labelX51.Location = new System.Drawing.Point(307, 10);
     this.labelX51.Name = "labelX51";
     this.labelX51.Size = new System.Drawing.Size(47, 21);
     this.labelX51.TabIndex = 0;
     this.labelX51.Text = "學號:";
     //
     // labelX52
     //
     this.labelX52.AutoSize = true;
     //
     //
     //
     this.labelX52.BackgroundStyle.Class = "";
     this.labelX52.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX52.ForeColor = System.Drawing.Color.Black;
     this.labelX52.Location = new System.Drawing.Point(50, 10);
     this.labelX52.Name = "labelX52";
     this.labelX52.Size = new System.Drawing.Size(47, 21);
     this.labelX52.TabIndex = 0;
     this.labelX52.Text = "姓名:";
     //
     // txtNewData
     //
     //
     //
     //
     this.txtNewData.Border.Class = "TextBoxBorder";
     this.txtNewData.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtNewData.Location = new System.Drawing.Point(361, 41);
     this.txtNewData.Name = "txtNewData";
     this.txtNewData.Size = new System.Drawing.Size(130, 25);
     this.txtNewData.TabIndex = 3;
     this.txtNewData.Tag = "NewData";
     this.txtNewData.Visible = false;
     //
     // txtNewStudentNumber
     //
     //
     //
     //
     this.txtNewStudentNumber.Border.Class = "TextBoxBorder";
     this.txtNewStudentNumber.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtNewStudentNumber.Location = new System.Drawing.Point(362, 41);
     this.txtNewStudentNumber.Name = "txtNewStudentNumber";
     this.txtNewStudentNumber.Size = new System.Drawing.Size(130, 25);
     this.txtNewStudentNumber.TabIndex = 3;
     this.txtNewStudentNumber.Tag = "NewStudentNumber";
     this.txtNewStudentNumber.Visible = false;
     //
     // textBoxX30
     //
     //
     //
     //
     this.textBoxX30.Border.Class = "TextBoxBorder";
     this.textBoxX30.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX30.Location = new System.Drawing.Point(362, 10);
     this.textBoxX30.Name = "textBoxX30";
     this.textBoxX30.Size = new System.Drawing.Size(130, 25);
     this.textBoxX30.TabIndex = 1;
     this.textBoxX30.Tag = "StudentNumber";
     //
     // textBoxX31
     //
     //
     //
     //
     this.textBoxX31.Border.Class = "TextBoxBorder";
     this.textBoxX31.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX31.Location = new System.Drawing.Point(100, 38);
     this.textBoxX31.Name = "textBoxX31";
     this.textBoxX31.Size = new System.Drawing.Size(130, 25);
     this.textBoxX31.TabIndex = 2;
     this.textBoxX31.Tag = "IDNumber";
     //
     // lblNewStudentNumber
     //
     this.lblNewStudentNumber.AutoSize = true;
     //
     //
     //
     this.lblNewStudentNumber.BackgroundStyle.Class = "";
     this.lblNewStudentNumber.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblNewStudentNumber.ForeColor = System.Drawing.Color.Black;
     this.lblNewStudentNumber.Location = new System.Drawing.Point(292, 43);
     this.lblNewStudentNumber.Name = "lblNewStudentNumber";
     this.lblNewStudentNumber.Size = new System.Drawing.Size(60, 21);
     this.lblNewStudentNumber.TabIndex = 0;
     this.lblNewStudentNumber.Text = "新學號:";
     //
     // textBoxX32
     //
     //
     //
     //
     this.textBoxX32.Border.Class = "TextBoxBorder";
     this.textBoxX32.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX32.Location = new System.Drawing.Point(100, 7);
     this.textBoxX32.Name = "textBoxX32";
     this.textBoxX32.Size = new System.Drawing.Size(130, 25);
     this.textBoxX32.TabIndex = 0;
     this.textBoxX32.Tag = "Name";
     //
     // labelX54
     //
     this.labelX54.AutoSize = true;
     //
     //
     //
     this.labelX54.BackgroundStyle.Class = "";
     this.labelX54.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX54.ForeColor = System.Drawing.Color.Black;
     this.labelX54.Location = new System.Drawing.Point(10, 41);
     this.labelX54.Name = "labelX54";
     this.labelX54.Size = new System.Drawing.Size(87, 21);
     this.labelX54.TabIndex = 0;
     this.labelX54.Text = "身分證字號:";
     //
     // lblNewData
     //
     //
     //
     //
     this.lblNewData.BackgroundStyle.Class = "";
     this.lblNewData.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblNewData.ForeColor = System.Drawing.Color.Black;
     this.lblNewData.Location = new System.Drawing.Point(246, 44);
     this.lblNewData.Name = "lblNewData";
     this.lblNewData.Size = new System.Drawing.Size(112, 18);
     this.lblNewData.TabIndex = 0;
     this.lblNewData.Text = "新身分證字號:";
     this.lblNewData.TextAlignment = System.Drawing.StringAlignment.Far;
     this.lblNewData.Visible = false;
     //
     // 新生名冊
     //
     this.新生名冊.Controls.Add(this.groupPanel4);
     this.新生名冊.Controls.Add(this.groupPanel3);
     this.新生名冊.Controls.Add(this.groupPanel2);
     this.新生名冊.Dock = System.Windows.Forms.DockStyle.Fill;
     this.新生名冊.Location = new System.Drawing.Point(0, 0);
     this.新生名冊.Name = "新生名冊";
     this.新生名冊.Size = new System.Drawing.Size(511, 465);
     this.新生名冊.TabIndex = 1;
     //
     // groupPanel4
     //
     this.groupPanel4.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel4.Controls.Add(this.textBoxX8);
     this.groupPanel4.Controls.Add(this.button1);
     this.groupPanel4.Controls.Add(this.labelX72);
     this.groupPanel4.Controls.Add(this.textBoxX22);
     this.groupPanel4.Controls.Add(this.labelX43);
     this.groupPanel4.Controls.Add(this.textBoxX13);
     this.groupPanel4.Controls.Add(this.labelX15);
     this.groupPanel4.Controls.Add(this.labelX14);
     this.groupPanel4.Controls.Add(this.textBoxX9);
     this.groupPanel4.Location = new System.Drawing.Point(4, 287);
     this.groupPanel4.Name = "groupPanel4";
     this.groupPanel4.Size = new System.Drawing.Size(498, 101);
     //
     //
     //
     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.Class = "";
     this.groupPanel4.Style.CornerDiameter = 4;
     this.groupPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel4.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel4.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel4.StyleMouseDown.Class = "";
     this.groupPanel4.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel4.StyleMouseOver.Class = "";
     this.groupPanel4.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel4.TabIndex = 2;
     this.groupPanel4.Text = "入學資格資料(畢業國中資料)";
     //
     // textBoxX8
     //
     //
     //
     //
     this.textBoxX8.Border.Class = "TextBoxBorder";
     this.textBoxX8.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX8.Location = new System.Drawing.Point(118, 4);
     this.textBoxX8.Name = "textBoxX8";
     this.textBoxX8.Size = new System.Drawing.Size(112, 25);
     this.textBoxX8.TabIndex = 0;
     this.textBoxX8.Tag = "GraduateSchool";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(247, 5);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(23, 23);
     this.button1.TabIndex = 6;
     this.button1.Text = "…";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.btngetSchoolName_Click);
     //
     // labelX72
     //
     //
     //
     //
     this.labelX72.BackgroundStyle.Class = "";
     this.labelX72.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX72.Font = new System.Drawing.Font("Microsoft JhengHei", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX72.ForeColor = System.Drawing.Color.Black;
     this.labelX72.Location = new System.Drawing.Point(236, 38);
     this.labelX72.Name = "labelX72";
     this.labelX72.Size = new System.Drawing.Size(121, 23);
     this.labelX72.TabIndex = 5;
     this.labelX72.Text = "註2(入學資格註記):";
     //
     // textBoxX22
     //
     //
     //
     //
     this.textBoxX22.Border.Class = "TextBoxBorder";
     this.textBoxX22.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX22.Location = new System.Drawing.Point(359, 38);
     this.textBoxX22.Name = "textBoxX22";
     this.textBoxX22.Size = new System.Drawing.Size(130, 25);
     this.textBoxX22.TabIndex = 4;
     this.textBoxX22.Tag = "GraduateComment";
     //
     // labelX43
     //
     this.labelX43.AutoSize = true;
     //
     //
     //
     this.labelX43.BackgroundStyle.Class = "";
     this.labelX43.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX43.ForeColor = System.Drawing.Color.Black;
     this.labelX43.Location = new System.Drawing.Point(-3, 38);
     this.labelX43.Name = "labelX43";
     this.labelX43.Size = new System.Drawing.Size(101, 21);
     this.labelX43.TabIndex = 3;
     this.labelX43.Text = "國中畢業年度:";
     //
     // textBoxX13
     //
     //
     //
     //
     this.textBoxX13.Border.Class = "TextBoxBorder";
     this.textBoxX13.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX13.Location = new System.Drawing.Point(100, 37);
     this.textBoxX13.Name = "textBoxX13";
     this.textBoxX13.Size = new System.Drawing.Size(130, 25);
     this.textBoxX13.TabIndex = 2;
     this.textBoxX13.Tag = "GraduateSchoolYear";
     //
     // labelX15
     //
     this.labelX15.AutoSize = true;
     //
     //
     //
     this.labelX15.BackgroundStyle.Class = "";
     this.labelX15.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX15.ForeColor = System.Drawing.Color.Black;
     this.labelX15.Location = new System.Drawing.Point(271, 7);
     this.labelX15.Name = "labelX15";
     this.labelX15.Size = new System.Drawing.Size(87, 21);
     this.labelX15.TabIndex = 0;
     this.labelX15.Text = "所在地代碼:";
     //
     // labelX14
     //
     this.labelX14.AutoSize = true;
     //
     //
     //
     this.labelX14.BackgroundStyle.Class = "";
     this.labelX14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX14.Font = new System.Drawing.Font("Microsoft JhengHei", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX14.ForeColor = System.Drawing.Color.Black;
     this.labelX14.Location = new System.Drawing.Point(-3, 8);
     this.labelX14.Name = "labelX14";
     this.labelX14.Size = new System.Drawing.Size(122, 19);
     this.labelX14.TabIndex = 0;
     this.labelX14.Text = "入學資格(畢業國中):";
     //
     // textBoxX9
     //
     //
     //
     //
     this.textBoxX9.Border.Class = "TextBoxBorder";
     this.textBoxX9.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX9.Location = new System.Drawing.Point(359, 3);
     this.textBoxX9.Name = "textBoxX9";
     this.textBoxX9.Size = new System.Drawing.Size(130, 25);
     this.textBoxX9.TabIndex = 1;
     this.textBoxX9.Tag = "GraduateSchoolLocationCode";
     //
     // groupPanel3
     //
     this.groupPanel3.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel3.Controls.Add(this.textBoxX11);
     this.groupPanel3.Controls.Add(this.dateTimeInput11);
     this.groupPanel3.Controls.Add(this.labelX18);
     this.groupPanel3.Controls.Add(this.labelX11);
     this.groupPanel3.Controls.Add(this.labelX13);
     this.groupPanel3.Controls.Add(this.labelX9);
     this.groupPanel3.Controls.Add(this.textBoxX7);
     this.groupPanel3.Controls.Add(this.textBoxX6);
     this.groupPanel3.Controls.Add(this.comboBoxEx3);
     this.groupPanel3.Controls.Add(this.labelX12);
     this.groupPanel3.Controls.Add(this.textBoxX5);
     this.groupPanel3.Controls.Add(this.labelX10);
     this.groupPanel3.Location = new System.Drawing.Point(4, 162);
     this.groupPanel3.Name = "groupPanel3";
     this.groupPanel3.Size = new System.Drawing.Size(498, 118);
     //
     //
     //
     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.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 = 1;
     this.groupPanel3.Text = "學生基本資料";
     //
     // textBoxX11
     //
     //
     //
     //
     this.textBoxX11.Border.Class = "TextBoxBorder";
     this.textBoxX11.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX11.Location = new System.Drawing.Point(100, 61);
     this.textBoxX11.Name = "textBoxX11";
     this.textBoxX11.Size = new System.Drawing.Size(130, 25);
     this.textBoxX11.TabIndex = 11;
     this.textBoxX11.Tag = "IDNumberComment";
     //
     // dateTimeInput11
     //
     //
     //
     //
     this.dateTimeInput11.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput11.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput11.ButtonDropDown.Visible = true;
     this.dateTimeInput11.IsPopupCalendarOpen = false;
     this.dateTimeInput11.Location = new System.Drawing.Point(360, 37);
     //
     //
     //
     this.dateTimeInput11.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput11.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput11.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput11.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput11.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput11.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput11.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput11.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput11.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput11.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput11.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput11.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput11.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput11.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput11.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput11.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput11.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput11.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput11.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput11.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput11.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput11.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput11.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput11.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput11.Name = "dateTimeInput11";
     this.dateTimeInput11.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput11.TabIndex = 13;
     this.dateTimeInput11.Tag = "Birthdate";
     //
     // labelX18
     //
     this.labelX18.AutoSize = true;
     //
     //
     //
     this.labelX18.BackgroundStyle.Class = "";
     this.labelX18.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX18.Font = new System.Drawing.Font("Microsoft JhengHei", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX18.ForeColor = System.Drawing.Color.Black;
     this.labelX18.Location = new System.Drawing.Point(-3, 65);
     this.labelX18.Name = "labelX18";
     this.labelX18.Size = new System.Drawing.Size(106, 19);
     this.labelX18.TabIndex = 12;
     this.labelX18.Text = "註1(身分證註記):";
     //
     // labelX11
     //
     this.labelX11.AutoSize = true;
     //
     //
     //
     this.labelX11.BackgroundStyle.Class = "";
     this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX11.ForeColor = System.Drawing.Color.Black;
     this.labelX11.Location = new System.Drawing.Point(308, 66);
     this.labelX11.Name = "labelX11";
     this.labelX11.Size = new System.Drawing.Size(47, 21);
     this.labelX11.TabIndex = 0;
     this.labelX11.Text = "性別:";
     //
     // labelX13
     //
     this.labelX13.AutoSize = true;
     //
     //
     //
     this.labelX13.BackgroundStyle.Class = "";
     this.labelX13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX13.ForeColor = System.Drawing.Color.Black;
     this.labelX13.Location = new System.Drawing.Point(309, 8);
     this.labelX13.Name = "labelX13";
     this.labelX13.Size = new System.Drawing.Size(47, 21);
     this.labelX13.TabIndex = 0;
     this.labelX13.Text = "學號:";
     //
     // labelX9
     //
     this.labelX9.AutoSize = true;
     //
     //
     //
     this.labelX9.BackgroundStyle.Class = "";
     this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX9.ForeColor = System.Drawing.Color.Black;
     this.labelX9.Location = new System.Drawing.Point(50, 8);
     this.labelX9.Name = "labelX9";
     this.labelX9.Size = new System.Drawing.Size(47, 21);
     this.labelX9.TabIndex = 0;
     this.labelX9.Text = "姓名:";
     //
     // textBoxX7
     //
     //
     //
     //
     this.textBoxX7.Border.Class = "TextBoxBorder";
     this.textBoxX7.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX7.Location = new System.Drawing.Point(360, 6);
     this.textBoxX7.Name = "textBoxX7";
     this.textBoxX7.Size = new System.Drawing.Size(130, 25);
     this.textBoxX7.TabIndex = 1;
     this.textBoxX7.Tag = "StudentNumber";
     //
     // textBoxX6
     //
     //
     //
     //
     this.textBoxX6.Border.Class = "TextBoxBorder";
     this.textBoxX6.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX6.Location = new System.Drawing.Point(100, 33);
     this.textBoxX6.Name = "textBoxX6";
     this.textBoxX6.Size = new System.Drawing.Size(130, 25);
     this.textBoxX6.TabIndex = 2;
     this.textBoxX6.Tag = "IDNumber";
     //
     // comboBoxEx3
     //
     this.comboBoxEx3.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxEx3.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx3.ItemHeight = 18;
     this.comboBoxEx3.Location = new System.Drawing.Point(359, 64);
     this.comboBoxEx3.Name = "comboBoxEx3";
     this.comboBoxEx3.Size = new System.Drawing.Size(73, 24);
     this.comboBoxEx3.TabIndex = 4;
     this.comboBoxEx3.Tag = "Gender";
     //
     // labelX12
     //
     this.labelX12.AutoSize = true;
     //
     //
     //
     this.labelX12.BackgroundStyle.Class = "";
     this.labelX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX12.ForeColor = System.Drawing.Color.Black;
     this.labelX12.Location = new System.Drawing.Point(309, 36);
     this.labelX12.Name = "labelX12";
     this.labelX12.Size = new System.Drawing.Size(47, 21);
     this.labelX12.TabIndex = 0;
     this.labelX12.Text = "生日:";
     //
     // textBoxX5
     //
     //
     //
     //
     this.textBoxX5.Border.Class = "TextBoxBorder";
     this.textBoxX5.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX5.Location = new System.Drawing.Point(100, 5);
     this.textBoxX5.Name = "textBoxX5";
     this.textBoxX5.Size = new System.Drawing.Size(130, 25);
     this.textBoxX5.TabIndex = 0;
     this.textBoxX5.Tag = "Name";
     //
     // labelX10
     //
     this.labelX10.AutoSize = true;
     //
     //
     //
     this.labelX10.BackgroundStyle.Class = "";
     this.labelX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX10.ForeColor = System.Drawing.Color.Black;
     this.labelX10.Location = new System.Drawing.Point(8, 35);
     this.labelX10.Name = "labelX10";
     this.labelX10.Size = new System.Drawing.Size(87, 21);
     this.labelX10.TabIndex = 0;
     this.labelX10.Text = "身分證字號:";
     //
     // groupPanel2
     //
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.textBoxX23);
     this.groupPanel2.Controls.Add(this.dateTimeInput10);
     this.groupPanel2.Controls.Add(this.labelX44);
     this.groupPanel2.Controls.Add(this.labelX40);
     this.groupPanel2.Controls.Add(this.comboBoxEx18);
     this.groupPanel2.Controls.Add(this.textBoxX3);
     this.groupPanel2.Controls.Add(this.textBoxX2);
     this.groupPanel2.Controls.Add(this.labelX8);
     this.groupPanel2.Controls.Add(this.comboBoxEx2);
     this.groupPanel2.Controls.Add(this.comboBoxEx1);
     this.groupPanel2.Controls.Add(this.labelX7);
     this.groupPanel2.Controls.Add(this.labelX4);
     this.groupPanel2.Controls.Add(this.labelX6);
     this.groupPanel2.Controls.Add(this.labelX3);
     this.groupPanel2.Location = new System.Drawing.Point(3, 6);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(499, 149);
     //
     //
     //
     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.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 = 0;
     this.groupPanel2.Text = "異動狀況";
     //
     // textBoxX23
     //
     //
     //
     //
     this.textBoxX23.Border.Class = "TextBoxBorder";
     this.textBoxX23.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX23.Location = new System.Drawing.Point(99, 91);
     this.textBoxX23.Name = "textBoxX23";
     this.textBoxX23.Size = new System.Drawing.Size(130, 25);
     this.textBoxX23.TabIndex = 13;
     this.textBoxX23.Tag = "SpecialStatus";
     //
     // dateTimeInput10
     //
     //
     //
     //
     this.dateTimeInput10.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput10.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput10.ButtonDropDown.Visible = true;
     this.dateTimeInput10.IsPopupCalendarOpen = false;
     this.dateTimeInput10.Location = new System.Drawing.Point(99, 32);
     //
     //
     //
     this.dateTimeInput10.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput10.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput10.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput10.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput10.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput10.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput10.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput10.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput10.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput10.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput10.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput10.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput10.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput10.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput10.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput10.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput10.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput10.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput10.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput10.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput10.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput10.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput10.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput10.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput10.Name = "dateTimeInput10";
     this.dateTimeInput10.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput10.TabIndex = 12;
     this.dateTimeInput10.Tag = "UpdateDate";
     //
     // labelX44
     //
     this.labelX44.AutoSize = true;
     //
     //
     //
     this.labelX44.BackgroundStyle.Class = "";
     this.labelX44.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX44.ForeColor = System.Drawing.Color.Black;
     this.labelX44.Location = new System.Drawing.Point(-2, 91);
     this.labelX44.Name = "labelX44";
     this.labelX44.Size = new System.Drawing.Size(101, 21);
     this.labelX44.TabIndex = 10;
     this.labelX44.Text = "特殊身份代碼:";
     //
     // labelX40
     //
     this.labelX40.AutoSize = true;
     //
     //
     //
     this.labelX40.BackgroundStyle.Class = "";
     this.labelX40.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX40.ForeColor = System.Drawing.Color.Black;
     this.labelX40.Location = new System.Drawing.Point(49, 64);
     this.labelX40.Name = "labelX40";
     this.labelX40.Size = new System.Drawing.Size(47, 21);
     this.labelX40.TabIndex = 8;
     this.labelX40.Text = "班別:";
     //
     // comboBoxEx18
     //
     this.comboBoxEx18.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx18.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx18.FormattingEnabled = true;
     this.comboBoxEx18.ItemHeight = 18;
     this.comboBoxEx18.Location = new System.Drawing.Point(99, 61);
     this.comboBoxEx18.Name = "comboBoxEx18";
     this.comboBoxEx18.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx18.TabIndex = 9;
     this.comboBoxEx18.Tag = "ClassType";
     //
     // textBoxX3
     //
     //
     //
     //
     this.textBoxX3.Border.Class = "TextBoxBorder";
     this.textBoxX3.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX3.Location = new System.Drawing.Point(362, 30);
     this.textBoxX3.Name = "textBoxX3";
     this.textBoxX3.Size = new System.Drawing.Size(130, 25);
     this.textBoxX3.TabIndex = 3;
     this.textBoxX3.Tag = "Comment";
     //
     // textBoxX2
     //
     //
     //
     //
     this.textBoxX2.Border.Class = "TextBoxBorder";
     this.textBoxX2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX2.Location = new System.Drawing.Point(262, 1);
     this.textBoxX2.Name = "textBoxX2";
     this.textBoxX2.Size = new System.Drawing.Size(230, 25);
     this.textBoxX2.TabIndex = 1;
     this.textBoxX2.Tag = "UpdateDescription";
     //
     // labelX8
     //
     this.labelX8.AutoSize = true;
     //
     //
     //
     this.labelX8.BackgroundStyle.Class = "";
     this.labelX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX8.ForeColor = System.Drawing.Color.Black;
     this.labelX8.Location = new System.Drawing.Point(311, 64);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(47, 21);
     this.labelX8.TabIndex = 0;
     this.labelX8.Text = "科別:";
     //
     // comboBoxEx2
     //
     this.comboBoxEx2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx2.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx2.FormattingEnabled = true;
     this.comboBoxEx2.ItemHeight = 18;
     this.comboBoxEx2.Location = new System.Drawing.Point(362, 59);
     this.comboBoxEx2.Name = "comboBoxEx2";
     this.comboBoxEx2.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx2.TabIndex = 5;
     this.comboBoxEx2.Tag = "Department";
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.ItemHeight = 18;
     this.comboBoxEx1.Location = new System.Drawing.Point(100, 4);
     this.comboBoxEx1.Name = "comboBoxEx1";
     this.comboBoxEx1.Size = new System.Drawing.Size(73, 24);
     this.comboBoxEx1.TabIndex = 0;
     this.comboBoxEx1.Tag = "UpdateCode";
     //
     // labelX7
     //
     this.labelX7.AutoSize = true;
     //
     //
     //
     this.labelX7.BackgroundStyle.Class = "";
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.ForeColor = System.Drawing.Color.Black;
     this.labelX7.Location = new System.Drawing.Point(285, 33);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(74, 21);
     this.labelX7.TabIndex = 0;
     this.labelX7.Text = "備註說明:";
     //
     // labelX4
     //
     this.labelX4.AutoSize = true;
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.ForeColor = System.Drawing.Color.Black;
     this.labelX4.Location = new System.Drawing.Point(23, 35);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(74, 21);
     this.labelX4.TabIndex = 0;
     this.labelX4.Text = "異動日期:";
     //
     // labelX6
     //
     this.labelX6.AutoSize = true;
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.ForeColor = System.Drawing.Color.Black;
     this.labelX6.Location = new System.Drawing.Point(179, 3);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(87, 21);
     this.labelX6.TabIndex = 0;
     this.labelX6.Text = "原因及事項:";
     //
     // labelX3
     //
     this.labelX3.AutoSize = true;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.ForeColor = System.Drawing.Color.Black;
     this.labelX3.Location = new System.Drawing.Point(23, 7);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(74, 21);
     this.labelX3.TabIndex = 0;
     this.labelX3.Text = "資格代碼:";
     //
     // 畢業名冊
     //
     this.畢業名冊.Controls.Add(this.groupPanel13);
     this.畢業名冊.Controls.Add(this.groupPanel12);
     this.畢業名冊.Dock = System.Windows.Forms.DockStyle.Fill;
     this.畢業名冊.Location = new System.Drawing.Point(0, 0);
     this.畢業名冊.Name = "畢業名冊";
     this.畢業名冊.Size = new System.Drawing.Size(511, 465);
     this.畢業名冊.TabIndex = 2;
     //
     // groupPanel13
     //
     this.groupPanel13.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel13.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel13.Controls.Add(this.dateTimeInput3);
     this.groupPanel13.Controls.Add(this.dateTimeInput2);
     this.groupPanel13.Controls.Add(this.textBoxX10);
     this.groupPanel13.Controls.Add(this.labelX17);
     this.groupPanel13.Controls.Add(this.labelX62);
     this.groupPanel13.Controls.Add(this.labelX68);
     this.groupPanel13.Controls.Add(this.labelX63);
     this.groupPanel13.Controls.Add(this.textBoxX41);
     this.groupPanel13.Controls.Add(this.labelX70);
     this.groupPanel13.Controls.Add(this.labelX64);
     this.groupPanel13.Controls.Add(this.textBoxX43);
     this.groupPanel13.Controls.Add(this.textBoxX38);
     this.groupPanel13.Controls.Add(this.textBoxX39);
     this.groupPanel13.Controls.Add(this.labelX67);
     this.groupPanel13.Controls.Add(this.comboBoxEx14);
     this.groupPanel13.Controls.Add(this.textBoxX42);
     this.groupPanel13.Controls.Add(this.labelX65);
     this.groupPanel13.Controls.Add(this.labelX69);
     this.groupPanel13.Controls.Add(this.textBoxX40);
     this.groupPanel13.Controls.Add(this.labelX66);
     this.groupPanel13.Location = new System.Drawing.Point(3, 168);
     this.groupPanel13.Name = "groupPanel13";
     this.groupPanel13.Size = new System.Drawing.Size(499, 206);
     //
     //
     //
     this.groupPanel13.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel13.Style.BackColorGradientAngle = 90;
     this.groupPanel13.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel13.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel13.Style.BorderBottomWidth = 1;
     this.groupPanel13.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel13.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel13.Style.BorderLeftWidth = 1;
     this.groupPanel13.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel13.Style.BorderRightWidth = 1;
     this.groupPanel13.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel13.Style.BorderTopWidth = 1;
     this.groupPanel13.Style.Class = "";
     this.groupPanel13.Style.CornerDiameter = 4;
     this.groupPanel13.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel13.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel13.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel13.StyleMouseDown.Class = "";
     this.groupPanel13.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel13.StyleMouseOver.Class = "";
     this.groupPanel13.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel13.TabIndex = 1;
     this.groupPanel13.Text = "學生基本資料";
     //
     // dateTimeInput3
     //
     //
     //
     //
     this.dateTimeInput3.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput3.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput3.ButtonDropDown.Visible = true;
     this.dateTimeInput3.IsPopupCalendarOpen = false;
     this.dateTimeInput3.Location = new System.Drawing.Point(101, 91);
     //
     //
     //
     this.dateTimeInput3.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput3.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput3.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput3.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput3.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput3.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput3.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput3.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput3.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput3.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput3.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput3.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput3.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput3.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput3.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput3.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput3.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput3.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput3.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput3.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput3.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput3.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput3.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput3.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput3.Name = "dateTimeInput3";
     this.dateTimeInput3.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput3.TabIndex = 14;
     this.dateTimeInput3.Tag = "LastADDate";
     //
     // dateTimeInput2
     //
     //
     //
     //
     this.dateTimeInput2.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput2.ButtonDropDown.Visible = true;
     this.dateTimeInput2.IsPopupCalendarOpen = false;
     this.dateTimeInput2.Location = new System.Drawing.Point(361, 36);
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput2.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput2.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput2.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput2.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput2.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput2.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput2.Name = "dateTimeInput2";
     this.dateTimeInput2.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput2.TabIndex = 13;
     this.dateTimeInput2.Tag = "Birthdate";
     //
     // textBoxX10
     //
     //
     //
     //
     this.textBoxX10.Border.Class = "TextBoxBorder";
     this.textBoxX10.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX10.Location = new System.Drawing.Point(100, 63);
     this.textBoxX10.Name = "textBoxX10";
     this.textBoxX10.Size = new System.Drawing.Size(130, 25);
     this.textBoxX10.TabIndex = 11;
     this.textBoxX10.Tag = "IDNumberComment";
     //
     // labelX17
     //
     this.labelX17.AutoSize = true;
     //
     //
     //
     this.labelX17.BackgroundStyle.Class = "";
     this.labelX17.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX17.Font = new System.Drawing.Font("Microsoft JhengHei", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX17.ForeColor = System.Drawing.Color.Black;
     this.labelX17.Location = new System.Drawing.Point(-2, 64);
     this.labelX17.Name = "labelX17";
     this.labelX17.Size = new System.Drawing.Size(106, 19);
     this.labelX17.TabIndex = 12;
     this.labelX17.Text = "註1(身分證註記):";
     //
     // labelX62
     //
     this.labelX62.AutoSize = true;
     //
     //
     //
     this.labelX62.BackgroundStyle.Class = "";
     this.labelX62.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX62.ForeColor = System.Drawing.Color.Black;
     this.labelX62.Location = new System.Drawing.Point(312, 66);
     this.labelX62.Name = "labelX62";
     this.labelX62.Size = new System.Drawing.Size(47, 21);
     this.labelX62.TabIndex = 0;
     this.labelX62.Text = "性別:";
     //
     // labelX68
     //
     this.labelX68.AutoSize = true;
     //
     //
     //
     this.labelX68.BackgroundStyle.Class = "";
     this.labelX68.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX68.ForeColor = System.Drawing.Color.Black;
     this.labelX68.Location = new System.Drawing.Point(22, 94);
     this.labelX68.Name = "labelX68";
     this.labelX68.Size = new System.Drawing.Size(74, 21);
     this.labelX68.TabIndex = 0;
     this.labelX68.Text = "備查日期:";
     //
     // labelX63
     //
     this.labelX63.AutoSize = true;
     //
     //
     //
     this.labelX63.BackgroundStyle.Class = "";
     this.labelX63.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX63.ForeColor = System.Drawing.Color.Black;
     this.labelX63.Location = new System.Drawing.Point(312, 8);
     this.labelX63.Name = "labelX63";
     this.labelX63.Size = new System.Drawing.Size(47, 21);
     this.labelX63.TabIndex = 0;
     this.labelX63.Text = "學號:";
     //
     // textBoxX41
     //
     //
     //
     //
     this.textBoxX41.Border.Class = "TextBoxBorder";
     this.textBoxX41.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX41.Location = new System.Drawing.Point(100, 150);
     this.textBoxX41.Name = "textBoxX41";
     this.textBoxX41.Size = new System.Drawing.Size(202, 25);
     this.textBoxX41.TabIndex = 8;
     this.textBoxX41.Tag = "GraduateCertificateNumber";
     //
     // labelX70
     //
     this.labelX70.AutoSize = true;
     //
     //
     //
     this.labelX70.BackgroundStyle.Class = "";
     this.labelX70.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX70.ForeColor = System.Drawing.Color.Black;
     this.labelX70.Location = new System.Drawing.Point(-2, 123);
     this.labelX70.Name = "labelX70";
     this.labelX70.Size = new System.Drawing.Size(101, 21);
     this.labelX70.TabIndex = 0;
     this.labelX70.Text = "最後異動代號:";
     //
     // labelX64
     //
     this.labelX64.AutoSize = true;
     //
     //
     //
     this.labelX64.BackgroundStyle.Class = "";
     this.labelX64.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX64.ForeColor = System.Drawing.Color.Black;
     this.labelX64.Location = new System.Drawing.Point(50, 8);
     this.labelX64.Name = "labelX64";
     this.labelX64.Size = new System.Drawing.Size(47, 21);
     this.labelX64.TabIndex = 0;
     this.labelX64.Text = "姓名:";
     //
     // textBoxX43
     //
     //
     //
     //
     this.textBoxX43.Border.Class = "TextBoxBorder";
     this.textBoxX43.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX43.Location = new System.Drawing.Point(359, 91);
     this.textBoxX43.Name = "textBoxX43";
     this.textBoxX43.Size = new System.Drawing.Size(130, 25);
     this.textBoxX43.TabIndex = 7;
     this.textBoxX43.Tag = "LastADNumber";
     //
     // textBoxX38
     //
     //
     //
     //
     this.textBoxX38.Border.Class = "TextBoxBorder";
     this.textBoxX38.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX38.Location = new System.Drawing.Point(360, 5);
     this.textBoxX38.Name = "textBoxX38";
     this.textBoxX38.Size = new System.Drawing.Size(130, 25);
     this.textBoxX38.TabIndex = 1;
     this.textBoxX38.Tag = "StudentNumber";
     //
     // textBoxX39
     //
     //
     //
     //
     this.textBoxX39.Border.Class = "TextBoxBorder";
     this.textBoxX39.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX39.Location = new System.Drawing.Point(100, 33);
     this.textBoxX39.Name = "textBoxX39";
     this.textBoxX39.Size = new System.Drawing.Size(130, 25);
     this.textBoxX39.TabIndex = 2;
     this.textBoxX39.Tag = "IDNumber";
     //
     // labelX67
     //
     this.labelX67.AutoSize = true;
     //
     //
     //
     this.labelX67.BackgroundStyle.Class = "";
     this.labelX67.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX67.ForeColor = System.Drawing.Color.Black;
     this.labelX67.Location = new System.Drawing.Point(-4, 152);
     this.labelX67.Name = "labelX67";
     this.labelX67.Size = new System.Drawing.Size(101, 21);
     this.labelX67.TabIndex = 0;
     this.labelX67.Text = "畢業證書字號:";
     //
     // comboBoxEx14
     //
     this.comboBoxEx14.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx14.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxEx14.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx14.FormattingEnabled = true;
     this.comboBoxEx14.ItemHeight = 18;
     this.comboBoxEx14.Location = new System.Drawing.Point(359, 64);
     this.comboBoxEx14.Name = "comboBoxEx14";
     this.comboBoxEx14.Size = new System.Drawing.Size(73, 24);
     this.comboBoxEx14.TabIndex = 4;
     this.comboBoxEx14.Tag = "Gender";
     //
     // textBoxX42
     //
     //
     //
     //
     this.textBoxX42.Border.Class = "TextBoxBorder";
     this.textBoxX42.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX42.Location = new System.Drawing.Point(99, 120);
     this.textBoxX42.Name = "textBoxX42";
     this.textBoxX42.Size = new System.Drawing.Size(130, 25);
     this.textBoxX42.TabIndex = 5;
     this.textBoxX42.Tag = "LastUpdateCode";
     //
     // labelX65
     //
     this.labelX65.AutoSize = true;
     //
     //
     //
     this.labelX65.BackgroundStyle.Class = "";
     this.labelX65.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX65.ForeColor = System.Drawing.Color.Black;
     this.labelX65.Location = new System.Drawing.Point(312, 36);
     this.labelX65.Name = "labelX65";
     this.labelX65.Size = new System.Drawing.Size(47, 21);
     this.labelX65.TabIndex = 0;
     this.labelX65.Text = "生日:";
     //
     // labelX69
     //
     this.labelX69.AutoSize = true;
     //
     //
     //
     this.labelX69.BackgroundStyle.Class = "";
     this.labelX69.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX69.ForeColor = System.Drawing.Color.Black;
     this.labelX69.Location = new System.Drawing.Point(285, 94);
     this.labelX69.Name = "labelX69";
     this.labelX69.Size = new System.Drawing.Size(74, 21);
     this.labelX69.TabIndex = 0;
     this.labelX69.Text = "備查文號:";
     //
     // textBoxX40
     //
     //
     //
     //
     this.textBoxX40.Border.Class = "TextBoxBorder";
     this.textBoxX40.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX40.Location = new System.Drawing.Point(100, 5);
     this.textBoxX40.Name = "textBoxX40";
     this.textBoxX40.Size = new System.Drawing.Size(130, 25);
     this.textBoxX40.TabIndex = 0;
     this.textBoxX40.Tag = "Name";
     //
     // labelX66
     //
     this.labelX66.AutoSize = true;
     //
     //
     //
     this.labelX66.BackgroundStyle.Class = "";
     this.labelX66.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX66.ForeColor = System.Drawing.Color.Black;
     this.labelX66.Location = new System.Drawing.Point(9, 35);
     this.labelX66.Name = "labelX66";
     this.labelX66.Size = new System.Drawing.Size(87, 21);
     this.labelX66.TabIndex = 0;
     this.labelX66.Text = "身分證字號:";
     //
     // groupPanel12
     //
     this.groupPanel12.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel12.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel12.Controls.Add(this.dateTimeInput1);
     this.groupPanel12.Controls.Add(this.labelX21);
     this.groupPanel12.Controls.Add(this.comboBoxEx17);
     this.groupPanel12.Controls.Add(this.textBoxX36);
     this.groupPanel12.Controls.Add(this.textBoxX37);
     this.groupPanel12.Controls.Add(this.labelX56);
     this.groupPanel12.Controls.Add(this.comboBoxEx11);
     this.groupPanel12.Controls.Add(this.comboBoxEx13);
     this.groupPanel12.Controls.Add(this.labelX57);
     this.groupPanel12.Controls.Add(this.labelX58);
     this.groupPanel12.Controls.Add(this.labelX59);
     this.groupPanel12.Controls.Add(this.labelX60);
     this.groupPanel12.Controls.Add(this.labelX61);
     this.groupPanel12.Controls.Add(this.comboBoxEx15);
     this.groupPanel12.Location = new System.Drawing.Point(3, 11);
     this.groupPanel12.Name = "groupPanel12";
     this.groupPanel12.Size = new System.Drawing.Size(499, 148);
     //
     //
     //
     this.groupPanel12.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel12.Style.BackColorGradientAngle = 90;
     this.groupPanel12.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel12.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel12.Style.BorderBottomWidth = 1;
     this.groupPanel12.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel12.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel12.Style.BorderLeftWidth = 1;
     this.groupPanel12.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel12.Style.BorderRightWidth = 1;
     this.groupPanel12.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel12.Style.BorderTopWidth = 1;
     this.groupPanel12.Style.Class = "";
     this.groupPanel12.Style.CornerDiameter = 4;
     this.groupPanel12.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel12.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel12.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel12.StyleMouseDown.Class = "";
     this.groupPanel12.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel12.StyleMouseOver.Class = "";
     this.groupPanel12.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel12.TabIndex = 0;
     this.groupPanel12.Text = "異動狀況";
     //
     // dateTimeInput1
     //
     //
     //
     //
     this.dateTimeInput1.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput1.ButtonDropDown.Visible = true;
     this.dateTimeInput1.IsPopupCalendarOpen = false;
     this.dateTimeInput1.Location = new System.Drawing.Point(99, 30);
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput1.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput1.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput1.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput1.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput1.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput1.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput1.Name = "dateTimeInput1";
     this.dateTimeInput1.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput1.TabIndex = 10;
     this.dateTimeInput1.Tag = "UpdateDate";
     //
     // labelX21
     //
     this.labelX21.AutoSize = true;
     //
     //
     //
     this.labelX21.BackgroundStyle.Class = "";
     this.labelX21.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX21.ForeColor = System.Drawing.Color.Black;
     this.labelX21.Location = new System.Drawing.Point(49, 94);
     this.labelX21.Name = "labelX21";
     this.labelX21.Size = new System.Drawing.Size(47, 21);
     this.labelX21.TabIndex = 8;
     this.labelX21.Text = "班別:";
     //
     // comboBoxEx17
     //
     this.comboBoxEx17.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx17.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx17.FormattingEnabled = true;
     this.comboBoxEx17.ItemHeight = 18;
     this.comboBoxEx17.Location = new System.Drawing.Point(99, 91);
     this.comboBoxEx17.Name = "comboBoxEx17";
     this.comboBoxEx17.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx17.TabIndex = 9;
     this.comboBoxEx17.Tag = "ClassType";
     //
     // textBoxX36
     //
     //
     //
     //
     this.textBoxX36.Border.Class = "TextBoxBorder";
     this.textBoxX36.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX36.Location = new System.Drawing.Point(361, 31);
     this.textBoxX36.Name = "textBoxX36";
     this.textBoxX36.Size = new System.Drawing.Size(130, 25);
     this.textBoxX36.TabIndex = 3;
     this.textBoxX36.Tag = "Comment";
     //
     // textBoxX37
     //
     //
     //
     //
     this.textBoxX37.Border.Class = "TextBoxBorder";
     this.textBoxX37.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX37.Location = new System.Drawing.Point(261, 0);
     this.textBoxX37.Name = "textBoxX37";
     this.textBoxX37.Size = new System.Drawing.Size(230, 25);
     this.textBoxX37.TabIndex = 1;
     this.textBoxX37.Tag = "UpdateDescription";
     //
     // labelX56
     //
     this.labelX56.AutoSize = true;
     //
     //
     //
     this.labelX56.BackgroundStyle.Class = "";
     this.labelX56.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX56.ForeColor = System.Drawing.Color.Black;
     this.labelX56.Location = new System.Drawing.Point(313, 64);
     this.labelX56.Name = "labelX56";
     this.labelX56.Size = new System.Drawing.Size(47, 21);
     this.labelX56.TabIndex = 0;
     this.labelX56.Text = "科別:";
     //
     // comboBoxEx11
     //
     this.comboBoxEx11.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx11.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx11.FormattingEnabled = true;
     this.comboBoxEx11.ItemHeight = 18;
     this.comboBoxEx11.Location = new System.Drawing.Point(361, 61);
     this.comboBoxEx11.Name = "comboBoxEx11";
     this.comboBoxEx11.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx11.TabIndex = 5;
     this.comboBoxEx11.Tag = "Department";
     //
     // comboBoxEx13
     //
     this.comboBoxEx13.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx13.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx13.FormattingEnabled = true;
     this.comboBoxEx13.ItemHeight = 18;
     this.comboBoxEx13.Location = new System.Drawing.Point(100, 4);
     this.comboBoxEx13.Name = "comboBoxEx13";
     this.comboBoxEx13.Size = new System.Drawing.Size(73, 24);
     this.comboBoxEx13.TabIndex = 0;
     this.comboBoxEx13.Tag = "UpdateCode";
     //
     // labelX57
     //
     this.labelX57.AutoSize = true;
     //
     //
     //
     this.labelX57.BackgroundStyle.Class = "";
     this.labelX57.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX57.ForeColor = System.Drawing.Color.Black;
     this.labelX57.Location = new System.Drawing.Point(49, 64);
     this.labelX57.Name = "labelX57";
     this.labelX57.Size = new System.Drawing.Size(47, 21);
     this.labelX57.TabIndex = 0;
     this.labelX57.Text = "年級:";
     //
     // labelX58
     //
     this.labelX58.AutoSize = true;
     //
     //
     //
     this.labelX58.BackgroundStyle.Class = "";
     this.labelX58.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX58.ForeColor = System.Drawing.Color.Black;
     this.labelX58.Location = new System.Drawing.Point(312, 35);
     this.labelX58.Name = "labelX58";
     this.labelX58.Size = new System.Drawing.Size(47, 21);
     this.labelX58.TabIndex = 0;
     this.labelX58.Text = "備註:";
     //
     // labelX59
     //
     this.labelX59.AutoSize = true;
     //
     //
     //
     this.labelX59.BackgroundStyle.Class = "";
     this.labelX59.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX59.ForeColor = System.Drawing.Color.Black;
     this.labelX59.Location = new System.Drawing.Point(23, 35);
     this.labelX59.Name = "labelX59";
     this.labelX59.Size = new System.Drawing.Size(74, 21);
     this.labelX59.TabIndex = 0;
     this.labelX59.Text = "異動日期:";
     //
     // labelX60
     //
     this.labelX60.AutoSize = true;
     //
     //
     //
     this.labelX60.BackgroundStyle.Class = "";
     this.labelX60.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX60.ForeColor = System.Drawing.Color.Black;
     this.labelX60.Location = new System.Drawing.Point(179, 4);
     this.labelX60.Name = "labelX60";
     this.labelX60.Size = new System.Drawing.Size(87, 21);
     this.labelX60.TabIndex = 0;
     this.labelX60.Text = "原因及事項:";
     //
     // labelX61
     //
     this.labelX61.AutoSize = true;
     //
     //
     //
     this.labelX61.BackgroundStyle.Class = "";
     this.labelX61.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX61.ForeColor = System.Drawing.Color.Black;
     this.labelX61.Location = new System.Drawing.Point(22, 6);
     this.labelX61.Name = "labelX61";
     this.labelX61.Size = new System.Drawing.Size(74, 21);
     this.labelX61.TabIndex = 0;
     this.labelX61.Text = "異動代碼:";
     //
     // comboBoxEx15
     //
     this.comboBoxEx15.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx15.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx15.FormattingEnabled = true;
     this.comboBoxEx15.ItemHeight = 18;
     this.comboBoxEx15.Location = new System.Drawing.Point(100, 61);
     this.comboBoxEx15.Name = "comboBoxEx15";
     this.comboBoxEx15.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx15.TabIndex = 4;
     this.comboBoxEx15.Tag = "GradeYear";
     //
     // 轉入名冊
     //
     this.轉入名冊.Controls.Add(this.groupPanel8);
     this.轉入名冊.Controls.Add(this.groupPanel7);
     this.轉入名冊.Controls.Add(this.groupPanel6);
     this.轉入名冊.Dock = System.Windows.Forms.DockStyle.Fill;
     this.轉入名冊.Location = new System.Drawing.Point(0, 0);
     this.轉入名冊.Name = "轉入名冊";
     this.轉入名冊.Size = new System.Drawing.Size(511, 465);
     this.轉入名冊.TabIndex = 3;
     //
     // groupPanel8
     //
     this.groupPanel8.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel8.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel8.Controls.Add(this.dateTimeInput7);
     this.groupPanel8.Controls.Add(this.textBoxX25);
     this.groupPanel8.Controls.Add(this.textBoxX19);
     this.groupPanel8.Controls.Add(this.textBoxX26);
     this.groupPanel8.Controls.Add(this.textBoxX20);
     this.groupPanel8.Controls.Add(this.textBoxX21);
     this.groupPanel8.Controls.Add(this.labelX34);
     this.groupPanel8.Controls.Add(this.labelX35);
     this.groupPanel8.Controls.Add(this.labelX36);
     this.groupPanel8.Controls.Add(this.labelX37);
     this.groupPanel8.Controls.Add(this.labelX38);
     this.groupPanel8.Controls.Add(this.labelX39);
     this.groupPanel8.Location = new System.Drawing.Point(4, 270);
     this.groupPanel8.Name = "groupPanel8";
     this.groupPanel8.Size = new System.Drawing.Size(498, 104);
     //
     //
     //
     this.groupPanel8.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel8.Style.BackColorGradientAngle = 90;
     this.groupPanel8.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel8.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel8.Style.BorderBottomWidth = 1;
     this.groupPanel8.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel8.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel8.Style.BorderLeftWidth = 1;
     this.groupPanel8.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel8.Style.BorderRightWidth = 1;
     this.groupPanel8.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel8.Style.BorderTopWidth = 1;
     this.groupPanel8.Style.Class = "";
     this.groupPanel8.Style.CornerDiameter = 4;
     this.groupPanel8.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel8.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel8.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel8.StyleMouseDown.Class = "";
     this.groupPanel8.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel8.StyleMouseOver.Class = "";
     this.groupPanel8.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel8.TabIndex = 0;
     this.groupPanel8.Text = "原就讀學校資料";
     //
     // dateTimeInput7
     //
     //
     //
     //
     this.dateTimeInput7.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput7.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput7.ButtonDropDown.Visible = true;
     this.dateTimeInput7.IsPopupCalendarOpen = false;
     this.dateTimeInput7.Location = new System.Drawing.Point(98, 54);
     //
     //
     //
     this.dateTimeInput7.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput7.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput7.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput7.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput7.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput7.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput7.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput7.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput7.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput7.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput7.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput7.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput7.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput7.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput7.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput7.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput7.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput7.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput7.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput7.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput7.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput7.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput7.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput7.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput7.Name = "dateTimeInput7";
     this.dateTimeInput7.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput7.TabIndex = 6;
     this.dateTimeInput7.Tag = "PreviousSchoolLastADDate";
     //
     // textBoxX25
     //
     //
     //
     //
     this.textBoxX25.Border.Class = "TextBoxBorder";
     this.textBoxX25.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX25.Location = new System.Drawing.Point(100, 0);
     this.textBoxX25.Name = "textBoxX25";
     this.textBoxX25.Size = new System.Drawing.Size(130, 25);
     this.textBoxX25.TabIndex = 0;
     this.textBoxX25.Tag = "PreviousSchool";
     this.textBoxX25.WatermarkText = "學校代號+校名";
     //
     // textBoxX19
     //
     //
     //
     //
     this.textBoxX19.Border.Class = "TextBoxBorder";
     this.textBoxX19.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX19.Location = new System.Drawing.Point(100, 26);
     this.textBoxX19.Name = "textBoxX19";
     this.textBoxX19.Size = new System.Drawing.Size(130, 25);
     this.textBoxX19.TabIndex = 2;
     this.textBoxX19.Tag = "PreviousDepartment";
     //
     // textBoxX26
     //
     //
     //
     //
     this.textBoxX26.Border.Class = "TextBoxBorder";
     this.textBoxX26.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX26.Location = new System.Drawing.Point(358, 52);
     this.textBoxX26.Name = "textBoxX26";
     this.textBoxX26.Size = new System.Drawing.Size(130, 25);
     this.textBoxX26.TabIndex = 5;
     this.textBoxX26.Tag = "PreviousSchoolLastADNumber";
     //
     // textBoxX20
     //
     //
     //
     //
     this.textBoxX20.Border.Class = "TextBoxBorder";
     this.textBoxX20.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX20.Location = new System.Drawing.Point(358, 26);
     this.textBoxX20.Name = "textBoxX20";
     this.textBoxX20.Size = new System.Drawing.Size(130, 25);
     this.textBoxX20.TabIndex = 3;
     this.textBoxX20.Tag = "PreviousGradeYear";
     this.textBoxX20.WatermarkText = "一上、一下...";
     //
     // textBoxX21
     //
     //
     //
     //
     this.textBoxX21.Border.Class = "TextBoxBorder";
     this.textBoxX21.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX21.Location = new System.Drawing.Point(358, 0);
     this.textBoxX21.Name = "textBoxX21";
     this.textBoxX21.Size = new System.Drawing.Size(130, 25);
     this.textBoxX21.TabIndex = 1;
     this.textBoxX21.Tag = "PreviousStudentNumber";
     //
     // labelX34
     //
     this.labelX34.AutoSize = true;
     //
     //
     //
     this.labelX34.BackgroundStyle.Class = "";
     this.labelX34.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX34.ForeColor = System.Drawing.Color.Black;
     this.labelX34.Location = new System.Drawing.Point(280, 52);
     this.labelX34.Name = "labelX34";
     this.labelX34.Size = new System.Drawing.Size(74, 21);
     this.labelX34.TabIndex = 0;
     this.labelX34.Text = "備查文號:";
     //
     // labelX35
     //
     this.labelX35.AutoSize = true;
     //
     //
     //
     this.labelX35.BackgroundStyle.Class = "";
     this.labelX35.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX35.ForeColor = System.Drawing.Color.Black;
     this.labelX35.Location = new System.Drawing.Point(23, 55);
     this.labelX35.Name = "labelX35";
     this.labelX35.Size = new System.Drawing.Size(74, 21);
     this.labelX35.TabIndex = 0;
     this.labelX35.Text = "備查日期:";
     //
     // labelX36
     //
     this.labelX36.AutoSize = true;
     //
     //
     //
     this.labelX36.BackgroundStyle.Class = "";
     this.labelX36.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX36.ForeColor = System.Drawing.Color.Black;
     this.labelX36.Location = new System.Drawing.Point(307, 26);
     this.labelX36.Name = "labelX36";
     this.labelX36.Size = new System.Drawing.Size(47, 21);
     this.labelX36.TabIndex = 0;
     this.labelX36.Text = "年級:";
     //
     // labelX37
     //
     this.labelX37.AutoSize = true;
     //
     //
     //
     this.labelX37.BackgroundStyle.Class = "";
     this.labelX37.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX37.ForeColor = System.Drawing.Color.Black;
     this.labelX37.Location = new System.Drawing.Point(50, 29);
     this.labelX37.Name = "labelX37";
     this.labelX37.Size = new System.Drawing.Size(47, 21);
     this.labelX37.TabIndex = 0;
     this.labelX37.Text = "科別:";
     //
     // labelX38
     //
     this.labelX38.AutoSize = true;
     //
     //
     //
     this.labelX38.BackgroundStyle.Class = "";
     this.labelX38.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX38.ForeColor = System.Drawing.Color.Black;
     this.labelX38.Location = new System.Drawing.Point(307, 0);
     this.labelX38.Name = "labelX38";
     this.labelX38.Size = new System.Drawing.Size(47, 21);
     this.labelX38.TabIndex = 0;
     this.labelX38.Text = "學號:";
     //
     // labelX39
     //
     this.labelX39.AutoSize = true;
     //
     //
     //
     this.labelX39.BackgroundStyle.Class = "";
     this.labelX39.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX39.ForeColor = System.Drawing.Color.Black;
     this.labelX39.Location = new System.Drawing.Point(10, 3);
     this.labelX39.Name = "labelX39";
     this.labelX39.Size = new System.Drawing.Size(87, 21);
     this.labelX39.TabIndex = 0;
     this.labelX39.Text = "原就讀學校:";
     //
     // groupPanel7
     //
     this.groupPanel7.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel7.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel7.Controls.Add(this.dateTimeInput6);
     this.groupPanel7.Controls.Add(this.textBoxX4);
     this.groupPanel7.Controls.Add(this.labelX16);
     this.groupPanel7.Controls.Add(this.labelX28);
     this.groupPanel7.Controls.Add(this.labelX29);
     this.groupPanel7.Controls.Add(this.labelX30);
     this.groupPanel7.Controls.Add(this.textBoxX16);
     this.groupPanel7.Controls.Add(this.textBoxX17);
     this.groupPanel7.Controls.Add(this.comboBoxEx8);
     this.groupPanel7.Controls.Add(this.labelX31);
     this.groupPanel7.Controls.Add(this.textBoxX18);
     this.groupPanel7.Controls.Add(this.labelX32);
     this.groupPanel7.Location = new System.Drawing.Point(4, 156);
     this.groupPanel7.Name = "groupPanel7";
     this.groupPanel7.Size = new System.Drawing.Size(498, 108);
     //
     //
     //
     this.groupPanel7.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel7.Style.BackColorGradientAngle = 90;
     this.groupPanel7.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel7.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel7.Style.BorderBottomWidth = 1;
     this.groupPanel7.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel7.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel7.Style.BorderLeftWidth = 1;
     this.groupPanel7.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel7.Style.BorderRightWidth = 1;
     this.groupPanel7.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel7.Style.BorderTopWidth = 1;
     this.groupPanel7.Style.Class = "";
     this.groupPanel7.Style.CornerDiameter = 4;
     this.groupPanel7.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel7.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel7.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel7.StyleMouseDown.Class = "";
     this.groupPanel7.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel7.StyleMouseOver.Class = "";
     this.groupPanel7.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel7.TabIndex = 0;
     this.groupPanel7.Text = "學生基本資料";
     //
     // dateTimeInput6
     //
     //
     //
     //
     this.dateTimeInput6.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput6.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput6.ButtonDropDown.Visible = true;
     this.dateTimeInput6.IsPopupCalendarOpen = false;
     this.dateTimeInput6.Location = new System.Drawing.Point(358, 27);
     //
     //
     //
     this.dateTimeInput6.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput6.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput6.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput6.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput6.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput6.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput6.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput6.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput6.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput6.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput6.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput6.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput6.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput6.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput6.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput6.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput6.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput6.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput6.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput6.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput6.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput6.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput6.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput6.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput6.Name = "dateTimeInput6";
     this.dateTimeInput6.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput6.TabIndex = 11;
     this.dateTimeInput6.Tag = "Birthdate";
     //
     // textBoxX4
     //
     //
     //
     //
     this.textBoxX4.Border.Class = "TextBoxBorder";
     this.textBoxX4.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX4.Location = new System.Drawing.Point(100, 55);
     this.textBoxX4.Name = "textBoxX4";
     this.textBoxX4.Size = new System.Drawing.Size(130, 25);
     this.textBoxX4.TabIndex = 9;
     this.textBoxX4.Tag = "IDNumberComment";
     //
     // labelX16
     //
     this.labelX16.AutoSize = true;
     //
     //
     //
     this.labelX16.BackgroundStyle.Class = "";
     this.labelX16.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX16.Font = new System.Drawing.Font("Microsoft JhengHei", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX16.ForeColor = System.Drawing.Color.Black;
     this.labelX16.Location = new System.Drawing.Point(0, 55);
     this.labelX16.Name = "labelX16";
     this.labelX16.Size = new System.Drawing.Size(106, 19);
     this.labelX16.TabIndex = 10;
     this.labelX16.Text = "註1(身分證註記):";
     //
     // labelX28
     //
     this.labelX28.AutoSize = true;
     //
     //
     //
     this.labelX28.BackgroundStyle.Class = "";
     this.labelX28.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX28.ForeColor = System.Drawing.Color.Black;
     this.labelX28.Location = new System.Drawing.Point(307, 54);
     this.labelX28.Name = "labelX28";
     this.labelX28.Size = new System.Drawing.Size(47, 21);
     this.labelX28.TabIndex = 6;
     this.labelX28.Text = "性別:";
     //
     // labelX29
     //
     this.labelX29.AutoSize = true;
     //
     //
     //
     this.labelX29.BackgroundStyle.Class = "";
     this.labelX29.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX29.ForeColor = System.Drawing.Color.Black;
     this.labelX29.Location = new System.Drawing.Point(307, 0);
     this.labelX29.Name = "labelX29";
     this.labelX29.Size = new System.Drawing.Size(47, 21);
     this.labelX29.TabIndex = 8;
     this.labelX29.Text = "學號:";
     //
     // labelX30
     //
     this.labelX30.AutoSize = true;
     //
     //
     //
     this.labelX30.BackgroundStyle.Class = "";
     this.labelX30.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX30.ForeColor = System.Drawing.Color.Black;
     this.labelX30.Location = new System.Drawing.Point(50, 4);
     this.labelX30.Name = "labelX30";
     this.labelX30.Size = new System.Drawing.Size(47, 21);
     this.labelX30.TabIndex = 3;
     this.labelX30.Text = "姓名:";
     //
     // textBoxX16
     //
     //
     //
     //
     this.textBoxX16.Border.Class = "TextBoxBorder";
     this.textBoxX16.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX16.Location = new System.Drawing.Point(358, 0);
     this.textBoxX16.Name = "textBoxX16";
     this.textBoxX16.Size = new System.Drawing.Size(130, 25);
     this.textBoxX16.TabIndex = 1;
     this.textBoxX16.Tag = "StudentNumber";
     //
     // textBoxX17
     //
     //
     //
     //
     this.textBoxX17.Border.Class = "TextBoxBorder";
     this.textBoxX17.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX17.Location = new System.Drawing.Point(100, 28);
     this.textBoxX17.Name = "textBoxX17";
     this.textBoxX17.Size = new System.Drawing.Size(130, 25);
     this.textBoxX17.TabIndex = 2;
     this.textBoxX17.Tag = "IDNumber";
     //
     // comboBoxEx8
     //
     this.comboBoxEx8.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx8.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxEx8.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx8.FormattingEnabled = true;
     this.comboBoxEx8.ItemHeight = 18;
     this.comboBoxEx8.Location = new System.Drawing.Point(358, 54);
     this.comboBoxEx8.Name = "comboBoxEx8";
     this.comboBoxEx8.Size = new System.Drawing.Size(73, 24);
     this.comboBoxEx8.TabIndex = 4;
     this.comboBoxEx8.Tag = "Gender";
     //
     // labelX31
     //
     this.labelX31.AutoSize = true;
     //
     //
     //
     this.labelX31.BackgroundStyle.Class = "";
     this.labelX31.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX31.ForeColor = System.Drawing.Color.Black;
     this.labelX31.Location = new System.Drawing.Point(307, 27);
     this.labelX31.Name = "labelX31";
     this.labelX31.Size = new System.Drawing.Size(47, 21);
     this.labelX31.TabIndex = 4;
     this.labelX31.Text = "生日:";
     //
     // textBoxX18
     //
     //
     //
     //
     this.textBoxX18.Border.Class = "TextBoxBorder";
     this.textBoxX18.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX18.Location = new System.Drawing.Point(100, 1);
     this.textBoxX18.Name = "textBoxX18";
     this.textBoxX18.Size = new System.Drawing.Size(130, 25);
     this.textBoxX18.TabIndex = 0;
     this.textBoxX18.Tag = "Name";
     //
     // labelX32
     //
     this.labelX32.AutoSize = true;
     //
     //
     //
     this.labelX32.BackgroundStyle.Class = "";
     this.labelX32.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX32.ForeColor = System.Drawing.Color.Black;
     this.labelX32.Location = new System.Drawing.Point(23, 31);
     this.labelX32.Name = "labelX32";
     this.labelX32.Size = new System.Drawing.Size(87, 21);
     this.labelX32.TabIndex = 7;
     this.labelX32.Text = "身分證字號:";
     //
     // groupPanel6
     //
     this.groupPanel6.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel6.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel6.Controls.Add(this.textBoxX24);
     this.groupPanel6.Controls.Add(this.dateTimeInput5);
     this.groupPanel6.Controls.Add(this.labelX71);
     this.groupPanel6.Controls.Add(this.labelX41);
     this.groupPanel6.Controls.Add(this.comboBoxEx19);
     this.groupPanel6.Controls.Add(this.comboBoxEx12);
     this.groupPanel6.Controls.Add(this.textBoxX14);
     this.groupPanel6.Controls.Add(this.textBoxX15);
     this.groupPanel6.Controls.Add(this.labelX22);
     this.groupPanel6.Controls.Add(this.comboBoxEx6);
     this.groupPanel6.Controls.Add(this.comboBoxEx7);
     this.groupPanel6.Controls.Add(this.labelX23);
     this.groupPanel6.Controls.Add(this.labelX24);
     this.groupPanel6.Controls.Add(this.labelX25);
     this.groupPanel6.Controls.Add(this.labelX26);
     this.groupPanel6.Controls.Add(this.labelX27);
     this.groupPanel6.Location = new System.Drawing.Point(3, 1);
     this.groupPanel6.Name = "groupPanel6";
     this.groupPanel6.Size = new System.Drawing.Size(499, 144);
     //
     //
     //
     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.Class = "";
     this.groupPanel6.Style.CornerDiameter = 4;
     this.groupPanel6.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel6.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel6.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel6.StyleMouseDown.Class = "";
     this.groupPanel6.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel6.StyleMouseOver.Class = "";
     this.groupPanel6.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel6.TabIndex = 0;
     this.groupPanel6.Text = "異動狀況";
     //
     // textBoxX24
     //
     //
     //
     //
     this.textBoxX24.Border.Class = "TextBoxBorder";
     this.textBoxX24.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX24.Location = new System.Drawing.Point(359, 87);
     this.textBoxX24.Name = "textBoxX24";
     this.textBoxX24.Size = new System.Drawing.Size(130, 25);
     this.textBoxX24.TabIndex = 13;
     this.textBoxX24.Tag = "SpecialStatus";
     //
     // dateTimeInput5
     //
     //
     //
     //
     this.dateTimeInput5.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput5.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput5.ButtonDropDown.Visible = true;
     this.dateTimeInput5.IsPopupCalendarOpen = false;
     this.dateTimeInput5.Location = new System.Drawing.Point(100, 34);
     //
     //
     //
     this.dateTimeInput5.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput5.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput5.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput5.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput5.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput5.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput5.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput5.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput5.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput5.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput5.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput5.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput5.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput5.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput5.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput5.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput5.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput5.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput5.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput5.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput5.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput5.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput5.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput5.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput5.Name = "dateTimeInput5";
     this.dateTimeInput5.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput5.TabIndex = 12;
     this.dateTimeInput5.Tag = "UpdateDate";
     //
     // labelX71
     //
     this.labelX71.AutoSize = true;
     //
     //
     //
     this.labelX71.BackgroundStyle.Class = "";
     this.labelX71.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX71.ForeColor = System.Drawing.Color.Black;
     this.labelX71.Location = new System.Drawing.Point(253, 93);
     this.labelX71.Name = "labelX71";
     this.labelX71.Size = new System.Drawing.Size(101, 21);
     this.labelX71.TabIndex = 10;
     this.labelX71.Text = "特殊身份代碼:";
     //
     // labelX41
     //
     this.labelX41.AutoSize = true;
     //
     //
     //
     this.labelX41.BackgroundStyle.Class = "";
     this.labelX41.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX41.ForeColor = System.Drawing.Color.Black;
     this.labelX41.Location = new System.Drawing.Point(49, 94);
     this.labelX41.Name = "labelX41";
     this.labelX41.Size = new System.Drawing.Size(47, 21);
     this.labelX41.TabIndex = 8;
     this.labelX41.Text = "班別:";
     //
     // comboBoxEx19
     //
     this.comboBoxEx19.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx19.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx19.FormattingEnabled = true;
     this.comboBoxEx19.ItemHeight = 18;
     this.comboBoxEx19.Location = new System.Drawing.Point(99, 91);
     this.comboBoxEx19.Name = "comboBoxEx19";
     this.comboBoxEx19.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx19.TabIndex = 9;
     this.comboBoxEx19.Tag = "ClassType";
     //
     // comboBoxEx12
     //
     this.comboBoxEx12.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx12.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx12.FormattingEnabled = true;
     this.comboBoxEx12.ItemHeight = 18;
     this.comboBoxEx12.Location = new System.Drawing.Point(100, 61);
     this.comboBoxEx12.Name = "comboBoxEx12";
     this.comboBoxEx12.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx12.TabIndex = 4;
     this.comboBoxEx12.Tag = "GradeYear";
     //
     // textBoxX14
     //
     //
     //
     //
     this.textBoxX14.Border.Class = "TextBoxBorder";
     this.textBoxX14.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX14.Location = new System.Drawing.Point(359, 33);
     this.textBoxX14.Name = "textBoxX14";
     this.textBoxX14.Size = new System.Drawing.Size(130, 25);
     this.textBoxX14.TabIndex = 3;
     this.textBoxX14.Tag = "Comment";
     //
     // textBoxX15
     //
     //
     //
     //
     this.textBoxX15.Border.Class = "TextBoxBorder";
     this.textBoxX15.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX15.Location = new System.Drawing.Point(259, 3);
     this.textBoxX15.Name = "textBoxX15";
     this.textBoxX15.Size = new System.Drawing.Size(230, 25);
     this.textBoxX15.TabIndex = 1;
     this.textBoxX15.Tag = "UpdateDescription";
     //
     // labelX22
     //
     this.labelX22.AutoSize = true;
     //
     //
     //
     this.labelX22.BackgroundStyle.Class = "";
     this.labelX22.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX22.ForeColor = System.Drawing.Color.Black;
     this.labelX22.Location = new System.Drawing.Point(307, 62);
     this.labelX22.Name = "labelX22";
     this.labelX22.Size = new System.Drawing.Size(47, 21);
     this.labelX22.TabIndex = 0;
     this.labelX22.Text = "科別:";
     //
     // comboBoxEx6
     //
     this.comboBoxEx6.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx6.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx6.FormattingEnabled = true;
     this.comboBoxEx6.ItemHeight = 18;
     this.comboBoxEx6.Location = new System.Drawing.Point(359, 60);
     this.comboBoxEx6.Name = "comboBoxEx6";
     this.comboBoxEx6.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx6.TabIndex = 5;
     this.comboBoxEx6.Tag = "Department";
     //
     // comboBoxEx7
     //
     this.comboBoxEx7.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx7.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx7.FormattingEnabled = true;
     this.comboBoxEx7.ItemHeight = 18;
     this.comboBoxEx7.Location = new System.Drawing.Point(100, 4);
     this.comboBoxEx7.Name = "comboBoxEx7";
     this.comboBoxEx7.Size = new System.Drawing.Size(73, 24);
     this.comboBoxEx7.TabIndex = 0;
     this.comboBoxEx7.Tag = "UpdateCode";
     //
     // labelX23
     //
     this.labelX23.AutoSize = true;
     //
     //
     //
     this.labelX23.BackgroundStyle.Class = "";
     this.labelX23.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX23.ForeColor = System.Drawing.Color.Black;
     this.labelX23.Location = new System.Drawing.Point(50, 63);
     this.labelX23.Name = "labelX23";
     this.labelX23.Size = new System.Drawing.Size(47, 21);
     this.labelX23.TabIndex = 0;
     this.labelX23.Text = "年級:";
     //
     // labelX24
     //
     this.labelX24.AutoSize = true;
     //
     //
     //
     this.labelX24.BackgroundStyle.Class = "";
     this.labelX24.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX24.ForeColor = System.Drawing.Color.Black;
     this.labelX24.Location = new System.Drawing.Point(282, 37);
     this.labelX24.Name = "labelX24";
     this.labelX24.Size = new System.Drawing.Size(74, 21);
     this.labelX24.TabIndex = 0;
     this.labelX24.Text = "備註說明:";
     //
     // labelX25
     //
     this.labelX25.AutoSize = true;
     //
     //
     //
     this.labelX25.BackgroundStyle.Class = "";
     this.labelX25.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX25.ForeColor = System.Drawing.Color.Black;
     this.labelX25.Location = new System.Drawing.Point(23, 37);
     this.labelX25.Name = "labelX25";
     this.labelX25.Size = new System.Drawing.Size(74, 21);
     this.labelX25.TabIndex = 0;
     this.labelX25.Text = "異動日期:";
     //
     // labelX26
     //
     this.labelX26.AutoSize = true;
     //
     //
     //
     this.labelX26.BackgroundStyle.Class = "";
     this.labelX26.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX26.ForeColor = System.Drawing.Color.Black;
     this.labelX26.Location = new System.Drawing.Point(179, 4);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(87, 21);
     this.labelX26.TabIndex = 0;
     this.labelX26.Text = "原因及事項:";
     //
     // labelX27
     //
     this.labelX27.AutoSize = true;
     //
     //
     //
     this.labelX27.BackgroundStyle.Class = "";
     this.labelX27.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX27.ForeColor = System.Drawing.Color.Black;
     this.labelX27.Location = new System.Drawing.Point(-3, 8);
     this.labelX27.Name = "labelX27";
     this.labelX27.Size = new System.Drawing.Size(101, 21);
     this.labelX27.TabIndex = 0;
     this.labelX27.Text = "異動原因代碼:";
     //
     // UpdateRecordInfo
     //
     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)(0)));
     this.Name = "UpdateRecordInfo";
     this.Size = new System.Drawing.Size(511, 465);
     this.panelEx1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.groupPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput4)).EndInit();
     this.學籍異動.ResumeLayout(false);
     this.groupPanel10.ResumeLayout(false);
     this.groupPanel10.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput8)).EndInit();
     this.groupPanel11.ResumeLayout(false);
     this.groupPanel11.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput9)).EndInit();
     this.新生名冊.ResumeLayout(false);
     this.groupPanel4.ResumeLayout(false);
     this.groupPanel4.PerformLayout();
     this.groupPanel3.ResumeLayout(false);
     this.groupPanel3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput11)).EndInit();
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput10)).EndInit();
     this.畢業名冊.ResumeLayout(false);
     this.groupPanel13.ResumeLayout(false);
     this.groupPanel13.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput2)).EndInit();
     this.groupPanel12.ResumeLayout(false);
     this.groupPanel12.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput1)).EndInit();
     this.轉入名冊.ResumeLayout(false);
     this.groupPanel8.ResumeLayout(false);
     this.groupPanel8.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput7)).EndInit();
     this.groupPanel7.ResumeLayout(false);
     this.groupPanel7.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput6)).EndInit();
     this.groupPanel6.ResumeLayout(false);
     this.groupPanel6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput5)).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 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 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);
 }
示例#33
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.radioButton2 = new System.Windows.Forms.RadioButton();
     this.radioButton1 = new System.Windows.Forms.RadioButton();
     this.checkBoxX11 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.comboBoxEx7 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem19 = new DevComponents.Editors.ComboItem();
     this.comboItem20 = new DevComponents.Editors.ComboItem();
     this.labelX12 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX9 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.comboBoxEx8 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem17 = new DevComponents.Editors.ComboItem();
     this.comboItem18 = new DevComponents.Editors.ComboItem();
     this.labelX13 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX10 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.comboBoxEx5 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem15 = new DevComponents.Editors.ComboItem();
     this.comboItem16 = new DevComponents.Editors.ComboItem();
     this.comboBoxEx6 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem13 = new DevComponents.Editors.ComboItem();
     this.comboItem14 = new DevComponents.Editors.ComboItem();
     this.labelX10 = new DevComponents.DotNetBar.LabelX();
     this.labelX11 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX7 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.checkBoxX8 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.comboBoxEx4 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem11 = new DevComponents.Editors.ComboItem();
     this.comboItem12 = new DevComponents.Editors.ComboItem();
     this.labelX9 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX6 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.comboBoxEx3 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem9 = new DevComponents.Editors.ComboItem();
     this.comboItem10 = new DevComponents.Editors.ComboItem();
     this.labelX8 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX5 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.comboBoxEx2 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem7 = new DevComponents.Editors.ComboItem();
     this.comboItem8 = new DevComponents.Editors.ComboItem();
     this.comboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.comboItem6 = new DevComponents.Editors.ComboItem();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX4 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.checkBoxX3 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX12 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.checkBox6 = new System.Windows.Forms.CheckBox();
     this.checkBox5 = new System.Windows.Forms.CheckBox();
     this.checkBox4 = new System.Windows.Forms.CheckBox();
     this.checkBox3 = new System.Windows.Forms.CheckBox();
     this.checkBox2 = new System.Windows.Forms.CheckBox();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.checkBox11 = new System.Windows.Forms.CheckBox();
     this.checkBox10 = new System.Windows.Forms.CheckBox();
     this.checkBox9 = new System.Windows.Forms.CheckBox();
     this.checkBox8 = new System.Windows.Forms.CheckBox();
     this.checkBox7 = new System.Windows.Forms.CheckBox();
     this.labelX14 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx9 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.integerInput1 = new DevComponents.Editors.IntegerInput();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.panelEx2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.integerInput1)).BeginInit();
     this.SuspendLayout();
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(31, 42);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(91, 23);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "模板铺设尺寸:";
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(129, 44);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 23);
     this.labelX2.TabIndex = 1;
     this.labelX2.Text = "长LL(mm)";
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(364, 45);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(114, 23);
     this.labelX3.TabIndex = 2;
     this.labelX3.Text = "宽BB(mm):";
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(473, 45);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(100, 21);
     this.textBox2.TabIndex = 4;
     this.textBox2.Text = "3000";
     this.textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.radioButton2);
     this.groupBox2.Controls.Add(this.radioButton1);
     this.groupBox2.Controls.Add(this.checkBoxX11);
     this.groupBox2.Controls.Add(this.comboBoxEx7);
     this.groupBox2.Controls.Add(this.labelX12);
     this.groupBox2.Controls.Add(this.checkBoxX9);
     this.groupBox2.Controls.Add(this.comboBoxEx8);
     this.groupBox2.Controls.Add(this.labelX13);
     this.groupBox2.Controls.Add(this.checkBoxX10);
     this.groupBox2.Controls.Add(this.comboBoxEx5);
     this.groupBox2.Controls.Add(this.comboBoxEx6);
     this.groupBox2.Controls.Add(this.labelX10);
     this.groupBox2.Controls.Add(this.labelX11);
     this.groupBox2.Controls.Add(this.checkBoxX7);
     this.groupBox2.Controls.Add(this.checkBoxX8);
     this.groupBox2.Controls.Add(this.comboBoxEx4);
     this.groupBox2.Controls.Add(this.labelX9);
     this.groupBox2.Controls.Add(this.checkBoxX6);
     this.groupBox2.Controls.Add(this.comboBoxEx3);
     this.groupBox2.Controls.Add(this.labelX8);
     this.groupBox2.Controls.Add(this.checkBoxX5);
     this.groupBox2.Controls.Add(this.comboBoxEx2);
     this.groupBox2.Controls.Add(this.comboBoxEx1);
     this.groupBox2.Controls.Add(this.labelX7);
     this.groupBox2.Controls.Add(this.labelX6);
     this.groupBox2.Controls.Add(this.checkBoxX4);
     this.groupBox2.Controls.Add(this.checkBoxX3);
     this.groupBox2.Controls.Add(this.groupBox1);
     this.groupBox2.Controls.Add(this.labelX4);
     this.groupBox2.Location = new System.Drawing.Point(30, 72);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(364, 359);
     this.groupBox2.TabIndex = 33;
     this.groupBox2.TabStop = false;
     //
     // radioButton2
     //
     this.radioButton2.AutoSize = true;
     this.radioButton2.Checked = true;
     this.radioButton2.Location = new System.Drawing.Point(214, 23);
     this.radioButton2.Name = "radioButton2";
     this.radioButton2.Size = new System.Drawing.Size(35, 16);
     this.radioButton2.TabIndex = 63;
     this.radioButton2.TabStop = true;
     this.radioButton2.Text = "否";
     this.radioButton2.UseVisualStyleBackColor = true;
     this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged);
     //
     // radioButton1
     //
     this.radioButton1.AutoSize = true;
     this.radioButton1.Location = new System.Drawing.Point(117, 23);
     this.radioButton1.Name = "radioButton1";
     this.radioButton1.Size = new System.Drawing.Size(35, 16);
     this.radioButton1.TabIndex = 62;
     this.radioButton1.Text = "是";
     this.radioButton1.UseVisualStyleBackColor = true;
     this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
     //
     // checkBoxX11
     //
     //
     //
     //
     this.checkBoxX11.BackgroundStyle.Class = "";
     this.checkBoxX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX11.Location = new System.Drawing.Point(6, 330);
     this.checkBoxX11.Name = "checkBoxX11";
     this.checkBoxX11.Size = new System.Drawing.Size(100, 23);
     this.checkBoxX11.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX11.TabIndex = 61;
     this.checkBoxX11.Text = "连接角模";
     //
     // comboBoxEx7
     //
     this.comboBoxEx7.DisplayMember = "Text";
     this.comboBoxEx7.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx7.FormattingEnabled = true;
     this.comboBoxEx7.ItemHeight = 15;
     this.comboBoxEx7.Items.AddRange(new object[] {
     this.comboItem19,
     this.comboItem20});
     this.comboBoxEx7.Location = new System.Drawing.Point(287, 222);
     this.comboBoxEx7.Name = "comboBoxEx7";
     this.comboBoxEx7.Size = new System.Drawing.Size(44, 21);
     this.comboBoxEx7.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx7.TabIndex = 60;
     //
     // comboItem19
     //
     this.comboItem19.Text = "50";
     //
     // comboItem20
     //
     this.comboItem20.Text = "100";
     //
     // labelX12
     //
     //
     //
     //
     this.labelX12.BackgroundStyle.Class = "";
     this.labelX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX12.Location = new System.Drawing.Point(254, 222);
     this.labelX12.Name = "labelX12";
     this.labelX12.Size = new System.Drawing.Size(54, 23);
     this.labelX12.TabIndex = 59;
     this.labelX12.Text = "尺寸:";
     //
     // checkBoxX9
     //
     //
     //
     //
     this.checkBoxX9.BackgroundStyle.Class = "";
     this.checkBoxX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX9.Location = new System.Drawing.Point(255, 180);
     this.checkBoxX9.Name = "checkBoxX9";
     this.checkBoxX9.Size = new System.Drawing.Size(76, 23);
     this.checkBoxX9.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX9.TabIndex = 58;
     this.checkBoxX9.Text = "阳角模";
     this.checkBoxX9.CheckedChanged += new System.EventHandler(this.checkBoxX9_CheckedChanged);
     //
     // comboBoxEx8
     //
     this.comboBoxEx8.DisplayMember = "Text";
     this.comboBoxEx8.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx8.FormattingEnabled = true;
     this.comboBoxEx8.ItemHeight = 15;
     this.comboBoxEx8.Items.AddRange(new object[] {
     this.comboItem17,
     this.comboItem18});
     this.comboBoxEx8.Location = new System.Drawing.Point(287, 151);
     this.comboBoxEx8.Name = "comboBoxEx8";
     this.comboBoxEx8.Size = new System.Drawing.Size(44, 21);
     this.comboBoxEx8.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx8.TabIndex = 57;
     //
     // comboItem17
     //
     this.comboItem17.Text = "150";
     //
     // comboItem18
     //
     this.comboItem18.Text = "100";
     //
     // labelX13
     //
     //
     //
     //
     this.labelX13.BackgroundStyle.Class = "";
     this.labelX13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX13.Location = new System.Drawing.Point(254, 151);
     this.labelX13.Name = "labelX13";
     this.labelX13.Size = new System.Drawing.Size(55, 23);
     this.labelX13.TabIndex = 56;
     this.labelX13.Text = "尺寸:";
     //
     // checkBoxX10
     //
     //
     //
     //
     this.checkBoxX10.BackgroundStyle.Class = "";
     this.checkBoxX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX10.Location = new System.Drawing.Point(255, 122);
     this.checkBoxX10.Name = "checkBoxX10";
     this.checkBoxX10.Size = new System.Drawing.Size(76, 23);
     this.checkBoxX10.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX10.TabIndex = 55;
     this.checkBoxX10.Text = "阴角模";
     this.checkBoxX10.CheckedChanged += new System.EventHandler(this.checkBoxX10_CheckedChanged);
     //
     // comboBoxEx5
     //
     this.comboBoxEx5.DisplayMember = "Text";
     this.comboBoxEx5.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx5.FormattingEnabled = true;
     this.comboBoxEx5.ItemHeight = 15;
     this.comboBoxEx5.Items.AddRange(new object[] {
     this.comboItem15,
     this.comboItem16});
     this.comboBoxEx5.Location = new System.Drawing.Point(180, 293);
     this.comboBoxEx5.Name = "comboBoxEx5";
     this.comboBoxEx5.Size = new System.Drawing.Size(55, 21);
     this.comboBoxEx5.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx5.TabIndex = 54;
     //
     // comboItem15
     //
     this.comboItem15.Text = "50";
     //
     // comboItem16
     //
     this.comboItem16.Text = "100";
     //
     // comboBoxEx6
     //
     this.comboBoxEx6.DisplayMember = "Text";
     this.comboBoxEx6.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx6.FormattingEnabled = true;
     this.comboBoxEx6.ItemHeight = 15;
     this.comboBoxEx6.Items.AddRange(new object[] {
     this.comboItem13,
     this.comboItem14});
     this.comboBoxEx6.Location = new System.Drawing.Point(180, 260);
     this.comboBoxEx6.Name = "comboBoxEx6";
     this.comboBoxEx6.Size = new System.Drawing.Size(55, 21);
     this.comboBoxEx6.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx6.TabIndex = 53;
     //
     // comboItem13
     //
     this.comboItem13.Text = "150";
     //
     // comboItem14
     //
     this.comboItem14.Text = "100";
     //
     // labelX10
     //
     //
     //
     //
     this.labelX10.BackgroundStyle.Class = "";
     this.labelX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX10.Location = new System.Drawing.Point(140, 293);
     this.labelX10.Name = "labelX10";
     this.labelX10.Size = new System.Drawing.Size(54, 23);
     this.labelX10.TabIndex = 52;
     this.labelX10.Text = "尺寸:";
     //
     // labelX11
     //
     //
     //
     //
     this.labelX11.BackgroundStyle.Class = "";
     this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX11.Location = new System.Drawing.Point(139, 258);
     this.labelX11.Name = "labelX11";
     this.labelX11.Size = new System.Drawing.Size(55, 23);
     this.labelX11.TabIndex = 51;
     this.labelX11.Text = "尺寸:";
     //
     // checkBoxX7
     //
     //
     //
     //
     this.checkBoxX7.BackgroundStyle.Class = "";
     this.checkBoxX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX7.Location = new System.Drawing.Point(83, 291);
     this.checkBoxX7.Name = "checkBoxX7";
     this.checkBoxX7.Size = new System.Drawing.Size(104, 23);
     this.checkBoxX7.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX7.TabIndex = 50;
     this.checkBoxX7.Text = "阳角模";
     this.checkBoxX7.CheckedChanged += new System.EventHandler(this.checkBoxX7_CheckedChanged);
     //
     // checkBoxX8
     //
     //
     //
     //
     this.checkBoxX8.BackgroundStyle.Class = "";
     this.checkBoxX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX8.Location = new System.Drawing.Point(83, 258);
     this.checkBoxX8.Name = "checkBoxX8";
     this.checkBoxX8.Size = new System.Drawing.Size(104, 23);
     this.checkBoxX8.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX8.TabIndex = 49;
     this.checkBoxX8.Text = "阴角模";
     this.checkBoxX8.CheckedChanged += new System.EventHandler(this.checkBoxX8_CheckedChanged);
     //
     // comboBoxEx4
     //
     this.comboBoxEx4.DisplayMember = "Text";
     this.comboBoxEx4.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx4.FormattingEnabled = true;
     this.comboBoxEx4.ItemHeight = 15;
     this.comboBoxEx4.Items.AddRange(new object[] {
     this.comboItem11,
     this.comboItem12});
     this.comboBoxEx4.Location = new System.Drawing.Point(33, 216);
     this.comboBoxEx4.Name = "comboBoxEx4";
     this.comboBoxEx4.Size = new System.Drawing.Size(44, 21);
     this.comboBoxEx4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx4.TabIndex = 48;
     //
     // comboItem11
     //
     this.comboItem11.Text = "50";
     //
     // comboItem12
     //
     this.comboItem12.Text = "100";
     //
     // labelX9
     //
     //
     //
     //
     this.labelX9.BackgroundStyle.Class = "";
     this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX9.Location = new System.Drawing.Point(7, 217);
     this.labelX9.Name = "labelX9";
     this.labelX9.Size = new System.Drawing.Size(54, 23);
     this.labelX9.TabIndex = 47;
     this.labelX9.Text = "尺寸:";
     //
     // checkBoxX6
     //
     //
     //
     //
     this.checkBoxX6.BackgroundStyle.Class = "";
     this.checkBoxX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX6.Location = new System.Drawing.Point(6, 178);
     this.checkBoxX6.Name = "checkBoxX6";
     this.checkBoxX6.Size = new System.Drawing.Size(76, 23);
     this.checkBoxX6.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX6.TabIndex = 46;
     this.checkBoxX6.Text = "阳角模";
     this.checkBoxX6.CheckedChanged += new System.EventHandler(this.checkBoxX6_CheckedChanged);
     //
     // comboBoxEx3
     //
     this.comboBoxEx3.DisplayMember = "Text";
     this.comboBoxEx3.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx3.FormattingEnabled = true;
     this.comboBoxEx3.ItemHeight = 15;
     this.comboBoxEx3.Items.AddRange(new object[] {
     this.comboItem9,
     this.comboItem10});
     this.comboBoxEx3.Location = new System.Drawing.Point(33, 153);
     this.comboBoxEx3.Name = "comboBoxEx3";
     this.comboBoxEx3.Size = new System.Drawing.Size(44, 21);
     this.comboBoxEx3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx3.TabIndex = 45;
     //
     // comboItem9
     //
     this.comboItem9.Text = "150";
     //
     // comboItem10
     //
     this.comboItem10.Text = "100";
     //
     // labelX8
     //
     //
     //
     //
     this.labelX8.BackgroundStyle.Class = "";
     this.labelX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX8.Location = new System.Drawing.Point(6, 153);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(55, 23);
     this.labelX8.TabIndex = 44;
     this.labelX8.Text = "尺寸:";
     //
     // checkBoxX5
     //
     //
     //
     //
     this.checkBoxX5.BackgroundStyle.Class = "";
     this.checkBoxX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX5.Location = new System.Drawing.Point(6, 124);
     this.checkBoxX5.Name = "checkBoxX5";
     this.checkBoxX5.Size = new System.Drawing.Size(76, 23);
     this.checkBoxX5.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX5.TabIndex = 43;
     this.checkBoxX5.Text = "阴角模";
     this.checkBoxX5.CheckedChanged += new System.EventHandler(this.checkBoxX5_CheckedChanged);
     //
     // comboBoxEx2
     //
     this.comboBoxEx2.DisplayMember = "Text";
     this.comboBoxEx2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx2.FormattingEnabled = true;
     this.comboBoxEx2.ItemHeight = 15;
     this.comboBoxEx2.Items.AddRange(new object[] {
     this.comboItem7,
     this.comboItem8});
     this.comboBoxEx2.Location = new System.Drawing.Point(180, 95);
     this.comboBoxEx2.Name = "comboBoxEx2";
     this.comboBoxEx2.Size = new System.Drawing.Size(55, 21);
     this.comboBoxEx2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx2.TabIndex = 42;
     //
     // comboItem7
     //
     this.comboItem7.Text = "50";
     //
     // comboItem8
     //
     this.comboItem8.Text = "100";
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DisplayMember = "Text";
     this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.ItemHeight = 15;
     this.comboBoxEx1.Items.AddRange(new object[] {
     this.comboItem5,
     this.comboItem6});
     this.comboBoxEx1.Location = new System.Drawing.Point(180, 68);
     this.comboBoxEx1.Name = "comboBoxEx1";
     this.comboBoxEx1.Size = new System.Drawing.Size(55, 21);
     this.comboBoxEx1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx1.TabIndex = 41;
     //
     // comboItem5
     //
     this.comboItem5.Text = "150";
     //
     // comboItem6
     //
     this.comboItem6.Text = "100";
     //
     // labelX7
     //
     //
     //
     //
     this.labelX7.BackgroundStyle.Class = "";
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Location = new System.Drawing.Point(139, 93);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(54, 23);
     this.labelX7.TabIndex = 40;
     this.labelX7.Text = "尺寸:";
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Location = new System.Drawing.Point(138, 68);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(55, 23);
     this.labelX6.TabIndex = 39;
     this.labelX6.Text = "尺寸:";
     //
     // checkBoxX4
     //
     //
     //
     //
     this.checkBoxX4.BackgroundStyle.Class = "";
     this.checkBoxX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX4.Location = new System.Drawing.Point(83, 93);
     this.checkBoxX4.Name = "checkBoxX4";
     this.checkBoxX4.Size = new System.Drawing.Size(104, 23);
     this.checkBoxX4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX4.TabIndex = 38;
     this.checkBoxX4.Text = "阳角模";
     this.checkBoxX4.CheckedChanged += new System.EventHandler(this.checkBoxX4_CheckedChanged);
     //
     // checkBoxX3
     //
     //
     //
     //
     this.checkBoxX3.BackgroundStyle.Class = "";
     this.checkBoxX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX3.Location = new System.Drawing.Point(83, 68);
     this.checkBoxX3.Name = "checkBoxX3";
     this.checkBoxX3.Size = new System.Drawing.Size(104, 23);
     this.checkBoxX3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX3.TabIndex = 37;
     this.checkBoxX3.Text = "阴角模";
     this.checkBoxX3.CheckedChanged += new System.EventHandler(this.checkBoxX3_CheckedChanged);
     //
     // groupBox1
     //
     this.groupBox1.Location = new System.Drawing.Point(83, 124);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(166, 121);
     this.groupBox1.TabIndex = 36;
     this.groupBox1.TabStop = false;
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(19, 23);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(109, 23);
     this.labelX4.TabIndex = 33;
     this.labelX4.Text = "是否选用角模:";
     //
     // checkBoxX12
     //
     //
     //
     //
     this.checkBoxX12.BackgroundStyle.Class = "";
     this.checkBoxX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX12.Location = new System.Drawing.Point(400, 87);
     this.checkBoxX12.Name = "checkBoxX12";
     this.checkBoxX12.Size = new System.Drawing.Size(100, 23);
     this.checkBoxX12.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX12.TabIndex = 34;
     this.checkBoxX12.Text = "选用模板规格:";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.checkBox6);
     this.groupBox3.Controls.Add(this.checkBox5);
     this.groupBox3.Controls.Add(this.checkBox4);
     this.groupBox3.Controls.Add(this.checkBox3);
     this.groupBox3.Controls.Add(this.checkBox2);
     this.groupBox3.Controls.Add(this.checkBox1);
     this.groupBox3.Location = new System.Drawing.Point(400, 116);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(200, 80);
     this.groupBox3.TabIndex = 37;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "长l(mm):";
     //
     // checkBox6
     //
     this.checkBox6.AutoSize = true;
     this.checkBox6.Location = new System.Drawing.Point(107, 56);
     this.checkBox6.Name = "checkBox6";
     this.checkBox6.Size = new System.Drawing.Size(48, 16);
     this.checkBox6.TabIndex = 5;
     this.checkBox6.Text = "1500";
     this.checkBox6.UseVisualStyleBackColor = true;
     //
     // checkBox5
     //
     this.checkBox5.AutoSize = true;
     this.checkBox5.Location = new System.Drawing.Point(107, 37);
     this.checkBox5.Name = "checkBox5";
     this.checkBox5.Size = new System.Drawing.Size(48, 16);
     this.checkBox5.TabIndex = 4;
     this.checkBox5.Text = "1200";
     this.checkBox5.UseVisualStyleBackColor = true;
     //
     // checkBox4
     //
     this.checkBox4.AutoSize = true;
     this.checkBox4.Location = new System.Drawing.Point(107, 15);
     this.checkBox4.Name = "checkBox4";
     this.checkBox4.Size = new System.Drawing.Size(42, 16);
     this.checkBox4.TabIndex = 3;
     this.checkBox4.Text = "900";
     this.checkBox4.UseVisualStyleBackColor = true;
     //
     // checkBox3
     //
     this.checkBox3.AutoSize = true;
     this.checkBox3.Location = new System.Drawing.Point(22, 56);
     this.checkBox3.Name = "checkBox3";
     this.checkBox3.Size = new System.Drawing.Size(42, 16);
     this.checkBox3.TabIndex = 2;
     this.checkBox3.Text = "750";
     this.checkBox3.UseVisualStyleBackColor = true;
     //
     // checkBox2
     //
     this.checkBox2.AutoSize = true;
     this.checkBox2.Location = new System.Drawing.Point(22, 34);
     this.checkBox2.Name = "checkBox2";
     this.checkBox2.Size = new System.Drawing.Size(42, 16);
     this.checkBox2.TabIndex = 1;
     this.checkBox2.Text = "600";
     this.checkBox2.UseVisualStyleBackColor = true;
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.Location = new System.Drawing.Point(22, 18);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(42, 16);
     this.checkBox1.TabIndex = 0;
     this.checkBox1.Text = "450";
     this.checkBox1.UseVisualStyleBackColor = true;
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.checkBox11);
     this.groupBox4.Controls.Add(this.checkBox10);
     this.groupBox4.Controls.Add(this.checkBox9);
     this.groupBox4.Controls.Add(this.checkBox8);
     this.groupBox4.Controls.Add(this.checkBox7);
     this.groupBox4.Location = new System.Drawing.Point(400, 232);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(200, 85);
     this.groupBox4.TabIndex = 38;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "宽b(mm):";
     //
     // checkBox11
     //
     this.checkBox11.AutoSize = true;
     this.checkBox11.Location = new System.Drawing.Point(107, 56);
     this.checkBox11.Name = "checkBox11";
     this.checkBox11.Size = new System.Drawing.Size(42, 16);
     this.checkBox11.TabIndex = 5;
     this.checkBox11.Text = "300";
     this.checkBox11.UseVisualStyleBackColor = true;
     //
     // checkBox10
     //
     this.checkBox10.AutoSize = true;
     this.checkBox10.Location = new System.Drawing.Point(107, 27);
     this.checkBox10.Name = "checkBox10";
     this.checkBox10.Size = new System.Drawing.Size(42, 16);
     this.checkBox10.TabIndex = 4;
     this.checkBox10.Text = "250";
     this.checkBox10.UseVisualStyleBackColor = true;
     //
     // checkBox9
     //
     this.checkBox9.AutoSize = true;
     this.checkBox9.Location = new System.Drawing.Point(22, 62);
     this.checkBox9.Name = "checkBox9";
     this.checkBox9.Size = new System.Drawing.Size(42, 16);
     this.checkBox9.TabIndex = 3;
     this.checkBox9.Text = "200";
     this.checkBox9.UseVisualStyleBackColor = true;
     //
     // checkBox8
     //
     this.checkBox8.AutoSize = true;
     this.checkBox8.Location = new System.Drawing.Point(22, 42);
     this.checkBox8.Name = "checkBox8";
     this.checkBox8.Size = new System.Drawing.Size(42, 16);
     this.checkBox8.TabIndex = 2;
     this.checkBox8.Text = "150";
     this.checkBox8.UseVisualStyleBackColor = true;
     //
     // checkBox7
     //
     this.checkBox7.AutoSize = true;
     this.checkBox7.Location = new System.Drawing.Point(22, 20);
     this.checkBox7.Name = "checkBox7";
     this.checkBox7.Size = new System.Drawing.Size(42, 16);
     this.checkBox7.TabIndex = 1;
     this.checkBox7.Text = "100";
     this.checkBox7.UseVisualStyleBackColor = true;
     //
     // labelX14
     //
     //
     //
     //
     this.labelX14.BackgroundStyle.Class = "";
     this.labelX14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX14.Location = new System.Drawing.Point(422, 334);
     this.labelX14.Name = "labelX14";
     this.labelX14.Size = new System.Drawing.Size(75, 23);
     this.labelX14.TabIndex = 39;
     this.labelX14.Text = "排列方式:";
     //
     // comboBoxEx9
     //
     this.comboBoxEx9.DisplayMember = "Text";
     this.comboBoxEx9.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx9.FormattingEnabled = true;
     this.comboBoxEx9.ItemHeight = 15;
     this.comboBoxEx9.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2,
     this.comboItem3,
     this.comboItem4});
     this.comboBoxEx9.Location = new System.Drawing.Point(507, 332);
     this.comboBoxEx9.Name = "comboBoxEx9";
     this.comboBoxEx9.Size = new System.Drawing.Size(93, 21);
     this.comboBoxEx9.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx9.TabIndex = 40;
     //
     // comboItem1
     //
     this.comboItem1.Text = "全部横向排列";
     //
     // comboItem2
     //
     this.comboItem2.Text = "全部竖向排列";
     //
     // comboItem3
     //
     this.comboItem3.Text = "横竖混合排列";
     //
     // comboItem4
     //
     this.comboItem4.Text = "不固定排列";
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Controls.Add(this.buttonX1);
     this.panelEx2.Location = new System.Drawing.Point(30, 437);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Size = new System.Drawing.Size(594, 33);
     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 = 41;
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Location = new System.Drawing.Point(511, 0);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(80, 30);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 0;
     this.buttonX1.Text = "配板设计";
     this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // integerInput1
     //
     //
     //
     //
     this.integerInput1.BackgroundStyle.Class = "DateTimeInputBackground";
     this.integerInput1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.integerInput1.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.integerInput1.Location = new System.Drawing.Point(210, 46);
     this.integerInput1.Name = "integerInput1";
     this.integerInput1.ShowUpDown = true;
     this.integerInput1.Size = new System.Drawing.Size(80, 21);
     this.integerInput1.TabIndex = 42;
     this.integerInput1.Value = 6000;
     //
     // Frmpeiban
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.ClientSize = new System.Drawing.Size(636, 475);
     this.Controls.Add(this.integerInput1);
     this.Controls.Add(this.panelEx2);
     this.Controls.Add(this.comboBoxEx9);
     this.Controls.Add(this.labelX14);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.checkBoxX12);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.textBox2);
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.labelX1);
     this.DoubleBuffered = true;
     this.Name = "Frmpeiban";
     this.Load += new System.EventHandler(this.Frmpeiban_Load);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.panelEx2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.integerInput1)).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.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.lvhanghoa = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.txtSL = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.buttonX2 = new DevComponents.DotNetBar.ButtonX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.cmbdvQD = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.labelX23 = new DevComponents.DotNetBar.LabelX();
     this.cmb_dvt = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.panel5 = new System.Windows.Forms.Panel();
     this.cmbSua = new DevComponents.DotNetBar.ButtonX();
     this.cmbXoa = new DevComponents.DotNetBar.ButtonX();
     this.buttonX5 = new DevComponents.DotNetBar.ButtonX();
     this.txtten = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX26 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel1.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.panel5.SuspendLayout();
     this.SuspendLayout();
     //
     // groupPanel1
     //
     this.groupPanel1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel1.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.lvhanghoa);
     this.groupPanel1.Location = new System.Drawing.Point(14, 198);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(575, 217);
     //
     //
     //
     this.groupPanel1.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.Style.BackColor2 = System.Drawing.Color.Transparent;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     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.groupPanel1.TabIndex = 79;
     this.groupPanel1.Text = "DANH SÁCH NHÓM CUNG CẤP";
     //
     // lvhanghoa
     //
     //
     //
     //
     this.lvhanghoa.Border.Class = "ListViewBorder";
     this.lvhanghoa.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader7,
     this.columnHeader2,
     this.columnHeader4,
     this.columnHeader1});
     this.lvhanghoa.FullRowSelect = true;
     this.lvhanghoa.GridLines = true;
     this.lvhanghoa.Location = new System.Drawing.Point(7, 3);
     this.lvhanghoa.Name = "lvhanghoa";
     this.lvhanghoa.Size = new System.Drawing.Size(531, 177);
     this.lvhanghoa.TabIndex = 71;
     this.lvhanghoa.UseCompatibleStateImageBehavior = false;
     this.lvhanghoa.View = System.Windows.Forms.View.Details;
     this.lvhanghoa.SelectedIndexChanged += new System.EventHandler(this.lvhanghoa_SelectedIndexChanged);
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "STT";
     this.columnHeader7.Width = 55;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Tên QC";
     this.columnHeader2.Width = 190;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "SLĐVT";
     this.columnHeader4.Width = 150;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "manhom";
     this.columnHeader1.Width = 0;
     //
     // groupPanel2
     //
     this.groupPanel2.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel2.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.txtSL);
     this.groupPanel2.Controls.Add(this.buttonX2);
     this.groupPanel2.Controls.Add(this.labelX2);
     this.groupPanel2.Controls.Add(this.cmbdvQD);
     this.groupPanel2.Controls.Add(this.buttonX1);
     this.groupPanel2.Controls.Add(this.labelX23);
     this.groupPanel2.Controls.Add(this.cmb_dvt);
     this.groupPanel2.Controls.Add(this.labelX1);
     this.groupPanel2.Controls.Add(this.panel5);
     this.groupPanel2.Controls.Add(this.txtten);
     this.groupPanel2.Controls.Add(this.labelX26);
     this.groupPanel2.Location = new System.Drawing.Point(14, 40);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(578, 152);
     //
     //
     //
     this.groupPanel2.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.Style.BackColor2 = System.Drawing.Color.Transparent;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     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 = 0;
     this.groupPanel2.Text = "THÔNG TIN QUY CÁCH";
     //
     // txtSL
     //
     //
     //
     //
     this.txtSL.Border.Class = "TextBoxBorder";
     this.txtSL.FocusHighlightEnabled = true;
     this.txtSL.Location = new System.Drawing.Point(81, 52);
     this.txtSL.Name = "txtSL";
     this.txtSL.Size = new System.Drawing.Size(134, 24);
     this.txtSL.TabIndex = 1;
     this.txtSL.TextChanged += new System.EventHandler(this.txtSL_TextChanged);
     //
     // buttonX2
     //
     this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX2.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX2.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX2.Location = new System.Drawing.Point(537, 17);
     this.buttonX2.Name = "buttonX2";
     this.buttonX2.Size = new System.Drawing.Size(25, 25);
     this.buttonX2.TabIndex = 78;
     this.buttonX2.Text = "+";
     //
     // labelX2
     //
     this.labelX2.Location = new System.Drawing.Point(250, 16);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(138, 23);
     this.labelX2.TabIndex = 76;
     this.labelX2.Text = "Đơn vị nhập quy đổi:";
     //
     // cmbdvQD
     //
     this.cmbdvQD.DisplayMember = "Text";
     this.cmbdvQD.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbdvQD.FocusHighlightEnabled = true;
     this.cmbdvQD.FormattingEnabled = true;
     this.cmbdvQD.ItemHeight = 18;
     this.cmbdvQD.Items.AddRange(new object[] {
     this.comboItem3,
     this.comboItem4});
     this.cmbdvQD.Location = new System.Drawing.Point(393, 17);
     this.cmbdvQD.Name = "cmbdvQD";
     this.cmbdvQD.Size = new System.Drawing.Size(142, 24);
     this.cmbdvQD.TabIndex = 2;
     //
     // comboItem3
     //
     this.comboItem3.Text = "Nhập hàng";
     //
     // comboItem4
     //
     this.comboItem4.Text = "Trả hàng";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX1.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX1.Location = new System.Drawing.Point(217, 17);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(25, 25);
     this.buttonX1.TabIndex = 75;
     this.buttonX1.Text = "+";
     //
     // labelX23
     //
     this.labelX23.Location = new System.Drawing.Point(1, 16);
     this.labelX23.Name = "labelX23";
     this.labelX23.Size = new System.Drawing.Size(80, 23);
     this.labelX23.TabIndex = 73;
     this.labelX23.Text = "Đơn vị tính:";
     //
     // cmb_dvt
     //
     this.cmb_dvt.DisplayMember = "Text";
     this.cmb_dvt.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmb_dvt.FocusHighlightEnabled = true;
     this.cmb_dvt.FormattingEnabled = true;
     this.cmb_dvt.ItemHeight = 18;
     this.cmb_dvt.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2});
     this.cmb_dvt.Location = new System.Drawing.Point(81, 17);
     this.cmb_dvt.Name = "cmb_dvt";
     this.cmb_dvt.Size = new System.Drawing.Size(134, 24);
     this.cmb_dvt.TabIndex = 0;
     //
     // comboItem1
     //
     this.comboItem1.Text = "Nhập hàng";
     //
     // comboItem2
     //
     this.comboItem2.Text = "Trả hàng";
     //
     // labelX1
     //
     this.labelX1.Location = new System.Drawing.Point(2, 54);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(80, 25);
     this.labelX1.TabIndex = 72;
     this.labelX1.Text = "SLDVT:";
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.SteelBlue;
     this.panel5.Controls.Add(this.cmbSua);
     this.panel5.Controls.Add(this.cmbXoa);
     this.panel5.Controls.Add(this.buttonX5);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel5.Location = new System.Drawing.Point(0, 97);
     this.panel5.Margin = new System.Windows.Forms.Padding(0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(572, 30);
     this.panel5.TabIndex = 70;
     //
     // cmbSua
     //
     this.cmbSua.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmbSua.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmbSua.Location = new System.Drawing.Point(223, 2);
     this.cmbSua.Margin = new System.Windows.Forms.Padding(0);
     this.cmbSua.Name = "cmbSua";
     this.cmbSua.Size = new System.Drawing.Size(70, 27);
     this.cmbSua.TabIndex = 1;
     this.cmbSua.Text = "Sửa";
     this.cmbSua.Click += new System.EventHandler(this.cmbSua_Click);
     //
     // cmbXoa
     //
     this.cmbXoa.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmbXoa.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmbXoa.Location = new System.Drawing.Point(305, 2);
     this.cmbXoa.Margin = new System.Windows.Forms.Padding(0);
     this.cmbXoa.Name = "cmbXoa";
     this.cmbXoa.Size = new System.Drawing.Size(70, 27);
     this.cmbXoa.TabIndex = 2;
     this.cmbXoa.Text = "Xóa";
     this.cmbXoa.Click += new System.EventHandler(this.cmbXoa_Click);
     //
     // buttonX5
     //
     this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX5.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX5.Location = new System.Drawing.Point(140, 2);
     this.buttonX5.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX5.Name = "buttonX5";
     this.buttonX5.Size = new System.Drawing.Size(70, 27);
     this.buttonX5.TabIndex = 0;
     this.buttonX5.Text = "Thêm";
     this.buttonX5.Click += new System.EventHandler(this.buttonX5_Click);
     //
     // txtten
     //
     //
     //
     //
     this.txtten.Border.Class = "TextBoxBorder";
     this.txtten.Enabled = false;
     this.txtten.FocusHighlightEnabled = true;
     this.txtten.Location = new System.Drawing.Point(393, 52);
     this.txtten.Name = "txtten";
     this.txtten.Size = new System.Drawing.Size(142, 24);
     this.txtten.TabIndex = 3;
     //
     // labelX26
     //
     this.labelX26.Location = new System.Drawing.Point(285, 52);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(102, 25);
     this.labelX26.TabIndex = 60;
     this.labelX26.Text = "Tên Quy cách :";
     //
     // frmQuyCach
     //
     this.ClientSize = new System.Drawing.Size(603, 435);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.groupPanel2);
     this.Name = "frmQuyCach";
     this.Load += new System.EventHandler(this.frmQuyCach_Load);
     this.Controls.SetChildIndex(this.groupPanel2, 0);
     this.Controls.SetChildIndex(this.groupPanel1, 0);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.panel5.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.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.lvhanghoa = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader8 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader6 = new System.Windows.Forms.ColumnHeader();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.cmbHHKM = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.txtSLKM = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.txtDVKM = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.cmbHH = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.txtDVTban = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX26 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.txtSLBan = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.panel5 = new System.Windows.Forms.Panel();
     this.cmbIn = new DevComponents.DotNetBar.ButtonX();
     this.cmdSua = new DevComponents.DotNetBar.ButtonX();
     this.cmdXoa = new DevComponents.DotNetBar.ButtonX();
     this.cmdThem = new DevComponents.DotNetBar.ButtonX();
     this.groupPanel1.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.panel5.SuspendLayout();
     this.SuspendLayout();
     //
     // groupPanel1
     //
     this.groupPanel1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel1.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.lvhanghoa);
     this.groupPanel1.Location = new System.Drawing.Point(0, 214);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(841, 255);
     //
     //
     //
     this.groupPanel1.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.Style.BackColor2 = System.Drawing.Color.Transparent;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     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.groupPanel1.TabIndex = 77;
     this.groupPanel1.Text = "DANH SÁCH KHUYẾN MÃI";
     //
     // lvhanghoa
     //
     //
     //
     //
     this.lvhanghoa.Border.Class = "ListViewBorder";
     this.lvhanghoa.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader7,
     this.columnHeader2,
     this.columnHeader4,
     this.columnHeader1,
     this.columnHeader3,
     this.columnHeader8,
     this.columnHeader5,
     this.columnHeader6});
     this.lvhanghoa.FullRowSelect = true;
     this.lvhanghoa.GridLines = true;
     this.lvhanghoa.Location = new System.Drawing.Point(3, 3);
     this.lvhanghoa.Name = "lvhanghoa";
     this.lvhanghoa.Size = new System.Drawing.Size(829, 230);
     this.lvhanghoa.TabIndex = 71;
     this.lvhanghoa.UseCompatibleStateImageBehavior = false;
     this.lvhanghoa.View = System.Windows.Forms.View.Details;
     this.lvhanghoa.SelectedIndexChanged += new System.EventHandler(this.lvhanghoa_SelectedIndexChanged);
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "STT";
     this.columnHeader7.Width = 51;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Tên hàng hóa";
     this.columnHeader2.Width = 133;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Đơn vị";
     this.columnHeader4.Width = 72;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "SL mua";
     this.columnHeader1.Width = 81;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Hàng khuyến mãi";
     this.columnHeader3.Width = 137;
     //
     // columnHeader8
     //
     this.columnHeader8.Text = "Đơn Vị";
     this.columnHeader8.Width = 65;
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "SL KM";
     this.columnHeader5.Width = 75;
     //
     // columnHeader6
     //
     this.columnHeader6.Text = "Ngày KM";
     this.columnHeader6.Width = 80;
     //
     // groupPanel2
     //
     this.groupPanel2.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel2.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.groupBox2);
     this.groupPanel2.Controls.Add(this.groupBox1);
     this.groupPanel2.Controls.Add(this.panel5);
     this.groupPanel2.Location = new System.Drawing.Point(52, 38);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(730, 178);
     //
     //
     //
     this.groupPanel2.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.Style.BackColor2 = System.Drawing.Color.Transparent;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     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 = 0;
     this.groupPanel2.Text = "Thông tin";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.cmbHHKM);
     this.groupBox2.Controls.Add(this.labelX4);
     this.groupBox2.Controls.Add(this.txtSLKM);
     this.groupBox2.Controls.Add(this.labelX5);
     this.groupBox2.Controls.Add(this.labelX1);
     this.groupBox2.Controls.Add(this.txtDVKM);
     this.groupBox2.Location = new System.Drawing.Point(396, -7);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(323, 105);
     this.groupBox2.TabIndex = 84;
     this.groupBox2.TabStop = false;
     //
     // cmbHHKM
     //
     this.cmbHHKM.DisplayMember = "Text";
     this.cmbHHKM.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbHHKM.FocusHighlightEnabled = true;
     this.cmbHHKM.FormattingEnabled = true;
     this.cmbHHKM.ItemHeight = 18;
     this.cmbHHKM.Location = new System.Drawing.Point(92, 10);
     this.cmbHHKM.Name = "cmbHHKM";
     this.cmbHHKM.Size = new System.Drawing.Size(225, 24);
     this.cmbHHKM.TabIndex = 0;
     this.cmbHHKM.SelectedIndexChanged += new System.EventHandler(this.cmbHHKM_SelectedIndexChanged);
     //
     // labelX4
     //
     this.labelX4.Location = new System.Drawing.Point(6, 38);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(62, 25);
     this.labelX4.TabIndex = 80;
     this.labelX4.Text = "DVT:";
     //
     // txtSLKM
     //
     //
     //
     //
     this.txtSLKM.Border.Class = "TextBoxBorder";
     this.txtSLKM.FocusHighlightEnabled = true;
     this.txtSLKM.Location = new System.Drawing.Point(91, 70);
     this.txtSLKM.Name = "txtSLKM";
     this.txtSLKM.Size = new System.Drawing.Size(225, 24);
     this.txtSLKM.TabIndex = 1;
     //
     // labelX5
     //
     this.labelX5.Location = new System.Drawing.Point(6, 11);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(83, 25);
     this.labelX5.TabIndex = 78;
     this.labelX5.Text = "Khuyến mãi:";
     //
     // labelX1
     //
     this.labelX1.Location = new System.Drawing.Point(6, 68);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(73, 25);
     this.labelX1.TabIndex = 82;
     this.labelX1.Text = "Số lượng:";
     //
     // txtDVKM
     //
     //
     //
     //
     this.txtDVKM.Border.Class = "TextBoxBorder";
     this.txtDVKM.FocusHighlightEnabled = true;
     this.txtDVKM.Location = new System.Drawing.Point(91, 40);
     this.txtDVKM.Name = "txtDVKM";
     this.txtDVKM.ReadOnly = true;
     this.txtDVKM.Size = new System.Drawing.Size(225, 24);
     this.txtDVKM.TabIndex = 79;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.cmbHH);
     this.groupBox1.Controls.Add(this.txtDVTban);
     this.groupBox1.Controls.Add(this.labelX26);
     this.groupBox1.Controls.Add(this.labelX2);
     this.groupBox1.Controls.Add(this.labelX3);
     this.groupBox1.Controls.Add(this.txtSLBan);
     this.groupBox1.Location = new System.Drawing.Point(3, -8);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(320, 106);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     //
     // cmbHH
     //
     this.cmbHH.DisplayMember = "Text";
     this.cmbHH.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbHH.FocusHighlightEnabled = true;
     this.cmbHH.FormattingEnabled = true;
     this.cmbHH.ItemHeight = 18;
     this.cmbHH.Location = new System.Drawing.Point(74, 11);
     this.cmbHH.Name = "cmbHH";
     this.cmbHH.Size = new System.Drawing.Size(215, 24);
     this.cmbHH.TabIndex = 0;
     this.cmbHH.SelectedIndexChanged += new System.EventHandler(this.cmbHH_SelectedIndexChanged);
     //
     // txtDVTban
     //
     //
     //
     //
     this.txtDVTban.Border.Class = "TextBoxBorder";
     this.txtDVTban.FocusHighlightEnabled = true;
     this.txtDVTban.Location = new System.Drawing.Point(74, 44);
     this.txtDVTban.Name = "txtDVTban";
     this.txtDVTban.ReadOnly = true;
     this.txtDVTban.Size = new System.Drawing.Size(215, 24);
     this.txtDVTban.TabIndex = 73;
     //
     // labelX26
     //
     this.labelX26.Location = new System.Drawing.Point(5, 8);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(73, 25);
     this.labelX26.TabIndex = 60;
     this.labelX26.Text = "Tên Hàng:";
     //
     // labelX2
     //
     this.labelX2.Location = new System.Drawing.Point(6, 43);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(62, 25);
     this.labelX2.TabIndex = 74;
     this.labelX2.Text = "DVT:";
     //
     // labelX3
     //
     this.labelX3.Location = new System.Drawing.Point(4, 73);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(70, 25);
     this.labelX3.TabIndex = 76;
     this.labelX3.Text = "Số lượng:";
     //
     // txtSLBan
     //
     //
     //
     //
     this.txtSLBan.Border.Class = "TextBoxBorder";
     this.txtSLBan.FocusHighlightEnabled = true;
     this.txtSLBan.Location = new System.Drawing.Point(74, 74);
     this.txtSLBan.Name = "txtSLBan";
     this.txtSLBan.Size = new System.Drawing.Size(215, 24);
     this.txtSLBan.TabIndex = 1;
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.SteelBlue;
     this.panel5.Controls.Add(this.cmbIn);
     this.panel5.Controls.Add(this.cmdSua);
     this.panel5.Controls.Add(this.cmdXoa);
     this.panel5.Controls.Add(this.cmdThem);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel5.Location = new System.Drawing.Point(0, 124);
     this.panel5.Margin = new System.Windows.Forms.Padding(0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(724, 29);
     this.panel5.TabIndex = 70;
     //
     // cmbIn
     //
     this.cmbIn.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmbIn.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmbIn.Location = new System.Drawing.Point(458, 2);
     this.cmbIn.Margin = new System.Windows.Forms.Padding(0);
     this.cmbIn.Name = "cmbIn";
     this.cmbIn.Size = new System.Drawing.Size(70, 25);
     this.cmbIn.TabIndex = 3;
     this.cmbIn.Text = "In";
     this.cmbIn.Click += new System.EventHandler(this.cmbIn_Click);
     //
     // cmdSua
     //
     this.cmdSua.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdSua.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmdSua.Location = new System.Drawing.Point(293, 2);
     this.cmdSua.Margin = new System.Windows.Forms.Padding(0);
     this.cmdSua.Name = "cmdSua";
     this.cmdSua.Size = new System.Drawing.Size(70, 25);
     this.cmdSua.TabIndex = 1;
     this.cmdSua.Text = "Sửa";
     this.cmdSua.Click += new System.EventHandler(this.cmdSua_Click);
     //
     // cmdXoa
     //
     this.cmdXoa.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdXoa.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmdXoa.Location = new System.Drawing.Point(375, 2);
     this.cmdXoa.Margin = new System.Windows.Forms.Padding(0);
     this.cmdXoa.Name = "cmdXoa";
     this.cmdXoa.Size = new System.Drawing.Size(70, 25);
     this.cmdXoa.TabIndex = 2;
     this.cmdXoa.Text = "Xóa";
     this.cmdXoa.Click += new System.EventHandler(this.cmdXoa_Click);
     //
     // cmdThem
     //
     this.cmdThem.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdThem.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmdThem.Location = new System.Drawing.Point(210, 2);
     this.cmdThem.Margin = new System.Windows.Forms.Padding(0);
     this.cmdThem.Name = "cmdThem";
     this.cmdThem.Size = new System.Drawing.Size(70, 25);
     this.cmdThem.TabIndex = 0;
     this.cmdThem.Text = "Thêm";
     this.cmdThem.Click += new System.EventHandler(this.cmdThem_Click);
     //
     // frmKhuyenMai
     //
     this.ClientSize = new System.Drawing.Size(841, 543);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.groupPanel2);
     this.Name = "frmKhuyenMai";
     this.Text = "Khuyến mãi";
     this.Load += new System.EventHandler(this.frmKhuyenMai_Load);
     this.Controls.SetChildIndex(this.groupPanel2, 0);
     this.Controls.SetChildIndex(this.groupPanel1, 0);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.cmbSemester = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.dteEnd = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.dteStart = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.cmbSchoolYear = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.btnCancel = new DevComponents.DotNetBar.ButtonX();
     this.btnSave = new DevComponents.DotNetBar.ButtonX();
     this.lblName = new DevComponents.DotNetBar.LabelX();
     this.errorNameDuplicate = new System.Windows.Forms.ErrorProvider(this.components);
     this.panelEx1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dteEnd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dteStart)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorNameDuplicate)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.cmbSemester);
     this.panelEx1.Controls.Add(this.labelX3);
     this.panelEx1.Controls.Add(this.labelX2);
     this.panelEx1.Controls.Add(this.dteEnd);
     this.panelEx1.Controls.Add(this.dteStart);
     this.panelEx1.Controls.Add(this.labelX1);
     this.panelEx1.Controls.Add(this.cmbSchoolYear);
     this.panelEx1.Controls.Add(this.btnCancel);
     this.panelEx1.Controls.Add(this.btnSave);
     this.panelEx1.Controls.Add(this.lblName);
     this.panelEx1.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.panelEx1.Location = new System.Drawing.Point(3, 3);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(245, 177);
     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 = 0;
     //
     // cmbSemester
     //
     this.cmbSemester.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.cmbSemester.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.cmbSemester.DisplayMember = "Text";
     this.cmbSemester.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbSemester.FormattingEnabled = true;
     this.cmbSemester.ItemHeight = 19;
     this.cmbSemester.Location = new System.Drawing.Point(86, 45);
     this.cmbSemester.Name = "cmbSemester";
     this.cmbSemester.Size = new System.Drawing.Size(145, 25);
     this.cmbSemester.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbSemester.TabIndex = 10;
     //
     // labelX3
     //
     this.labelX3.AutoSize = true;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(11, 107);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(60, 21);
     this.labelX3.TabIndex = 9;
     this.labelX3.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, 76);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(60, 21);
     this.labelX2.TabIndex = 8;
     this.labelX2.Text = "開始日期";
     //
     // dteEnd
     //
     //
     //
     //
     this.dteEnd.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dteEnd.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dteEnd.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dteEnd.ButtonDropDown.Visible = true;
     this.dteEnd.IsPopupCalendarOpen = false;
     this.dteEnd.Location = new System.Drawing.Point(86, 107);
     //
     //
     //
     this.dteEnd.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dteEnd.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dteEnd.MonthCalendar.BackgroundStyle.Class = "";
     this.dteEnd.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dteEnd.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dteEnd.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dteEnd.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dteEnd.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dteEnd.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dteEnd.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dteEnd.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dteEnd.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dteEnd.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dteEnd.MonthCalendar.DisplayMonth = new System.DateTime(2013, 7, 1, 0, 0, 0, 0);
     this.dteEnd.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dteEnd.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dteEnd.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dteEnd.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dteEnd.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dteEnd.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dteEnd.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dteEnd.MonthCalendar.TodayButtonVisible = true;
     this.dteEnd.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dteEnd.Name = "dteEnd";
     this.dteEnd.Size = new System.Drawing.Size(145, 25);
     this.dteEnd.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dteEnd.TabIndex = 7;
     //
     // dteStart
     //
     //
     //
     //
     this.dteStart.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dteStart.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dteStart.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dteStart.ButtonDropDown.Visible = true;
     this.dteStart.IsPopupCalendarOpen = false;
     this.dteStart.Location = new System.Drawing.Point(86, 76);
     //
     //
     //
     this.dteStart.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dteStart.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dteStart.MonthCalendar.BackgroundStyle.Class = "";
     this.dteStart.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dteStart.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dteStart.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dteStart.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dteStart.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dteStart.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dteStart.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dteStart.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dteStart.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dteStart.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dteStart.MonthCalendar.DisplayMonth = new System.DateTime(2013, 7, 1, 0, 0, 0, 0);
     this.dteStart.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dteStart.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dteStart.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dteStart.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dteStart.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dteStart.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dteStart.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dteStart.MonthCalendar.TodayButtonVisible = true;
     this.dteStart.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dteStart.Name = "dteStart";
     this.dteStart.Size = new System.Drawing.Size(145, 25);
     this.dteStart.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dteStart.TabIndex = 6;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(37, 45);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(34, 21);
     this.labelX1.TabIndex = 4;
     this.labelX1.Text = "學期";
     //
     // cmbSchoolYear
     //
     this.cmbSchoolYear.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.cmbSchoolYear.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.cmbSchoolYear.DisplayMember = "Text";
     this.cmbSchoolYear.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbSchoolYear.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbSchoolYear.FormattingEnabled = true;
     this.cmbSchoolYear.ItemHeight = 19;
     this.cmbSchoolYear.Location = new System.Drawing.Point(86, 12);
     this.cmbSchoolYear.Name = "cmbSchoolYear";
     this.cmbSchoolYear.Size = new System.Drawing.Size(145, 25);
     this.cmbSchoolYear.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbSchoolYear.TabIndex = 3;
     //
     // btnCancel
     //
     this.btnCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnCancel.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnCancel.Location = new System.Drawing.Point(176, 141);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(59, 23);
     this.btnCancel.TabIndex = 2;
     this.btnCancel.Text = "取消";
     this.btnCancel.Click += new System.EventHandler(this.btnClose);
     //
     // btnSave
     //
     this.btnSave.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnSave.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnSave.Location = new System.Drawing.Point(111, 141);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(59, 23);
     this.btnSave.TabIndex = 0;
     this.btnSave.Text = "儲存";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // lblName
     //
     this.lblName.AutoSize = true;
     //
     //
     //
     this.lblName.BackgroundStyle.Class = "";
     this.lblName.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblName.Location = new System.Drawing.Point(24, 12);
     this.lblName.Name = "lblName";
     this.lblName.Size = new System.Drawing.Size(47, 21);
     this.lblName.TabIndex = 0;
     this.lblName.Text = "學年度";
     //
     // errorNameDuplicate
     //
     this.errorNameDuplicate.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorNameDuplicate.ContainerControl = this;
     //
     // SchoolYearSemesterCreatorForm
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(251, 184);
     this.Controls.Add(this.panelEx1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name = "SchoolYearSemesterCreatorForm";
     this.Text = "";
     this.Load += new System.EventHandler(this.TeacherNameCreatorForm_Load);
     this.panelEx1.ResumeLayout(false);
     this.panelEx1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dteEnd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dteStart)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorNameDuplicate)).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 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();
     this.saveButton = new DevComponents.DotNetBar.ButtonX();
     this.cancelButton = new DevComponents.DotNetBar.ButtonX();
     this.labelXTitle = new DevComponents.DotNetBar.LabelX();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.cmbContinuationType = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.cmbHistoricalPeriod = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem_tick = new DevComponents.Editors.ComboItem();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.comboItem6 = new DevComponents.Editors.ComboItem();
     this.comboItem7 = new DevComponents.Editors.ComboItem();
     this.comboItem8 = new DevComponents.Editors.ComboItem();
     this.comboItem9 = new DevComponents.Editors.ComboItem();
     this.comboItem10 = new DevComponents.Editors.ComboItem();
     this.comboItem11 = new DevComponents.Editors.ComboItem();
     this.comboItem12 = new DevComponents.Editors.ComboItem();
     this.comboItem13 = new DevComponents.Editors.ComboItem();
     this.comboItem14 = new DevComponents.Editors.ComboItem();
     this.comboItem15 = new DevComponents.Editors.ComboItem();
     this.textBoxXListName = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.labelX_back = new DevComponents.DotNetBar.LabelX();
     this.SuspendLayout();
     //
     // saveButton
     //
     this.saveButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.saveButton.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.saveButton.Location = new System.Drawing.Point(54, 307);
     this.saveButton.Name = "saveButton";
     this.saveButton.Size = new System.Drawing.Size(92, 31);
     this.saveButton.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.saveButton.TabIndex = 70;
     this.saveButton.Text = "Save";
     this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
     //
     // cancelButton
     //
     this.cancelButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cancelButton.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.cancelButton.Location = new System.Drawing.Point(156, 307);
     this.cancelButton.Name = "cancelButton";
     this.cancelButton.Size = new System.Drawing.Size(92, 31);
     this.cancelButton.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cancelButton.TabIndex = 21;
     this.cancelButton.Text = "Cancel";
     this.toolTip1.SetToolTip(this.cancelButton, "Return without saving");
     this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
     //
     // labelXTitle
     //
     //
     //
     //
     this.labelXTitle.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelXTitle.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelXTitle.Location = new System.Drawing.Point(65, 4);
     this.labelXTitle.Name = "labelXTitle";
     this.labelXTitle.Size = new System.Drawing.Size(194, 34);
     this.labelXTitle.TabIndex = 19;
     this.labelXTitle.Text = "ADD GROUP";
     //
     // cmbContinuationType
     //
     this.cmbContinuationType.DisplayMember = "Text";
     this.cmbContinuationType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbContinuationType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbContinuationType.FormattingEnabled = true;
     this.cmbContinuationType.ItemHeight = 17;
     this.cmbContinuationType.Location = new System.Drawing.Point(91, 208);
     this.cmbContinuationType.Name = "cmbContinuationType";
     this.cmbContinuationType.Size = new System.Drawing.Size(209, 23);
     this.cmbContinuationType.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbContinuationType.TabIndex = 82;
     //
     // cmbHistoricalPeriod
     //
     this.cmbHistoricalPeriod.DisplayMember = "Text";
     this.cmbHistoricalPeriod.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbHistoricalPeriod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbHistoricalPeriod.FormattingEnabled = true;
     this.cmbHistoricalPeriod.ItemHeight = 17;
     this.cmbHistoricalPeriod.Items.AddRange(new object[] {
     this.comboItem_tick,
     this.comboItem1,
     this.comboItem2,
     this.comboItem3,
     this.comboItem4,
     this.comboItem5,
     this.comboItem6,
     this.comboItem7,
     this.comboItem8,
     this.comboItem9,
     this.comboItem10,
     this.comboItem11,
     this.comboItem12,
     this.comboItem13,
     this.comboItem14,
     this.comboItem15});
     this.cmbHistoricalPeriod.Location = new System.Drawing.Point(91, 154);
     this.cmbHistoricalPeriod.Name = "cmbHistoricalPeriod";
     this.cmbHistoricalPeriod.Size = new System.Drawing.Size(209, 23);
     this.cmbHistoricalPeriod.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbHistoricalPeriod.TabIndex = 81;
     //
     // comboItem_tick
     //
     this.comboItem_tick.Text = "tick";
     //
     // comboItem1
     //
     this.comboItem1.Text = "1 minute";
     //
     // comboItem2
     //
     this.comboItem2.Text = "2 minutes";
     //
     // comboItem3
     //
     this.comboItem3.Text = "3 minutes";
     //
     // comboItem4
     //
     this.comboItem4.Text = "5 minutes";
     //
     // comboItem5
     //
     this.comboItem5.Text = "10 minutes";
     //
     // comboItem6
     //
     this.comboItem6.Text = "15 minutes";
     //
     // comboItem7
     //
     this.comboItem7.Text = "30 minutes";
     //
     // comboItem8
     //
     this.comboItem8.Text = "60 minutes";
     //
     // comboItem9
     //
     this.comboItem9.Text = "240 minutes";
     //
     // comboItem10
     //
     this.comboItem10.Text = "Daily";
     //
     // comboItem11
     //
     this.comboItem11.Text = "Weekly";
     //
     // comboItem12
     //
     this.comboItem12.Text = "Monthly";
     //
     // comboItem13
     //
     this.comboItem13.Text = "Quarterly";
     //
     // comboItem14
     //
     this.comboItem14.Text = "Semiannual";
     //
     // comboItem15
     //
     this.comboItem15.Text = "Yearly";
     //
     // textBoxXListName
     //
     this.textBoxXListName.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.textBoxXListName.Border.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.textBoxXListName.Border.BorderLeftColor = System.Drawing.Color.Green;
     this.textBoxXListName.Border.BorderLeftWidth = 3;
     this.textBoxXListName.Border.Class = "TextBoxBorder";
     this.textBoxXListName.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxXListName.ForeColor = System.Drawing.Color.Black;
     this.textBoxXListName.Location = new System.Drawing.Point(91, 125);
     this.textBoxXListName.Name = "textBoxXListName";
     this.textBoxXListName.Size = new System.Drawing.Size(209, 23);
     this.textBoxXListName.TabIndex = 77;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX1.Location = new System.Drawing.Point(8, 125);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(77, 21);
     this.labelX1.TabIndex = 78;
     this.labelX1.Text = "Group Name:";
     this.labelX1.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX2.Location = new System.Drawing.Point(8, 154);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(63, 21);
     this.labelX2.TabIndex = 79;
     this.labelX2.Text = "Timeframe:";
     this.labelX2.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX3.Location = new System.Drawing.Point(8, 181);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(108, 21);
     this.labelX3.TabIndex = 80;
     this.labelX3.Text = "Continuation Types:";
     this.labelX3.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX_back
     //
     //
     //
     //
     this.labelX_back.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX_back.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX_back.ForeColor = System.Drawing.Color.Black;
     this.labelX_back.Location = new System.Drawing.Point(3, 4);
     this.labelX_back.Name = "labelX_back";
     this.labelX_back.PaddingLeft = 6;
     this.labelX_back.Size = new System.Drawing.Size(68, 64);
     this.labelX_back.Symbol = "";
     this.labelX_back.SymbolColor = System.Drawing.Color.Green;
     this.labelX_back.SymbolSize = 50F;
     this.labelX_back.TabIndex = 105;
     this.labelX_back.Visible = false;
     this.labelX_back.Click += new System.EventHandler(this.pictureBox1_Click);
     //
     // AddListControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.Controls.Add(this.labelXTitle);
     this.Controls.Add(this.labelX_back);
     this.Controls.Add(this.cmbContinuationType);
     this.Controls.Add(this.cmbHistoricalPeriod);
     this.Controls.Add(this.textBoxXListName);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.saveButton);
     this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.Name = "AddListControl";
     this.Size = new System.Drawing.Size(303, 383);
     this.Load += new System.EventHandler(this.EditListControl_Load);
     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.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>
 /// 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()
 {
     DevComponents.Editors.ComboItem comboItemClase;
     DevComponents.Editors.ComboItem comboItemOtro;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainCalendarViewControl));
     this.expandablePanel1 = new DevComponents.DotNetBar.ExpandablePanel();
     this.buttonBuscar = new DevComponents.DotNetBar.ButtonX();
     this.buttonAddSerie = new DevComponents.DotNetBar.ButtonX();
     this.buttonCancelar = new DevComponents.DotNetBar.ButtonX();
     this.buttonAceptar = new DevComponents.DotNetBar.ButtonX();
     this.superTabControl = new DevComponents.DotNetBar.SuperTabControl();
     this.superTabControlPanelClase = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.asignacionClaseControl = new Control_Aulas_UAM.AsignacionClaseControl();
     this.superTabItemClase = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanelOtro = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.asignacionVariosControl = new Control_Aulas_UAM.AsignacionVariosControl();
     this.superTabItemOtro = new DevComponents.DotNetBar.SuperTabItem();
     this.comboBoxTipoAsignacion = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.superTabItem1 = new DevComponents.DotNetBar.SuperTabItem();
     this.calendarControl = new Control_Aulas_UAM.CalendarControl();
     comboItemClase = new DevComponents.Editors.ComboItem();
     comboItemOtro = new DevComponents.Editors.ComboItem();
     this.expandablePanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.superTabControl)).BeginInit();
     this.superTabControl.SuspendLayout();
     this.superTabControlPanelClase.SuspendLayout();
     this.superTabControlPanelOtro.SuspendLayout();
     this.SuspendLayout();
     //
     // comboItemClase
     //
     comboItemClase.Text = "Clase";
     comboItemClase.Value = "";
     //
     // comboItemOtro
     //
     comboItemOtro.Text = "Otro";
     comboItemOtro.Value = "Otro";
     //
     // expandablePanel1
     //
     this.expandablePanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.expandablePanel1.CollapseDirection = DevComponents.DotNetBar.eCollapseDirection.LeftToRight;
     this.expandablePanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.expandablePanel1.Controls.Add(this.buttonBuscar);
     this.expandablePanel1.Controls.Add(this.buttonAddSerie);
     this.expandablePanel1.Controls.Add(this.buttonCancelar);
     this.expandablePanel1.Controls.Add(this.buttonAceptar);
     this.expandablePanel1.Controls.Add(this.superTabControl);
     this.expandablePanel1.Controls.Add(this.comboBoxTipoAsignacion);
     this.expandablePanel1.Dock = System.Windows.Forms.DockStyle.Right;
     this.expandablePanel1.ExpandButtonVisible = false;
     this.expandablePanel1.ExpandOnTitleClick = true;
     this.expandablePanel1.Location = new System.Drawing.Point(815, 0);
     this.expandablePanel1.Name = "expandablePanel1";
     this.expandablePanel1.Size = new System.Drawing.Size(264, 557);
     this.expandablePanel1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.expandablePanel1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandablePanel1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.expandablePanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.expandablePanel1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.expandablePanel1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandablePanel1.Style.GradientAngle = 90;
     this.expandablePanel1.TabIndex = 0;
     this.expandablePanel1.TitleHeight = 0;
     this.expandablePanel1.TitleStyle.Alignment = System.Drawing.StringAlignment.Center;
     this.expandablePanel1.TitleStyle.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandablePanel1.TitleStyle.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.expandablePanel1.TitleStyle.Border = DevComponents.DotNetBar.eBorderType.RaisedInner;
     this.expandablePanel1.TitleStyle.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandablePanel1.TitleStyle.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.expandablePanel1.TitleStyle.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.expandablePanel1.TitleStyle.GradientAngle = 90;
     this.expandablePanel1.TitleText = "Title Bar";
     this.expandablePanel1.Visible = false;
     //
     // buttonBuscar
     //
     this.buttonBuscar.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonBuscar.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonBuscar.Image = ((System.Drawing.Image)(resources.GetObject("buttonBuscar.Image")));
     this.buttonBuscar.Location = new System.Drawing.Point(147, 48);
     this.buttonBuscar.Name = "buttonBuscar";
     this.buttonBuscar.Size = new System.Drawing.Size(34, 34);
     this.buttonBuscar.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonBuscar.TabIndex = 7;
     this.buttonBuscar.Tooltip = "Buscar";
     this.buttonBuscar.Click += new System.EventHandler(this.buttonBuscar_Click);
     //
     // buttonAddSerie
     //
     this.buttonAddSerie.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonAddSerie.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonAddSerie.Image = ((System.Drawing.Image)(resources.GetObject("buttonAddSerie.Image")));
     this.buttonAddSerie.Location = new System.Drawing.Point(107, 48);
     this.buttonAddSerie.Name = "buttonAddSerie";
     this.buttonAddSerie.Size = new System.Drawing.Size(34, 34);
     this.buttonAddSerie.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonAddSerie.TabIndex = 6;
     this.buttonAddSerie.Tooltip = "Agregar Serie";
     this.buttonAddSerie.Click += new System.EventHandler(this.buttonAddSerie_Click);
     //
     // buttonCancelar
     //
     this.buttonCancelar.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonCancelar.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonCancelar.Image = ((System.Drawing.Image)(resources.GetObject("buttonCancelar.Image")));
     this.buttonCancelar.Location = new System.Drawing.Point(227, 48);
     this.buttonCancelar.Name = "buttonCancelar";
     this.buttonCancelar.Size = new System.Drawing.Size(34, 34);
     this.buttonCancelar.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonCancelar.TabIndex = 5;
     this.buttonCancelar.Tooltip = "Cancelar";
     this.buttonCancelar.Click += new System.EventHandler(this.buttonCancelar_Click);
     //
     // buttonAceptar
     //
     this.buttonAceptar.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonAceptar.Image = ((System.Drawing.Image)(resources.GetObject("buttonAceptar.Image")));
     this.buttonAceptar.Location = new System.Drawing.Point(187, 48);
     this.buttonAceptar.Name = "buttonAceptar";
     this.buttonAceptar.Size = new System.Drawing.Size(34, 34);
     this.buttonAceptar.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonAceptar.TabIndex = 4;
     this.buttonAceptar.Tooltip = "Aceptar";
     this.buttonAceptar.Click += new System.EventHandler(this.buttonAceptar_Click);
     //
     // superTabControl
     //
     this.superTabControl.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.superTabControl.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     //
     //
     //
     this.superTabControl.ControlBox.CloseBox.Name = "";
     //
     //
     //
     this.superTabControl.ControlBox.MenuBox.Name = "";
     this.superTabControl.ControlBox.Name = "";
     this.superTabControl.ControlBox.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.superTabControl.ControlBox.MenuBox,
     this.superTabControl.ControlBox.CloseBox});
     this.superTabControl.ControlBox.Visible = false;
     this.superTabControl.Controls.Add(this.superTabControlPanelClase);
     this.superTabControl.Controls.Add(this.superTabControlPanelOtro);
     this.superTabControl.Location = new System.Drawing.Point(3, 114);
     this.superTabControl.Name = "superTabControl";
     this.superTabControl.ReorderTabsEnabled = false;
     this.superTabControl.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
     this.superTabControl.SelectedTabIndex = 0;
     this.superTabControl.Size = new System.Drawing.Size(258, 439);
     this.superTabControl.TabFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.superTabControl.TabIndex = 3;
     this.superTabControl.TabLayoutType = DevComponents.DotNetBar.eSuperTabLayoutType.SingleLineFit;
     this.superTabControl.Tabs.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.superTabItemClase,
     this.superTabItemOtro});
     this.superTabControl.TabsVisible = false;
     //
     // superTabControlPanelClase
     //
     this.superTabControlPanelClase.Controls.Add(this.asignacionClaseControl);
     this.superTabControlPanelClase.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanelClase.Location = new System.Drawing.Point(0, 25);
     this.superTabControlPanelClase.Name = "superTabControlPanelClase";
     this.superTabControlPanelClase.Size = new System.Drawing.Size(258, 414);
     this.superTabControlPanelClase.TabIndex = 1;
     this.superTabControlPanelClase.TabItem = this.superTabItemClase;
     //
     // asignacionClaseControl
     //
     this.asignacionClaseControl.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.asignacionClaseControl.Asignatura = null;
     this.asignacionClaseControl.Asignaturas = null;
     this.asignacionClaseControl.Aula = null;
     this.asignacionClaseControl.Aulas = null;
     this.asignacionClaseControl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(255)))));
     this.asignacionClaseControl.Fin = new System.DateTime(2012, 10, 29, 5, 53, 0, 0);
     this.asignacionClaseControl.Grupo = null;
     this.asignacionClaseControl.Inicio = new System.DateTime(2012, 10, 29, 4, 53, 31, 0);
     this.asignacionClaseControl.Location = new System.Drawing.Point(0, 0);
     this.asignacionClaseControl.Name = "asignacionClaseControl";
     this.asignacionClaseControl.ReadOnly = false;
     this.asignacionClaseControl.Size = new System.Drawing.Size(255, 411);
     this.asignacionClaseControl.TabIndex = 0;
     //
     // superTabItemClase
     //
     this.superTabItemClase.AttachedControl = this.superTabControlPanelClase;
     this.superTabItemClase.GlobalItem = false;
     this.superTabItemClase.Name = "superTabItemClase";
     this.superTabItemClase.Text = "Clase";
     //
     // superTabControlPanelOtro
     //
     this.superTabControlPanelOtro.Controls.Add(this.asignacionVariosControl);
     this.superTabControlPanelOtro.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanelOtro.Location = new System.Drawing.Point(0, 0);
     this.superTabControlPanelOtro.Name = "superTabControlPanelOtro";
     this.superTabControlPanelOtro.Size = new System.Drawing.Size(258, 439);
     this.superTabControlPanelOtro.TabIndex = 0;
     this.superTabControlPanelOtro.TabItem = this.superTabItemOtro;
     //
     // asignacionVariosControl
     //
     this.asignacionVariosControl.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.asignacionVariosControl.Aula = null;
     this.asignacionVariosControl.Aulas = null;
     this.asignacionVariosControl.AutoScroll = true;
     this.asignacionVariosControl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(255)))));
     this.asignacionVariosControl.Fin = new System.DateTime(2012, 10, 29, 4, 53, 39, 0);
     this.asignacionVariosControl.Inicio = new System.DateTime(2012, 10, 29, 4, 53, 31, 0);
     this.asignacionVariosControl.Location = new System.Drawing.Point(0, 0);
     this.asignacionVariosControl.Name = "asignacionVariosControl";
     this.asignacionVariosControl.Observaciones = "";
     this.asignacionVariosControl.ReadOnly = false;
     this.asignacionVariosControl.Size = new System.Drawing.Size(258, 461);
     this.asignacionVariosControl.TabIndex = 0;
     this.asignacionVariosControl.TipoUso = null;
     //
     // superTabItemOtro
     //
     this.superTabItemOtro.AttachedControl = this.superTabControlPanelOtro;
     this.superTabItemOtro.GlobalItem = false;
     this.superTabItemOtro.Name = "superTabItemOtro";
     this.superTabItemOtro.Text = "Otro";
     //
     // comboBoxTipoAsignacion
     //
     this.comboBoxTipoAsignacion.DisplayMember = "Text";
     this.comboBoxTipoAsignacion.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxTipoAsignacion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxTipoAsignacion.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.comboBoxTipoAsignacion.FormattingEnabled = true;
     this.comboBoxTipoAsignacion.ItemHeight = 16;
     this.comboBoxTipoAsignacion.Items.AddRange(new object[] {
     comboItemClase,
     comboItemOtro});
     this.comboBoxTipoAsignacion.Location = new System.Drawing.Point(27, 88);
     this.comboBoxTipoAsignacion.Name = "comboBoxTipoAsignacion";
     this.comboBoxTipoAsignacion.Size = new System.Drawing.Size(194, 22);
     this.comboBoxTipoAsignacion.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
     this.comboBoxTipoAsignacion.TabIndex = 2;
     this.comboBoxTipoAsignacion.SelectedIndexChanged += new System.EventHandler(this.comboBoxExTipoAsignacion_SelectedIndexChanged);
     //
     // superTabItem1
     //
     this.superTabItem1.GlobalItem = false;
     this.superTabItem1.Name = "superTabItem1";
     this.superTabItem1.Text = "Clase";
     //
     // calendarControl
     //
     this.calendarControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.calendarControl.Location = new System.Drawing.Point(0, 0);
     this.calendarControl.Name = "calendarControl";
     this.calendarControl.ReadOnly = true;
     this.calendarControl.Size = new System.Drawing.Size(815, 557);
     this.calendarControl.TabIndex = 1;
     //
     // MainCalendarViewControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.calendarControl);
     this.Controls.Add(this.expandablePanel1);
     this.Name = "MainCalendarViewControl";
     this.Size = new System.Drawing.Size(1079, 557);
     this.Load += new System.EventHandler(this.AsignacionSimpleControl_Load);
     this.expandablePanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.superTabControl)).EndInit();
     this.superTabControl.ResumeLayout(false);
     this.superTabControlPanelClase.ResumeLayout(false);
     this.superTabControlPanelOtro.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmLogin));
     this.skinEngine1 = new Sunisoft.IrisSkin.SkinEngine(((System.ComponentModel.Component)(this)));
     this.bubbleBar1 = new DevComponents.DotNetBar.BubbleBar();
     this.bubbleBarTab1 = new DevComponents.DotNetBar.BubbleBarTab(this.components);
     this.bubbleBarTab2 = new DevComponents.DotNetBar.BubbleBarTab(this.components);
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.button3 = new System.Windows.Forms.Button();
     this.textBox11 = new System.Windows.Forms.TextBox();
     this.textBox8 = new System.Windows.Forms.TextBox();
     this.textBox10 = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.CmdGet = new System.Windows.Forms.Button();
     this.label9 = new System.Windows.Forms.Label();
     this.textBox9 = new System.Windows.Forms.TextBox();
     this.TabP2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControl1 = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.comboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.CmdCancel = new System.Windows.Forms.Button();
     this.textBox6 = new System.Windows.Forms.TextBox();
     this.CmdOK = new System.Windows.Forms.Button();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.TabP1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel4 = new DevComponents.DotNetBar.TabControlPanel();
     this.button1 = new System.Windows.Forms.Button();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel();
     this.button2 = new System.Windows.Forms.Button();
     this.textBox4 = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.textBox3 = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.TabP3 = new DevComponents.DotNetBar.TabItem(this.components);
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.pictureBox3 = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.bubbleBar1)).BeginInit();
     this.tabControlPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tabControlPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.tabControlPanel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     this.tabControlPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     this.SuspendLayout();
     //
     // skinEngine1
     //
     this.skinEngine1.Enable3rdControl = true;
     this.skinEngine1.SerialNumber = "";
     this.skinEngine1.SkinFile = null;
     //
     // bubbleBar1
     //
     this.bubbleBar1.Alignment = DevComponents.DotNetBar.eBubbleButtonAlignment.Bottom;
     this.bubbleBar1.AntiAlias = true;
     this.bubbleBar1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.bubbleBar1.ButtonBackAreaStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(105)))), ((int)(((byte)(105)))), ((int)(((byte)(105)))));
     this.bubbleBar1.ButtonBackAreaStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.bubbleBar1.ButtonBackAreaStyle.BorderBottomWidth = 1;
     this.bubbleBar1.ButtonBackAreaStyle.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(245)))), ((int)(((byte)(245)))), ((int)(((byte)(245)))));
     this.bubbleBar1.ButtonBackAreaStyle.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.bubbleBar1.ButtonBackAreaStyle.BorderLeftWidth = 1;
     this.bubbleBar1.ButtonBackAreaStyle.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.bubbleBar1.ButtonBackAreaStyle.BorderRightWidth = 1;
     this.bubbleBar1.ButtonBackAreaStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.bubbleBar1.ButtonBackAreaStyle.BorderTopWidth = 1;
     this.bubbleBar1.ButtonBackAreaStyle.PaddingBottom = 3;
     this.bubbleBar1.ButtonBackAreaStyle.PaddingLeft = 3;
     this.bubbleBar1.ButtonBackAreaStyle.PaddingRight = 3;
     this.bubbleBar1.ButtonBackAreaStyle.PaddingTop = 3;
     this.bubbleBar1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.bubbleBar1.ImageSizeNormal = new System.Drawing.Size(24, 24);
     this.bubbleBar1.Location = new System.Drawing.Point(0, 648);
     this.bubbleBar1.MouseOverTabColors.BorderColor = System.Drawing.SystemColors.Highlight;
     this.bubbleBar1.Name = "bubbleBar1";
     this.bubbleBar1.SelectedTab = this.bubbleBarTab1;
     this.bubbleBar1.SelectedTabColors.BorderColor = System.Drawing.Color.Black;
     this.bubbleBar1.Size = new System.Drawing.Size(839, 52);
     this.bubbleBar1.TabIndex = 7;
     this.bubbleBar1.Tabs.Add(this.bubbleBarTab1);
     this.bubbleBar1.Tabs.Add(this.bubbleBarTab2);
     //
     // bubbleBarTab1
     //
     this.bubbleBarTab1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(230)))), ((int)(((byte)(247)))));
     this.bubbleBarTab1.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(168)))), ((int)(((byte)(228)))));
     this.bubbleBarTab1.DarkBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(190)))), ((int)(((byte)(105)))), ((int)(((byte)(105)))), ((int)(((byte)(105)))));
     this.bubbleBarTab1.LightBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.bubbleBarTab1.Name = "bubbleBarTab1";
     this.bubbleBarTab1.PredefinedColor = DevComponents.DotNetBar.eTabItemColor.Blue;
     this.bubbleBarTab1.Text = "开发单位";
     this.bubbleBarTab1.TextColor = System.Drawing.Color.Black;
     //
     // bubbleBarTab2
     //
     this.bubbleBarTab2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(244)))), ((int)(((byte)(213)))));
     this.bubbleBarTab2.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(216)))), ((int)(((byte)(105)))));
     this.bubbleBarTab2.DarkBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(190)))), ((int)(((byte)(105)))), ((int)(((byte)(105)))), ((int)(((byte)(105)))));
     this.bubbleBarTab2.LightBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.bubbleBarTab2.Name = "bubbleBarTab2";
     this.bubbleBarTab2.PredefinedColor = DevComponents.DotNetBar.eTabItemColor.Yellow;
     this.bubbleBarTab2.Text = "软件版本";
     this.bubbleBarTab2.TextColor = System.Drawing.Color.Black;
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.Controls.Add(this.button3);
     this.tabControlPanel2.Controls.Add(this.textBox11);
     this.tabControlPanel2.Controls.Add(this.textBox8);
     this.tabControlPanel2.Controls.Add(this.textBox10);
     this.tabControlPanel2.Controls.Add(this.label8);
     this.tabControlPanel2.Controls.Add(this.CmdGet);
     this.tabControlPanel2.Controls.Add(this.label9);
     this.tabControlPanel2.Controls.Add(this.textBox9);
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 25);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(409, 164);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel2.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.Green;
     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.TabP2;
     //
     // button3
     //
     this.button3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.button3.Location = new System.Drawing.Point(365, 130);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(46, 25);
     this.button3.TabIndex = 12;
     this.button3.Text = "退 出";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // textBox11
     //
     this.textBox11.Location = new System.Drawing.Point(69, 137);
     this.textBox11.Name = "textBox11";
     this.textBox11.Size = new System.Drawing.Size(110, 21);
     this.textBox11.TabIndex = 10;
     this.textBox11.Visible = false;
     //
     // textBox8
     //
     this.textBox8.Location = new System.Drawing.Point(69, 92);
     this.textBox8.MaxLength = 20;
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new System.Drawing.Size(323, 21);
     this.textBox8.TabIndex = 5;
     //
     // textBox10
     //
     this.textBox10.Location = new System.Drawing.Point(69, 119);
     this.textBox10.Name = "textBox10";
     this.textBox10.Size = new System.Drawing.Size(110, 21);
     this.textBox10.TabIndex = 9;
     this.textBox10.Visible = false;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label8.Location = new System.Drawing.Point(23, 15);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(37, 14);
     this.label8.TabIndex = 0;
     this.label8.Text = "问题";
     //
     // CmdGet
     //
     this.CmdGet.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.CmdGet.Location = new System.Drawing.Point(290, 130);
     this.CmdGet.Name = "CmdGet";
     this.CmdGet.Size = new System.Drawing.Size(60, 25);
     this.CmdGet.TabIndex = 8;
     this.CmdGet.Text = "提 交";
     this.CmdGet.UseVisualStyleBackColor = true;
     this.CmdGet.Click += new System.EventHandler(this.CmdGet_Click);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label9.Location = new System.Drawing.Point(20, 93);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(35, 14);
     this.label9.TabIndex = 6;
     this.label9.Text = "答案";
     //
     // textBox9
     //
     this.textBox9.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.textBox9.ForeColor = System.Drawing.Color.Blue;
     this.textBox9.Location = new System.Drawing.Point(69, 15);
     this.textBox9.MaxLength = 20;
     this.textBox9.Multiline = true;
     this.textBox9.Name = "textBox9";
     this.textBox9.Size = new System.Drawing.Size(323, 62);
     this.textBox9.TabIndex = 7;
     //
     // TabP2
     //
     this.TabP2.AttachedControl = this.tabControlPanel2;
     this.TabP2.Name = "TabP2";
     this.TabP2.Text = "忘记密码";
     //
     // tabControl1
     //
     this.tabControl1.BackColor = System.Drawing.Color.Transparent;
     this.tabControl1.CanReorderTabs = true;
     this.tabControl1.ColorScheme.TabBorder = System.Drawing.Color.Green;
     this.tabControl1.ColorScheme.TabItemBackgroundColorBlend.AddRange(new DevComponents.DotNetBar.BackgroundColorBlend[] {
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(230)))), ((int)(((byte)(249))))), 0F),
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(199)))), ((int)(((byte)(220)))), ((int)(((byte)(248))))), 0.45F),
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(179)))), ((int)(((byte)(208)))), ((int)(((byte)(245))))), 0.45F),
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(229)))), ((int)(((byte)(247))))), 1F)});
     this.tabControl1.ColorScheme.TabItemBorder = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.tabControl1.ColorScheme.TabItemBorderDark = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.tabControl1.ColorScheme.TabItemHotBackground2 = System.Drawing.Color.LimeGreen;
     this.tabControl1.ColorScheme.TabItemHotBackgroundColorBlend.AddRange(new DevComponents.DotNetBar.BackgroundColorBlend[] {
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(253)))), ((int)(((byte)(235))))), 0F),
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(236)))), ((int)(((byte)(168))))), 0.45F),
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(218)))), ((int)(((byte)(89))))), 0.45F),
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(230)))), ((int)(((byte)(141))))), 1F)});
     this.tabControl1.ColorScheme.TabItemSelectedBackgroundColorBlend.AddRange(new DevComponents.DotNetBar.BackgroundColorBlend[] {
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(210)))), ((int)(((byte)(155))))), 0F),
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(187)))), ((int)(((byte)(110))))), 0.45F),
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(175)))), ((int)(((byte)(68))))), 0.45F),
     new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(220)))), ((int)(((byte)(117))))), 1F)});
     this.tabControl1.ColorScheme.TabItemSelectedBorder = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.tabControl1.ColorScheme.TabPanelBorder = System.Drawing.Color.Green;
     this.tabControl1.Controls.Add(this.tabControlPanel1);
     this.tabControl1.Controls.Add(this.tabControlPanel4);
     this.tabControl1.Controls.Add(this.tabControlPanel2);
     this.tabControl1.Controls.Add(this.tabControlPanel3);
     this.tabControl1.Location = new System.Drawing.Point(430, 310);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedTabFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
     this.tabControl1.SelectedTabIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(409, 189);
     this.tabControl1.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Document;
     this.tabControl1.TabIndex = 7;
     this.tabControl1.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.MultilineWithNavigationBox;
     this.tabControl1.Tabs.Add(this.TabP1);
     this.tabControl1.Tabs.Add(this.TabP2);
     this.tabControl1.Tabs.Add(this.TabP3);
     this.tabControl1.Tabs.Add(this.tabItem1);
     this.tabControl1.Text = "tabControl2";
     this.tabControl1.SelectedTabChanged += new DevComponents.DotNetBar.TabStrip.SelectedTabChangedEventHandler(this.tabControl1_SelectedTabChanged);
     this.tabControl1.TabIndexChanged += new System.EventHandler(this.tabControl1_TabIndexChanged);
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.comboBoxEx1);
     this.tabControlPanel1.Controls.Add(this.pictureBox1);
     this.tabControlPanel1.Controls.Add(this.CmdCancel);
     this.tabControlPanel1.Controls.Add(this.textBox6);
     this.tabControlPanel1.Controls.Add(this.CmdOK);
     this.tabControlPanel1.Controls.Add(this.label6);
     this.tabControlPanel1.Controls.Add(this.label5);
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 25);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(409, 164);
     this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.Green;
     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.TabP1;
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DisplayMember = "Text";
     this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.Location = new System.Drawing.Point(225, 51);
     this.comboBoxEx1.Name = "comboBoxEx1";
     this.comboBoxEx1.Size = new System.Drawing.Size(121, 22);
     this.comboBoxEx1.TabIndex = 10;
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(76, 38);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(77, 80);
     this.pictureBox1.TabIndex = 6;
     this.pictureBox1.TabStop = false;
     //
     // CmdCancel
     //
     this.CmdCancel.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.CmdCancel.Location = new System.Drawing.Point(238, 134);
     this.CmdCancel.Name = "CmdCancel";
     this.CmdCancel.Size = new System.Drawing.Size(46, 25);
     this.CmdCancel.TabIndex = 5;
     this.CmdCancel.Text = "退 出";
     this.CmdCancel.UseVisualStyleBackColor = true;
     this.CmdCancel.Click += new System.EventHandler(this.CmdCancel_Click);
     //
     // textBox6
     //
     this.textBox6.Location = new System.Drawing.Point(225, 87);
     this.textBox6.MaxLength = 16;
     this.textBox6.Name = "textBox6";
     this.textBox6.PasswordChar = '*';
     this.textBox6.Size = new System.Drawing.Size(121, 21);
     this.textBox6.TabIndex = 7;
     this.textBox6.Tag = "输入登录密码";
     //
     // CmdOK
     //
     this.CmdOK.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.CmdOK.ForeColor = System.Drawing.SystemColors.ControlText;
     this.CmdOK.Location = new System.Drawing.Point(140, 134);
     this.CmdOK.Name = "CmdOK";
     this.CmdOK.Size = new System.Drawing.Size(46, 25);
     this.CmdOK.TabIndex = 4;
     this.CmdOK.Text = "登 录";
     this.CmdOK.UseVisualStyleBackColor = true;
     this.CmdOK.Click += new System.EventHandler(this.CmdOK_Click);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label6.Location = new System.Drawing.Point(170, 91);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(49, 14);
     this.label6.TabIndex = 9;
     this.label6.Text = "密  码";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.label5.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label5.Location = new System.Drawing.Point(170, 51);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(49, 14);
     this.label5.TabIndex = 8;
     this.label5.Text = "姓  名";
     //
     // TabP1
     //
     this.TabP1.AttachedControl = this.tabControlPanel1;
     this.TabP1.Name = "TabP1";
     this.TabP1.Text = "登录";
     //
     // tabControlPanel4
     //
     this.tabControlPanel4.Controls.Add(this.button1);
     this.tabControlPanel4.Controls.Add(this.pictureBox2);
     this.tabControlPanel4.Controls.Add(this.linkLabel1);
     this.tabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel4.Location = new System.Drawing.Point(0, 25);
     this.tabControlPanel4.Name = "tabControlPanel4";
     this.tabControlPanel4.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel4.Size = new System.Drawing.Size(409, 164);
     this.tabControlPanel4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel4.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel4.Style.BorderColor.Color = System.Drawing.Color.Green;
     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.tabItem1;
     //
     // button1
     //
     this.button1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.button1.Location = new System.Drawing.Point(290, 88);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(46, 25);
     this.button1.TabIndex = 11;
     this.button1.Text = "退 出";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // pictureBox2
     //
     this.pictureBox2.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
     this.pictureBox2.Location = new System.Drawing.Point(99, 33);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(77, 80);
     this.pictureBox2.TabIndex = 10;
     this.pictureBox2.TabStop = false;
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.BackColor = System.Drawing.Color.Transparent;
     this.linkLabel1.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.linkLabel1.Location = new System.Drawing.Point(202, 97);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(35, 14);
     this.linkLabel1.TabIndex = 0;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "升级";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // tabItem1
     //
     this.tabItem1.AttachedControl = this.tabControlPanel4;
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "系统升级";
     this.tabItem1.Visible = false;
     //
     // tabControlPanel3
     //
     this.tabControlPanel3.Controls.Add(this.button2);
     this.tabControlPanel3.Controls.Add(this.textBox4);
     this.tabControlPanel3.Controls.Add(this.label1);
     this.tabControlPanel3.Controls.Add(this.label4);
     this.tabControlPanel3.Controls.Add(this.textBox1);
     this.tabControlPanel3.Controls.Add(this.textBox3);
     this.tabControlPanel3.Controls.Add(this.label2);
     this.tabControlPanel3.Controls.Add(this.label3);
     this.tabControlPanel3.Controls.Add(this.textBox2);
     this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel3.Location = new System.Drawing.Point(0, 25);
     this.tabControlPanel3.Name = "tabControlPanel3";
     this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel3.Size = new System.Drawing.Size(409, 164);
     this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel3.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.Color.Green;
     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.TabP3;
     //
     // button2
     //
     this.button2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.button2.Location = new System.Drawing.Point(362, 135);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(46, 25);
     this.button2.TabIndex = 23;
     this.button2.Text = "退 出";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // textBox4
     //
     this.textBox4.Location = new System.Drawing.Point(189, 102);
     this.textBox4.Name = "textBox4";
     this.textBox4.PasswordChar = '*';
     this.textBox4.Size = new System.Drawing.Size(151, 21);
     this.textBox4.TabIndex = 20;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location = new System.Drawing.Point(106, 24);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(77, 14);
     this.label1.TabIndex = 16;
     this.label1.Text = "服务器名称";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label4.Location = new System.Drawing.Point(120, 105);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(63, 14);
     this.label4.TabIndex = 22;
     this.label4.Text = "用户密码";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(189, 21);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(151, 21);
     this.textBox1.TabIndex = 15;
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(189, 75);
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new System.Drawing.Size(151, 21);
     this.textBox3.TabIndex = 19;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location = new System.Drawing.Point(106, 51);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(77, 14);
     this.label2.TabIndex = 18;
     this.label2.Text = "数据库名称";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label3.Location = new System.Drawing.Point(120, 78);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(63, 14);
     this.label3.TabIndex = 21;
     this.label3.Text = "用户名称";
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(189, 48);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(151, 21);
     this.textBox2.TabIndex = 17;
     //
     // TabP3
     //
     this.TabP3.AttachedControl = this.tabControlPanel3;
     this.TabP3.Name = "TabP3";
     this.TabP3.Text = "连接参数";
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     this.labelX1.ForeColor = System.Drawing.Color.Crimson;
     this.labelX1.Location = new System.Drawing.Point(162, 671);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(500, 23);
     this.labelX1.TabIndex = 8;
     this.labelX1.Text = "    Ver 1.0";
     this.labelX1.TextAlignment = System.Drawing.StringAlignment.Center;
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.White;
     this.labelX2.Font = new System.Drawing.Font("华文新魏", 30F, System.Drawing.FontStyle.Italic);
     this.labelX2.ForeColor = System.Drawing.Color.Crimson;
     this.labelX2.Location = new System.Drawing.Point(12, 114);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(398, 49);
     this.labelX2.TabIndex = 9;
     this.labelX2.Text = "酒店消费管理系统";
     this.labelX2.TextAlignment = System.Drawing.StringAlignment.Center;
     //
     // pictureBox3
     //
     this.pictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
     this.pictureBox3.Location = new System.Drawing.Point(590, 28);
     this.pictureBox3.Name = "pictureBox3";
     this.pictureBox3.Size = new System.Drawing.Size(185, 51);
     this.pictureBox3.TabIndex = 10;
     this.pictureBox3.TabStop = false;
     //
     // FrmLogin
     //
     this.AcceptButton = this.CmdOK;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.ClientSize = new System.Drawing.Size(839, 700);
     this.Controls.Add(this.pictureBox3);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.bubbleBar1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmLogin";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "酒店会员管理系统";
     this.TransparencyKey = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.Load += new System.EventHandler(this.FrmLogin_Load);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmLogin_FormClosed);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmLogin_FormClosing);
     ((System.ComponentModel.ISupportInitialize)(this.bubbleBar1)).EndInit();
     this.tabControlPanel2.ResumeLayout(false);
     this.tabControlPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tabControlPanel1.ResumeLayout(false);
     this.tabControlPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.tabControlPanel4.ResumeLayout(false);
     this.tabControlPanel4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     this.tabControlPanel3.ResumeLayout(false);
     this.tabControlPanel3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).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.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.lblUsername = new DevComponents.DotNetBar.LabelX();
     this.lblPassword = new DevComponents.DotNetBar.LabelX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.tbxUsername = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tbxPassword = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.cbxDatabase = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.btnSaveSystemConfig = new DevComponents.DotNetBar.ButtonX();
     this.tbxServername = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.btnConnect = new DevComponents.DotNetBar.ButtonX();
     this.SuspendLayout();
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(13, 13);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "Server Name";
     //
     // lblUsername
     //
     //
     //
     //
     this.lblUsername.BackgroundStyle.Class = "";
     this.lblUsername.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblUsername.Location = new System.Drawing.Point(12, 43);
     this.lblUsername.Name = "lblUsername";
     this.lblUsername.Size = new System.Drawing.Size(75, 23);
     this.lblUsername.TabIndex = 1;
     this.lblUsername.Text = "User Name";
     //
     // lblPassword
     //
     //
     //
     //
     this.lblPassword.BackgroundStyle.Class = "";
     this.lblPassword.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblPassword.Location = new System.Drawing.Point(12, 72);
     this.lblPassword.Name = "lblPassword";
     this.lblPassword.Size = new System.Drawing.Size(75, 23);
     this.lblPassword.TabIndex = 2;
     this.lblPassword.Text = "Password";
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(12, 156);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(98, 23);
     this.labelX4.TabIndex = 3;
     this.labelX4.Text = "Database";
     //
     // tbxUsername
     //
     //
     //
     //
     this.tbxUsername.Border.Class = "TextBoxBorder";
     this.tbxUsername.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.tbxUsername.Location = new System.Drawing.Point(94, 46);
     this.tbxUsername.Name = "tbxUsername";
     this.tbxUsername.Size = new System.Drawing.Size(156, 20);
     this.tbxUsername.TabIndex = 2;
     //
     // tbxPassword
     //
     //
     //
     //
     this.tbxPassword.Border.Class = "TextBoxBorder";
     this.tbxPassword.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.tbxPassword.Location = new System.Drawing.Point(94, 75);
     this.tbxPassword.Name = "tbxPassword";
     this.tbxPassword.PasswordChar = '*';
     this.tbxPassword.Size = new System.Drawing.Size(156, 20);
     this.tbxPassword.TabIndex = 3;
     //
     // cbxDatabase
     //
     this.cbxDatabase.DisplayMember = "Text";
     this.cbxDatabase.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cbxDatabase.FormattingEnabled = true;
     this.cbxDatabase.ItemHeight = 14;
     this.cbxDatabase.Location = new System.Drawing.Point(94, 159);
     this.cbxDatabase.Name = "cbxDatabase";
     this.cbxDatabase.Size = new System.Drawing.Size(156, 20);
     this.cbxDatabase.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cbxDatabase.TabIndex = 5;
     //
     // btnSaveSystemConfig
     //
     this.btnSaveSystemConfig.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnSaveSystemConfig.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnSaveSystemConfig.Location = new System.Drawing.Point(13, 199);
     this.btnSaveSystemConfig.Name = "btnSaveSystemConfig";
     this.btnSaveSystemConfig.Size = new System.Drawing.Size(130, 23);
     this.btnSaveSystemConfig.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnSaveSystemConfig.TabIndex = 6;
     this.btnSaveSystemConfig.Text = "Save System Config";
     this.btnSaveSystemConfig.Click += new System.EventHandler(this.btnSaveSystemConfig_Click);
     //
     // tbxServername
     //
     //
     //
     //
     this.tbxServername.Border.Class = "TextBoxBorder";
     this.tbxServername.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.tbxServername.Location = new System.Drawing.Point(94, 16);
     this.tbxServername.Name = "tbxServername";
     this.tbxServername.Size = new System.Drawing.Size(156, 20);
     this.tbxServername.TabIndex = 1;
     this.tbxServername.TextChanged += new System.EventHandler(this.tbxServername_TextChanged);
     //
     // btnConnect
     //
     this.btnConnect.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnConnect.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnConnect.Location = new System.Drawing.Point(13, 109);
     this.btnConnect.Name = "btnConnect";
     this.btnConnect.Size = new System.Drawing.Size(100, 23);
     this.btnConnect.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnConnect.TabIndex = 4;
     this.btnConnect.Text = "Connect";
     this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
     //
     // Config
     //
     this.ClientSize = new System.Drawing.Size(269, 242);
     this.Controls.Add(this.btnConnect);
     this.Controls.Add(this.tbxServername);
     this.Controls.Add(this.btnSaveSystemConfig);
     this.Controls.Add(this.cbxDatabase);
     this.Controls.Add(this.tbxPassword);
     this.Controls.Add(this.tbxUsername);
     this.Controls.Add(this.labelX4);
     this.Controls.Add(this.lblPassword);
     this.Controls.Add(this.lblUsername);
     this.Controls.Add(this.labelX1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "Config";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Cấu hình hệ thống";
     this.Load += new System.EventHandler(this.PTConfig_Load);
     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.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.cbxQuizName = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.btnRun = new DevComponents.DotNetBar.ButtonX();
     this.btnExit = new DevComponents.DotNetBar.ButtonX();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.rbClassSeatNo = new System.Windows.Forms.RadioButton();
     this.rbStudentNumber = new System.Windows.Forms.RadioButton();
     this.groupPanel1.SuspendLayout();
     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(14, 14);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(63, 30);
     this.labelX1.TabIndex = 0;
     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(81, 17);
     this.cbxQuizName.Name = "cbxQuizName";
     this.cbxQuizName.Size = new System.Drawing.Size(327, 25);
     this.cbxQuizName.TabIndex = 1;
     //
     // btnRun
     //
     this.btnRun.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnRun.BackColor = System.Drawing.Color.Transparent;
     this.btnRun.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnRun.Location = new System.Drawing.Point(261, 88);
     this.btnRun.Name = "btnRun";
     this.btnRun.Size = new System.Drawing.Size(67, 23);
     this.btnRun.TabIndex = 2;
     this.btnRun.Text = "確定";
     this.btnRun.Click += new System.EventHandler(this.btnRun_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(340, 88);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(67, 23);
     this.btnExit.TabIndex = 3;
     this.btnExit.Text = "離開";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // groupPanel1
     //
     this.groupPanel1.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.rbClassSeatNo);
     this.groupPanel1.Controls.Add(this.rbStudentNumber);
     this.groupPanel1.Location = new System.Drawing.Point(10, 52);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(200, 59);
     //
     //
     //
     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.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 = 4;
     this.groupPanel1.Text = "匯入資料依照方式";
     //
     // rbClassSeatNo
     //
     this.rbClassSeatNo.AutoSize = true;
     this.rbClassSeatNo.Location = new System.Drawing.Point(95, 7);
     this.rbClassSeatNo.Name = "rbClassSeatNo";
     this.rbClassSeatNo.Size = new System.Drawing.Size(78, 21);
     this.rbClassSeatNo.TabIndex = 1;
     this.rbClassSeatNo.TabStop = true;
     this.rbClassSeatNo.Text = "班級座號";
     this.rbClassSeatNo.UseVisualStyleBackColor = true;
     //
     // rbStudentNumber
     //
     this.rbStudentNumber.AutoSize = true;
     this.rbStudentNumber.Location = new System.Drawing.Point(13, 7);
     this.rbStudentNumber.Name = "rbStudentNumber";
     this.rbStudentNumber.Size = new System.Drawing.Size(52, 21);
     this.rbStudentNumber.TabIndex = 0;
     this.rbStudentNumber.TabStop = true;
     this.rbStudentNumber.Text = "學號";
     this.rbStudentNumber.UseVisualStyleBackColor = true;
     //
     // ImportStudQuizDataSelectQuizNameForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(421, 117);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.btnRun);
     this.Controls.Add(this.cbxQuizName);
     this.Controls.Add(this.labelX1);
     this.DoubleBuffered = true;
     this.Name = "ImportStudQuizDataSelectQuizNameForm";
     this.Text = "請選擇匯入測驗";
     this.Load += new System.EventHandler(this.ImportStudQuizDataSelectQuizNameForm_Load);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
示例#45
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Actividades));
     this.labelX27 = new DevComponents.DotNetBar.LabelX();
     this.cbTipSolic = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.ipFechCierre = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.chkbActCerrada = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chkbRealizado = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.txObservacionesA = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.ipFechProg = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.txRef = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX26 = new DevComponents.DotNetBar.LabelX();
     this.labelX25 = new DevComponents.DotNetBar.LabelX();
     this.labelX24 = new DevComponents.DotNetBar.LabelX();
     this.labelX23 = new DevComponents.DotNetBar.LabelX();
     this.labelX22 = new DevComponents.DotNetBar.LabelX();
     this.labelX21 = new DevComponents.DotNetBar.LabelX();
     this.labelX20 = new DevComponents.DotNetBar.LabelX();
     this.cbTipoAct = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.btnAgregarAct = new DevComponents.DotNetBar.ButtonX();
     this.btnCambiosAct = new DevComponents.DotNetBar.ButtonX();
     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();
     ((System.ComponentModel.ISupportInitialize)(this.ipFechCierre)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ipFechProg)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // labelX27
     //
     //
     //
     //
     this.labelX27.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX27.Location = new System.Drawing.Point(6, 14);
     this.labelX27.Name = "labelX27";
     this.labelX27.Size = new System.Drawing.Size(95, 23);
     this.labelX27.TabIndex = 62;
     this.labelX27.Text = "Tipo de Solicitud :";
     //
     // cbTipSolic
     //
     this.cbTipSolic.DisplayMember = "Text";
     this.cbTipSolic.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cbTipSolic.FormattingEnabled = true;
     this.cbTipSolic.ItemHeight = 14;
     this.cbTipSolic.Location = new System.Drawing.Point(116, 12);
     this.cbTipSolic.Name = "cbTipSolic";
     this.cbTipSolic.Size = new System.Drawing.Size(173, 20);
     this.cbTipSolic.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cbTipSolic.TabIndex = 61;
     //
     // ipFechCierre
     //
     //
     //
     //
     this.ipFechCierre.BackgroundStyle.Class = "DateTimeInputBackground";
     this.ipFechCierre.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFechCierre.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.ipFechCierre.ButtonDropDown.Visible = true;
     this.ipFechCierre.IsPopupCalendarOpen = false;
     this.ipFechCierre.Location = new System.Drawing.Point(116, 139);
     //
     //
     //
     this.ipFechCierre.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ipFechCierre.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFechCierre.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.ipFechCierre.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.ipFechCierre.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.ipFechCierre.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.ipFechCierre.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.ipFechCierre.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ipFechCierre.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.ipFechCierre.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.ipFechCierre.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFechCierre.MonthCalendar.DisplayMonth = new System.DateTime(2012, 6, 1, 0, 0, 0, 0);
     this.ipFechCierre.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.ipFechCierre.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ipFechCierre.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.ipFechCierre.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.ipFechCierre.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.ipFechCierre.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFechCierre.MonthCalendar.TodayButtonVisible = true;
     this.ipFechCierre.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.ipFechCierre.Name = "ipFechCierre";
     this.ipFechCierre.Size = new System.Drawing.Size(173, 20);
     this.ipFechCierre.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ipFechCierre.TabIndex = 60;
     //
     // chkbActCerrada
     //
     //
     //
     //
     this.chkbActCerrada.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkbActCerrada.Location = new System.Drawing.Point(245, 107);
     this.chkbActCerrada.Name = "chkbActCerrada";
     this.chkbActCerrada.Size = new System.Drawing.Size(32, 23);
     this.chkbActCerrada.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkbActCerrada.TabIndex = 59;
     //
     // chkbRealizado
     //
     //
     //
     //
     this.chkbRealizado.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkbRealizado.Location = new System.Drawing.Point(74, 107);
     this.chkbRealizado.Name = "chkbRealizado";
     this.chkbRealizado.Size = new System.Drawing.Size(18, 23);
     this.chkbRealizado.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkbRealizado.TabIndex = 58;
     //
     // txObservacionesA
     //
     this.txObservacionesA.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.txObservacionesA.Border.Class = "TextBoxBorder";
     this.txObservacionesA.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txObservacionesA.ForeColor = System.Drawing.Color.Black;
     this.txObservacionesA.Location = new System.Drawing.Point(318, 99);
     this.txObservacionesA.Multiline = true;
     this.txObservacionesA.Name = "txObservacionesA";
     this.txObservacionesA.Size = new System.Drawing.Size(354, 52);
     this.txObservacionesA.TabIndex = 57;
     //
     // ipFechProg
     //
     //
     //
     //
     this.ipFechProg.BackgroundStyle.Class = "DateTimeInputBackground";
     this.ipFechProg.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFechProg.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.ipFechProg.ButtonDropDown.Visible = true;
     this.ipFechProg.IsPopupCalendarOpen = false;
     this.ipFechProg.Location = new System.Drawing.Point(116, 64);
     //
     //
     //
     this.ipFechProg.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ipFechProg.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFechProg.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.ipFechProg.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.ipFechProg.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.ipFechProg.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.ipFechProg.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.ipFechProg.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ipFechProg.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.ipFechProg.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.ipFechProg.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFechProg.MonthCalendar.DisplayMonth = new System.DateTime(2012, 6, 1, 0, 0, 0, 0);
     this.ipFechProg.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.ipFechProg.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ipFechProg.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.ipFechProg.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.ipFechProg.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.ipFechProg.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFechProg.MonthCalendar.TodayButtonVisible = true;
     this.ipFechProg.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.ipFechProg.Name = "ipFechProg";
     this.ipFechProg.Size = new System.Drawing.Size(173, 20);
     this.ipFechProg.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ipFechProg.TabIndex = 51;
     this.superValidator1.SetValidator1(this.ipFechProg, this.requiredFieldValidator1);
     //
     // txRef
     //
     this.txRef.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.txRef.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txRef.ForeColor = System.Drawing.Color.Black;
     this.txRef.Location = new System.Drawing.Point(318, 30);
     this.txRef.Multiline = true;
     this.txRef.Name = "txRef";
     this.txRef.Size = new System.Drawing.Size(354, 45);
     this.txRef.TabIndex = 56;
     //
     // labelX26
     //
     //
     //
     //
     this.labelX26.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX26.Location = new System.Drawing.Point(318, 81);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(93, 23);
     this.labelX26.TabIndex = 55;
     this.labelX26.Text = "Observaciones :";
     //
     // labelX25
     //
     //
     //
     //
     this.labelX25.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX25.Location = new System.Drawing.Point(6, 136);
     this.labelX25.Name = "labelX25";
     this.labelX25.Size = new System.Drawing.Size(93, 23);
     this.labelX25.TabIndex = 54;
     this.labelX25.Text = "Fecha de Cierre :";
     //
     // labelX24
     //
     //
     //
     //
     this.labelX24.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX24.Location = new System.Drawing.Point(144, 107);
     this.labelX24.Name = "labelX24";
     this.labelX24.Size = new System.Drawing.Size(95, 23);
     this.labelX24.TabIndex = 53;
     this.labelX24.Text = "Actividad Cerrada :";
     //
     // labelX23
     //
     //
     //
     //
     this.labelX23.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX23.Location = new System.Drawing.Point(6, 107);
     this.labelX23.Name = "labelX23";
     this.labelX23.Size = new System.Drawing.Size(75, 23);
     this.labelX23.TabIndex = 52;
     this.labelX23.Text = "Realizado :";
     //
     // labelX22
     //
     //
     //
     //
     this.labelX22.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX22.Location = new System.Drawing.Point(6, 64);
     this.labelX22.Name = "labelX22";
     this.labelX22.Size = new System.Drawing.Size(111, 23);
     this.labelX22.TabIndex = 50;
     this.labelX22.Text = "Fecha Programada :";
     //
     // labelX21
     //
     //
     //
     //
     this.labelX21.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX21.Location = new System.Drawing.Point(318, 9);
     this.labelX21.Name = "labelX21";
     this.labelX21.Size = new System.Drawing.Size(75, 23);
     this.labelX21.TabIndex = 49;
     this.labelX21.Text = "Referencia :";
     //
     // labelX20
     //
     //
     //
     //
     this.labelX20.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX20.Location = new System.Drawing.Point(6, 35);
     this.labelX20.Name = "labelX20";
     this.labelX20.Size = new System.Drawing.Size(95, 23);
     this.labelX20.TabIndex = 48;
     this.labelX20.Text = "Tipo de Actividad :";
     //
     // cbTipoAct
     //
     this.cbTipoAct.DisplayMember = "Text";
     this.cbTipoAct.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cbTipoAct.FormattingEnabled = true;
     this.cbTipoAct.ItemHeight = 14;
     this.cbTipoAct.Location = new System.Drawing.Point(116, 38);
     this.cbTipoAct.Name = "cbTipoAct";
     this.cbTipoAct.Size = new System.Drawing.Size(173, 20);
     this.cbTipoAct.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cbTipoAct.TabIndex = 47;
     //
     // btnAgregarAct
     //
     this.btnAgregarAct.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnAgregarAct.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnAgregarAct.Location = new System.Drawing.Point(588, 176);
     this.btnAgregarAct.Name = "btnAgregarAct";
     this.btnAgregarAct.Size = new System.Drawing.Size(107, 23);
     this.btnAgregarAct.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnAgregarAct.TabIndex = 63;
     this.btnAgregarAct.Text = "Agregar Actividad";
     this.btnAgregarAct.Click += new System.EventHandler(this.btnAgregarAct_Click);
     //
     // btnCambiosAct
     //
     this.btnCambiosAct.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnCambiosAct.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnCambiosAct.Location = new System.Drawing.Point(481, 176);
     this.btnCambiosAct.Name = "btnCambiosAct";
     this.btnCambiosAct.Size = new System.Drawing.Size(101, 23);
     this.btnCambiosAct.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnCambiosAct.TabIndex = 64;
     this.btnCambiosAct.Text = "Guardar Cambios";
     this.btnCambiosAct.Visible = false;
     this.btnCambiosAct.Click += new System.EventHandler(this.btnCambiosAct_Click);
     //
     // 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;
     //
     // Actividades
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(707, 214);
     this.Controls.Add(this.btnCambiosAct);
     this.Controls.Add(this.btnAgregarAct);
     this.Controls.Add(this.labelX27);
     this.Controls.Add(this.cbTipSolic);
     this.Controls.Add(this.ipFechCierre);
     this.Controls.Add(this.chkbActCerrada);
     this.Controls.Add(this.chkbRealizado);
     this.Controls.Add(this.txObservacionesA);
     this.Controls.Add(this.ipFechProg);
     this.Controls.Add(this.txRef);
     this.Controls.Add(this.labelX26);
     this.Controls.Add(this.labelX25);
     this.Controls.Add(this.labelX24);
     this.Controls.Add(this.labelX23);
     this.Controls.Add(this.labelX22);
     this.Controls.Add(this.labelX21);
     this.Controls.Add(this.labelX20);
     this.Controls.Add(this.cbTipoAct);
     this.Name = "Actividades";
     this.Text = "Actividades";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Actividades_FormClosed);
     this.Load += new System.EventHandler(this.Actividades_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ipFechCierre)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ipFechProg)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.comboBox1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBox2 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.button1 = new DevComponents.DotNetBar.ButtonX();
     this.button2 = new DevComponents.DotNetBar.ButtonX();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Location = new System.Drawing.Point(28, 40);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(53, 12);
     this.label1.TabIndex = 0;
     this.label1.Text = "项目名称";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Location = new System.Drawing.Point(52, 72);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(29, 12);
     this.label2.TabIndex = 1;
     this.label2.Text = "条件";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(84, 100);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(212, 21);
     this.textBox1.TabIndex = 2;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Location = new System.Drawing.Point(40, 104);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(41, 12);
     this.label3.TabIndex = 3;
     this.label3.Text = "关键字";
     //
     // comboBox1
     //
     this.comboBox1.DisplayMember = "Text";
     this.comboBox1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
     "车牌",
     "Sim卡号",
     "终端序列号",
     "反控密码",
     "终端型号",
     "车辆品牌",
     "车辆类型",
     "车身颜色",
     "安装地点",
     "安装人员",
     "业务人员",
     "入网日期",
     "服务日期",
     "车辆信息备注",
     "车主1",
     "车主1电话",
     "车主1手机",
     "车主2",
     "车主2电话",
     "车主2手机",
     "登陆密码",
     "家庭地址",
     "办公室电话",
     "车主公司",
     "购车日期",
     "特殊要求",
     "用户信息备注"});
     this.comboBox1.Location = new System.Drawing.Point(84, 36);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(212, 22);
     this.comboBox1.TabIndex = 4;
     //
     // comboBox2
     //
     this.comboBox2.DisplayMember = "Text";
     this.comboBox2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox2.FormattingEnabled = true;
     this.comboBox2.Items.AddRange(new object[] {
     "包含关键字",
     "等于关键字",
     "不包含关键字"});
     this.comboBox2.Location = new System.Drawing.Point(84, 68);
     this.comboBox2.Name = "comboBox2";
     this.comboBox2.Size = new System.Drawing.Size(212, 22);
     this.comboBox2.TabIndex = 5;
     //
     // button1
     //
     this.button1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.button1.Location = new System.Drawing.Point(152, 132);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.button1.TabIndex = 6;
     this.button1.Text = "确定";
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // button2
     //
     this.button2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.button2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.button2.Location = new System.Drawing.Point(240, 132);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(75, 23);
     this.button2.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.button2.TabIndex = 7;
     this.button2.Text = "取消";
     //
     // FormQueryCondition
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImage = global::YTGPS_Client.Properties.Resources.fbk1;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(334, 175);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.comboBox2);
     this.Controls.Add(this.comboBox1);
     this.Controls.Add(this.button2);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormQueryCondition";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "查询条件";
     this.Controls.SetChildIndex(this.button2, 0);
     this.Controls.SetChildIndex(this.comboBox1, 0);
     this.Controls.SetChildIndex(this.comboBox2, 0);
     this.Controls.SetChildIndex(this.label3, 0);
     this.Controls.SetChildIndex(this.button1, 0);
     this.Controls.SetChildIndex(this.textBox1, 0);
     this.Controls.SetChildIndex(this.label2, 0);
     this.Controls.SetChildIndex(this.label1, 0);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#47
0
		/// <summary>
		///		Required method for Designer support - do not modify
		///		the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.chkShowScreenTips = new System.Windows.Forms.CheckBox();
			this.tabCtrl = new System.Windows.Forms.TabControl();
			this.tabPage1 = new System.Windows.Forms.TabPage();
			this.cmdReset = new System.Windows.Forms.Button();
			this.cmdRename = new System.Windows.Forms.Button();
			this.cmdDelete = new System.Windows.Forms.Button();
			this.cmdNew = new System.Windows.Forms.Button();
			this.label1 = new System.Windows.Forms.Label();
			this.lstBars = new System.Windows.Forms.CheckedListBox();
			this.tabPage2 = new System.Windows.Forms.TabPage();
			this.lstCommands = new DevComponents.DotNetBar.ItemsListBox();
			this.lstCategories = new System.Windows.Forms.ListBox();
			this.label4 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.tabPage3 = new System.Windows.Forms.TabPage();
            this.cboAnimations = new Controls.ComboBoxEx();
			this.comboItem1 = new DevComponents.Editors.ComboItem();
			this.comboItem6 = new DevComponents.Editors.ComboItem();
			this.comboItem2 = new DevComponents.Editors.ComboItem();
			this.comboItem3 = new DevComponents.Editors.ComboItem();
			this.comboItem4 = new DevComponents.Editors.ComboItem();
			this.comboItem5 = new DevComponents.Editors.ComboItem();
			this.label7 = new System.Windows.Forms.Label();
			this.chkTipsShowShortcuts = new System.Windows.Forms.CheckBox();
			this.button1 = new System.Windows.Forms.Button();
			this.label6 = new System.Windows.Forms.Label();
			this.chkFullAfterDelay = new System.Windows.Forms.CheckBox();
			this.chkShowFullMenus = new System.Windows.Forms.CheckBox();
			this.label5 = new System.Windows.Forms.Label();
			this.cmdKeyboard = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this.tabCtrl.SuspendLayout();
			this.tabPage1.SuspendLayout();
			this.tabPage2.SuspendLayout();
			this.tabPage3.SuspendLayout();
			this.SuspendLayout();
			// 
			// chkShowScreenTips
			// 
			this.chkShowScreenTips.Location = new System.Drawing.Point(24, 152);
			this.chkShowScreenTips.Name = "chkShowScreenTips";
			this.chkShowScreenTips.Size = new System.Drawing.Size(320, 16);
			this.chkShowScreenTips.TabIndex = 3;
			this.chkShowScreenTips.Text = "cust_chk_showst";
			// 
			// tabCtrl
			// 
			this.tabCtrl.Controls.AddRange(new System.Windows.Forms.Control[] {
																				  this.tabPage1,
																				  this.tabPage2,
																				  this.tabPage3});
			this.tabCtrl.Location = new System.Drawing.Point(6, 6);
			this.tabCtrl.Name = "tabCtrl";
			this.tabCtrl.SelectedIndex = 0;
			this.tabCtrl.Size = new System.Drawing.Size(354, 303);
			this.tabCtrl.TabIndex = 0;
			// 
			// tabPage1
			// 
			this.tabPage1.Controls.AddRange(new System.Windows.Forms.Control[] {
																				   this.cmdReset,
																				   this.cmdRename,
																				   this.cmdDelete,
																				   this.cmdNew,
																				   this.label1,
																				   this.lstBars});
			this.tabPage1.Location = new System.Drawing.Point(4, 22);
			this.tabPage1.Name = "tabPage1";
			this.tabPage1.Size = new System.Drawing.Size(346, 277);
			this.tabPage1.TabIndex = 0;
			this.tabPage1.Text = "cust_tab_toolbars";
			this.tabPage1.Visible = false;
			// 
			// cmdReset
			// 
			//this.cmdReset.Anchor = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
			this.cmdReset.Enabled = true;
			this.cmdReset.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.cmdReset.Location = new System.Drawing.Point(250, 118);
			this.cmdReset.Name = "cmdReset";
			this.cmdReset.Size = new System.Drawing.Size(90, 24);
			this.cmdReset.TabIndex = 4;
			this.cmdReset.Text = "cust_btn_reset";
			this.cmdReset.Visible = false;
			this.cmdReset.Click += new System.EventHandler(this.ResetBar);
			// 
			// cmdRename
			// 
			//this.cmdRename.Anchor = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
			this.cmdRename.Enabled = false;
			this.cmdRename.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.cmdRename.Location = new System.Drawing.Point(250, 52);
			this.cmdRename.Name = "cmdRename";
			this.cmdRename.Size = new System.Drawing.Size(90, 24);
			this.cmdRename.TabIndex = 2;
			this.cmdRename.Text = "cust_btn_rename";
			this.cmdRename.Click += new System.EventHandler(this.RenameBar);
			// 
			// cmdDelete
			// 
			//this.cmdDelete.Anchor = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
			this.cmdDelete.Enabled = false;
			this.cmdDelete.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.cmdDelete.Location = new System.Drawing.Point(250, 85);
			this.cmdDelete.Name = "cmdDelete";
			this.cmdDelete.Size = new System.Drawing.Size(90, 24);
			this.cmdDelete.TabIndex = 3;
			this.cmdDelete.Text = "cust_btn_delete";
			this.cmdDelete.Click += new System.EventHandler(this.DeleteBar);
			// 
			// cmdNew
			// 
			//this.cmdNew.Anchor = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
			this.cmdNew.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.cmdNew.Location = new System.Drawing.Point(250, 19);
			this.cmdNew.Name = "cmdNew";
			this.cmdNew.Size = new System.Drawing.Size(90, 24);
			this.cmdNew.TabIndex = 1;
			this.cmdNew.Text = "cust_btn_new";
			this.cmdNew.Click += new System.EventHandler(this.NewBar);
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(5, 5);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(259, 12);
			this.label1.TabIndex = 0;
			this.label1.Text = "cust_lbl_tlbs";
			// 
			// lstBars
			// 
			//this.lstBars.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
			//	| System.Windows.Forms.AnchorStyles.Left) 
			//	| System.Windows.Forms.AnchorStyles.Right);
			this.lstBars.Location = new System.Drawing.Point(5, 19);
			this.lstBars.Name = "lstBars";
			this.lstBars.IntegralHeight=false;
			this.lstBars.Size = new System.Drawing.Size(239, 249);
			this.lstBars.TabIndex = 0;
			this.lstBars.SelectedIndexChanged += new System.EventHandler(this.BarSelectionChanged);
			this.lstBars.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.BarsCheck);
			// 
			// tabPage2
			// 
			this.tabPage2.Controls.AddRange(new System.Windows.Forms.Control[] {
																				   this.lstCategories,
																				   this.lstCommands,
																				   this.label4,
																				   this.label3,
																				   this.label2});
			this.tabPage2.Location = new System.Drawing.Point(4, 22);
			this.tabPage2.Name = "tabPage2";
			this.tabPage2.Size = new System.Drawing.Size(346, 277);
			this.tabPage2.TabIndex = 1;
			this.tabPage2.Text = "cust_tab_commands";
			this.tabPage2.Visible = false;
			// 
			// lstCommands
			// 
			this.lstCommands.BackColor = System.Drawing.SystemColors.Control;
			this.lstCommands.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
			this.lstCommands.IntegralHeight = false;
			this.lstCommands.Location = new System.Drawing.Point(136, 71);
			this.lstCommands.Name = "lstCommands";
			this.lstCommands.Size = new System.Drawing.Size(200, 197);
			this.lstCommands.TabIndex = 2;
			this.lstCommands.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Commands_OnMouseDown);
			this.lstCommands.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Commands_OnMouseMove);
			// 
			// lstCategories
			// 
			this.lstCategories.Location = new System.Drawing.Point(5, 71);
			this.lstCategories.Name = "lstCategories";
			this.lstCategories.IntegralHeight=false;
			this.lstCategories.Size = new System.Drawing.Size(121, 197);
			this.lstCategories.TabIndex = 2;
			this.lstCategories.SelectedIndexChanged += new System.EventHandler(this.CatSelectedIndexChanged);
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(136, 56);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(197, 13);
			this.label4.TabIndex = 1;
			this.label4.Text = "cust_lbl_cmds";
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(5, 56);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(123, 13);
			this.label3.TabIndex = 1;
			this.label3.Text = "cust_lbl_cats";
			// 
			// label2
			// 
			//this.label2.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
			//	| System.Windows.Forms.AnchorStyles.Right);
			this.label2.Location = new System.Drawing.Point(4, 4);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(336, 46);
			this.label2.TabIndex = 0;
			this.label2.Text = "cust_lbl_cmdsins";
			// 
			// tabPage3
			// 
			this.tabPage3.Controls.AddRange(new System.Windows.Forms.Control[] {
																				   this.chkShowFullMenus,
																				   this.chkFullAfterDelay,
																				   this.button1,
																				   this.chkShowScreenTips,
																				   this.chkTipsShowShortcuts,
																				   this.cboAnimations,
																				   this.label7,
																				   this.label6,
																				   this.label5});
			this.tabPage3.Location = new System.Drawing.Point(4, 22);
			this.tabPage3.Name = "tabPage3";
			this.tabPage3.Size = new System.Drawing.Size(346, 277);
			this.tabPage3.TabIndex = 2;
			this.tabPage3.Text = "cust_tab_options";
			this.tabPage3.Visible = false;
			// 
			// cboAnimations
			// 
			this.cboAnimations.DefaultStyle = false;
			this.cboAnimations.DisableInternalDrawing = false;
			this.cboAnimations.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cboAnimations.DropDownWidth = 120;
			this.cboAnimations.Images = null;
			this.cboAnimations.Items.AddRange(new object[] {
															   this.comboItem1,
															   this.comboItem6,
															   this.comboItem2,
															   this.comboItem3,
															   this.comboItem4,
															   this.comboItem5});
			this.cboAnimations.Location = new System.Drawing.Point(24, 224);
			this.cboAnimations.Name = "cboAnimations";
			this.cboAnimations.Size = new System.Drawing.Size(120, 21);
			this.cboAnimations.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
			this.cboAnimations.TabIndex = 5;
			// 
			// comboItem1
			// 
			this.comboItem1.BackColor = System.Drawing.Color.Empty;
			this.comboItem1.FontName = "";
			this.comboItem1.FontSize = 8F;
			this.comboItem1.FontStyle = System.Drawing.FontStyle.Regular;
			this.comboItem1.ForeColor = System.Drawing.Color.Empty;
			this.comboItem1.Image = null;
			this.comboItem1.ImageIndex = -1;
			this.comboItem1.ImagePosition = System.Windows.Forms.HorizontalAlignment.Left;
			this.comboItem1.Tag = null;
			this.comboItem1.Text = "cust_cbo_none";
			this.comboItem1.TextAlignment = System.Drawing.StringAlignment.Near;
			this.comboItem1.TextLineAlignment = System.Drawing.StringAlignment.Near;
			// 
			// comboItem6
			// 
			this.comboItem6.BackColor = System.Drawing.Color.Empty;
			this.comboItem6.FontName = "";
			this.comboItem6.FontSize = 8F;
			this.comboItem6.FontStyle = System.Drawing.FontStyle.Regular;
			this.comboItem6.ForeColor = System.Drawing.Color.Empty;
			this.comboItem6.Image = null;
			this.comboItem6.ImageIndex = -1;
			this.comboItem6.ImagePosition = System.Windows.Forms.HorizontalAlignment.Left;
			this.comboItem6.Tag = null;
			this.comboItem6.Text = "cust_cbo_system";
			this.comboItem6.TextAlignment = System.Drawing.StringAlignment.Near;
			this.comboItem6.TextLineAlignment = System.Drawing.StringAlignment.Near;
			// 
			// comboItem2
			// 
			this.comboItem2.BackColor = System.Drawing.Color.Empty;
			this.comboItem2.FontName = "";
			this.comboItem2.FontSize = 8F;
			this.comboItem2.FontStyle = System.Drawing.FontStyle.Regular;
			this.comboItem2.ForeColor = System.Drawing.Color.Empty;
			this.comboItem2.Image = null;
			this.comboItem2.ImageIndex = -1;
			this.comboItem2.ImagePosition = System.Windows.Forms.HorizontalAlignment.Left;
			this.comboItem2.Tag = null;
			this.comboItem2.Text = "cust_cbo_random";
			this.comboItem2.TextAlignment = System.Drawing.StringAlignment.Near;
			this.comboItem2.TextLineAlignment = System.Drawing.StringAlignment.Near;
			// 
			// comboItem3
			// 
			this.comboItem3.BackColor = System.Drawing.Color.Empty;
			this.comboItem3.FontName = "";
			this.comboItem3.FontSize = 8F;
			this.comboItem3.FontStyle = System.Drawing.FontStyle.Regular;
			this.comboItem3.ForeColor = System.Drawing.Color.Empty;
			this.comboItem3.Image = null;
			this.comboItem3.ImageIndex = -1;
			this.comboItem3.ImagePosition = System.Windows.Forms.HorizontalAlignment.Left;
			this.comboItem3.Tag = null;
			this.comboItem3.Text = "cust_cbo_unfold";
			this.comboItem3.TextAlignment = System.Drawing.StringAlignment.Near;
			this.comboItem3.TextLineAlignment = System.Drawing.StringAlignment.Near;
			// 
			// comboItem4
			// 
			this.comboItem4.BackColor = System.Drawing.Color.Empty;
			this.comboItem4.FontName = "";
			this.comboItem4.FontSize = 8F;
			this.comboItem4.FontStyle = System.Drawing.FontStyle.Regular;
			this.comboItem4.ForeColor = System.Drawing.Color.Empty;
			this.comboItem4.Image = null;
			this.comboItem4.ImageIndex = -1;
			this.comboItem4.ImagePosition = System.Windows.Forms.HorizontalAlignment.Left;
			this.comboItem4.Tag = null;
			this.comboItem4.Text = "cust_cbo_slide";
			this.comboItem4.TextAlignment = System.Drawing.StringAlignment.Near;
			this.comboItem4.TextLineAlignment = System.Drawing.StringAlignment.Near;
			// 
			// comboItem5
			// 
			this.comboItem5.BackColor = System.Drawing.Color.Empty;
			this.comboItem5.FontName = "";
			this.comboItem5.FontSize = 8F;
			this.comboItem5.FontStyle = System.Drawing.FontStyle.Regular;
			this.comboItem5.ForeColor = System.Drawing.Color.Empty;
			this.comboItem5.Image = null;
			this.comboItem5.ImageIndex = -1;
			this.comboItem5.ImagePosition = System.Windows.Forms.HorizontalAlignment.Left;
			this.comboItem5.Tag = null;
			this.comboItem5.Text = "cust_cbo_fade";
			this.comboItem5.TextAlignment = System.Drawing.StringAlignment.Near;
			this.comboItem5.TextLineAlignment = System.Drawing.StringAlignment.Near;
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(24, 208);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(320, 16);
			this.label7.TabIndex = 6;
			this.label7.Text = "cust_lbl_menuan";
			// 
			// chkTipsShowShortcuts
			// 
			this.chkTipsShowShortcuts.Location = new System.Drawing.Point(40, 176);
			this.chkTipsShowShortcuts.Name = "chkTipsShowShortcuts";
			this.chkTipsShowShortcuts.Size = new System.Drawing.Size(304, 16);
			this.chkTipsShowShortcuts.TabIndex = 4;
			this.chkTipsShowShortcuts.Text = "cust_chk_showsk";
			// 
			// button1
			// 
			this.button1.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.button1.Location = new System.Drawing.Point(24, 80);
			this.button1.Name = "button1";
			this.button1.Size = new System.Drawing.Size(180, 24);
			this.button1.TabIndex = 2;
			this.button1.Text = "cust_btn_resetusage";
			this.button1.Click += new System.EventHandler(this.ResetUsageData);
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(8, 128);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(336, 16);
			this.label6.TabIndex = 7;
			this.label6.Text = "cust_lbl_other";
			// 
			// chkFullAfterDelay
			// 
			this.chkFullAfterDelay.Location = new System.Drawing.Point(40, 56);
			this.chkFullAfterDelay.Name = "chkFullAfterDelay";
			this.chkFullAfterDelay.Size = new System.Drawing.Size(304, 16);
			this.chkFullAfterDelay.TabIndex = 1;
			this.chkFullAfterDelay.Text = "cust_chk_delay";
			// 
			// chkShowFullMenus
			// 
			this.chkShowFullMenus.Location = new System.Drawing.Point(24, 32);
			this.chkShowFullMenus.Name = "chkShowFullMenus";
			this.chkShowFullMenus.Size = new System.Drawing.Size(320, 16);
			this.chkShowFullMenus.TabIndex = 0;
			this.chkShowFullMenus.Text = "cust_chk_fullmenus";
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(8, 8);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(336, 16);
			this.label5.TabIndex = 8;
			this.label5.Text = "cust_lbl_pmt";
			// 
			// cmdKeyboard
			// 
			//this.cmdKeyboard.Anchor = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
			this.cmdKeyboard.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.cmdKeyboard.Location = new System.Drawing.Point(160, 317);
			this.cmdKeyboard.Name = "cmdKeyboard";
			this.cmdKeyboard.Size = new System.Drawing.Size(96, 24);
			this.cmdKeyboard.TabIndex = 1;
			this.cmdKeyboard.Text = "cust_btn_keyboard";
			// 
			// cmdClose
			// 
			//this.cmdClose.Anchor = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
			this.cmdClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.cmdClose.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.cmdClose.Location = new System.Drawing.Point(264, 317);
			this.cmdClose.Name = "cmdClose";
			this.cmdClose.Size = new System.Drawing.Size(96, 24);
			this.cmdClose.TabIndex = 2;
			this.cmdClose.Text = "cust_btn_close";
			this.cmdClose.Click += new System.EventHandler(this.Close_Click);
			// 
			// frmCustomize
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(368, 347);
			this.Controls.AddRange(new System.Windows.Forms.Control[] {
																		  this.cmdClose,
																		  this.cmdKeyboard,
																		  this.tabCtrl});
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "frmCustomize";
			this.ShowInTaskbar = false;
			this.Text = "cust_caption";
			this.tabCtrl.ResumeLayout(false);
			this.tabPage1.ResumeLayout(false);
			this.tabPage2.ResumeLayout(false);
			this.tabPage3.ResumeLayout(false);
			this.AcceptButton=cmdClose;
			this.CancelButton=cmdClose;
			this.ResumeLayout(false);

		}
示例#48
0
 private void InitializeComponent()
 {
     this.panelEx1       = new DevComponents.DotNetBar.PanelEx();
     this.labelX1        = new DevComponents.DotNetBar.LabelX();
     this.labelX2        = new DevComponents.DotNetBar.LabelX();
     this.labelX3        = new DevComponents.DotNetBar.LabelX();
     this.labelX4        = new DevComponents.DotNetBar.LabelX();
     this.labelX5        = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx1    = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboTree1     = new DevComponents.DotNetBar.Controls.ComboTree();
     this.doubleInput1   = new DevComponents.Editors.DoubleInput();
     this.doubleInput2   = new DevComponents.Editors.DoubleInput();
     this.integerInput1  = new DevComponents.Editors.IntegerInput();
     this.advTree1       = new DevComponents.AdvTree.AdvTree();
     this.nodeConnector1 = new DevComponents.AdvTree.NodeConnector();
     this.elementStyle1  = new DevComponents.DotNetBar.ElementStyle();
     this.labelX6        = new DevComponents.DotNetBar.LabelX();
     this.labelX7        = new DevComponents.DotNetBar.LabelX();
     this.panelEx1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.doubleInput1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.doubleInput2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.integerInput1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.advTree1)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor      = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.labelX7);
     this.panelEx1.Controls.Add(this.labelX6);
     this.panelEx1.Controls.Add(this.advTree1);
     this.panelEx1.Controls.Add(this.integerInput1);
     this.panelEx1.Controls.Add(this.doubleInput2);
     this.panelEx1.Controls.Add(this.doubleInput1);
     this.panelEx1.Controls.Add(this.comboTree1);
     this.panelEx1.Controls.Add(this.comboBoxEx1);
     this.panelEx1.Controls.Add(this.labelX5);
     this.panelEx1.Controls.Add(this.labelX4);
     this.panelEx1.Controls.Add(this.labelX3);
     this.panelEx1.Controls.Add(this.labelX2);
     this.panelEx1.Controls.Add(this.labelX1);
     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(411, 319);
     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            = 0;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     this.labelX1.Location = new System.Drawing.Point(11, 14);
     this.labelX1.Name     = "labelX1";
     this.labelX1.Size     = new System.Drawing.Size(50, 18);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text     = "字 段 :";
     //
     // labelX2
     //
     this.labelX2.AutoSize = true;
     this.labelX2.Location = new System.Drawing.Point(11, 44);
     this.labelX2.Name     = "labelX2";
     this.labelX2.Size     = new System.Drawing.Size(50, 18);
     this.labelX2.TabIndex = 1;
     this.labelX2.Text     = "颜 色 :";
     //
     // labelX3
     //
     this.labelX3.AutoSize = true;
     this.labelX3.Location = new System.Drawing.Point(11, 75);
     this.labelX3.Name     = "labelX3";
     this.labelX3.Size     = new System.Drawing.Size(50, 18);
     this.labelX3.TabIndex = 2;
     this.labelX3.Text     = "最小值:";
     //
     // labelX4
     //
     this.labelX4.AutoSize = true;
     this.labelX4.Location = new System.Drawing.Point(154, 75);
     this.labelX4.Name     = "labelX4";
     this.labelX4.Size     = new System.Drawing.Size(50, 18);
     this.labelX4.TabIndex = 3;
     this.labelX4.Text     = "最大值:";
     //
     // labelX5
     //
     this.labelX5.AutoSize = true;
     this.labelX5.Location = new System.Drawing.Point(204, 14);
     this.labelX5.Name     = "labelX5";
     this.labelX5.Size     = new System.Drawing.Size(37, 18);
     this.labelX5.TabIndex = 4;
     this.labelX5.Text     = "等级:";
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DisplayMember     = "Text";
     this.comboBoxEx1.DrawMode          = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.ItemHeight        = 15;
     this.comboBoxEx1.Location          = new System.Drawing.Point(61, 12);
     this.comboBoxEx1.Name     = "comboBoxEx1";
     this.comboBoxEx1.Size     = new System.Drawing.Size(137, 21);
     this.comboBoxEx1.TabIndex = 5;
     //
     // comboTree1
     //
     this.comboTree1.BackColor = System.Drawing.SystemColors.Window;
     //
     //
     //
     this.comboTree1.BackgroundStyle.Class  = "TextBoxBorder";
     this.comboTree1.ButtonDropDown.Visible = true;
     this.comboTree1.Location = new System.Drawing.Point(61, 41);
     this.comboTree1.Name     = "comboTree1";
     this.comboTree1.Size     = new System.Drawing.Size(228, 23);
     this.comboTree1.TabIndex = 6;
     //
     // doubleInput1
     //
     //
     //
     //
     this.doubleInput1.BackgroundStyle.Class   = "DateTimeInputBackground";
     this.doubleInput1.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.doubleInput1.Increment = 1;
     this.doubleInput1.Location  = new System.Drawing.Point(61, 72);
     this.doubleInput1.Name      = "doubleInput1";
     this.doubleInput1.Size      = new System.Drawing.Size(87, 21);
     this.doubleInput1.TabIndex  = 7;
     //
     // doubleInput2
     //
     //
     //
     //
     this.doubleInput2.BackgroundStyle.Class   = "DateTimeInputBackground";
     this.doubleInput2.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.doubleInput2.Increment = 1;
     this.doubleInput2.Location  = new System.Drawing.Point(202, 72);
     this.doubleInput2.Name      = "doubleInput2";
     this.doubleInput2.Size      = new System.Drawing.Size(87, 21);
     this.doubleInput2.TabIndex  = 8;
     //
     // integerInput1
     //
     //
     //
     //
     this.integerInput1.BackgroundStyle.Class   = "DateTimeInputBackground";
     this.integerInput1.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.integerInput1.Location   = new System.Drawing.Point(242, 11);
     this.integerInput1.MaxValue   = 1000;
     this.integerInput1.MinValue   = 1;
     this.integerInput1.Name       = "integerInput1";
     this.integerInput1.ShowUpDown = true;
     this.integerInput1.Size       = new System.Drawing.Size(47, 21);
     this.integerInput1.TabIndex   = 9;
     this.integerInput1.Value      = 1;
     //
     // advTree1
     //
     this.advTree1.AccessibleRole = System.Windows.Forms.AccessibleRole.Outline;
     this.advTree1.AllowDrop      = true;
     this.advTree1.BackColor      = System.Drawing.SystemColors.Window;
     //
     //
     //
     this.advTree1.BackgroundStyle.Class = "TreeBorderKey";
     this.advTree1.Location       = new System.Drawing.Point(11, 103);
     this.advTree1.Name           = "advTree1";
     this.advTree1.NodesConnector = this.nodeConnector1;
     this.advTree1.NodeStyle      = this.elementStyle1;
     this.advTree1.PathSeparator  = ";";
     this.advTree1.Size           = new System.Drawing.Size(384, 201);
     this.advTree1.Styles.Add(this.elementStyle1);
     this.advTree1.TabIndex = 10;
     this.advTree1.Text     = "advTree1";
     //
     // nodeConnector1
     //
     this.nodeConnector1.LineColor = System.Drawing.SystemColors.ControlText;
     //
     // elementStyle1
     //
     this.elementStyle1.Name      = "elementStyle1";
     this.elementStyle1.TextColor = System.Drawing.SystemColors.ControlText;
     //
     // labelX6
     //
     this.labelX6.AutoSize = true;
     this.labelX6.Location = new System.Drawing.Point(326, 14);
     this.labelX6.Name     = "labelX6";
     this.labelX6.Size     = new System.Drawing.Size(31, 18);
     this.labelX6.TabIndex = 11;
     this.labelX6.Text     = "符号";
     //
     // labelX7
     //
     this.labelX7.BackColor = System.Drawing.Color.Maroon;
     this.labelX7.Location  = new System.Drawing.Point(295, 43);
     this.labelX7.Name      = "labelX7";
     this.labelX7.Size      = new System.Drawing.Size(100, 50);
     this.labelX7.TabIndex  = 12;
     //
     // frmColorBreakRenderer
     //
     this.Controls.Add(this.panelEx1);
     this.Name = "frmColorBreakRenderer";
     this.Size = new System.Drawing.Size(411, 319);
     this.panelEx1.ResumeLayout(false);
     this.panelEx1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.doubleInput1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.doubleInput2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.integerInput1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.advTree1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SetOp));
     this.skinEngine1 = new Sunisoft.IrisSkin.SkinEngine(((System.ComponentModel.Component)(this)));
     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.btnItm_Sav = new DevComponents.DotNetBar.ButtonItem();
     this.btnItm_Modify = new DevComponents.DotNetBar.ButtonItem();
     this.btnItm_Del = new DevComponents.DotNetBar.ButtonItem();
     this.btnItm_Search = new DevComponents.DotNetBar.ButtonItem();
     this.BtnSave = new DevComponents.DotNetBar.ButtonItem();
     this.BtnCancle = new DevComponents.DotNetBar.ButtonItem();
     this.btnItm_Exit = new DevComponents.DotNetBar.ButtonItem();
     this.customizeItem1 = new DevComponents.DotNetBar.CustomizeItem();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.groupPanel3 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.treeView2 = new System.Windows.Forms.TreeView();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.treeView1 = new System.Windows.Forms.TreeView();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.comboBoxEx2 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.TxtTel = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.TxtPws = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.lblX3 = new DevComponents.DotNetBar.LabelX();
     this.lblX2 = new DevComponents.DotNetBar.LabelX();
     this.lblX1 = new DevComponents.DotNetBar.LabelX();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.comboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.txtBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.dockSite7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.panelEx1.SuspendLayout();
     this.groupPanel3.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.groupPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // skinEngine1
     //
     this.skinEngine1.SerialNumber = "";
     this.skinEngine1.SkinFile = null;
     //
     // 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.DefinitionName = "";
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     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, 559);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(638, 0);
     this.dockSite4.TabIndex = 3;
     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, 57);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(0, 502);
     this.dockSite1.TabIndex = 0;
     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(638, 57);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 502);
     this.dockSite2.TabIndex = 1;
     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, 559);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(638, 0);
     this.dockSite8.TabIndex = 7;
     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, 57);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 502);
     this.dockSite5.TabIndex = 4;
     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(638, 57);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 502);
     this.dockSite6.TabIndex = 5;
     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(638, 57);
     this.dockSite7.TabIndex = 6;
     this.dockSite7.TabStop = false;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.DockSide = DevComponents.DotNetBar.eDockSide.Top;
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Office2003;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnItm_Sav,
     this.btnItm_Modify,
     this.btnItm_Del,
     this.btnItm_Search,
     this.BtnSave,
     this.BtnCancle,
     this.btnItm_Exit,
     this.customizeItem1});
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(300, 57);
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // btnItm_Sav
     //
     this.btnItm_Sav.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Sav.Image")));
     this.btnItm_Sav.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Sav.ImagePaddingHorizontal = 8;
     this.btnItm_Sav.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Sav.Name = "btnItm_Sav";
     this.btnItm_Sav.Text = "添加";
     this.btnItm_Sav.Click += new System.EventHandler(this.btnItm_Sav_Click);
     //
     // btnItm_Modify
     //
     this.btnItm_Modify.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Modify.Image")));
     this.btnItm_Modify.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Modify.ImagePaddingHorizontal = 8;
     this.btnItm_Modify.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Modify.Name = "btnItm_Modify";
     this.btnItm_Modify.Text = "修改";
     this.btnItm_Modify.Click += new System.EventHandler(this.btnItm_Modify_Click);
     //
     // btnItm_Del
     //
     this.btnItm_Del.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Del.Image")));
     this.btnItm_Del.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Del.ImagePaddingHorizontal = 8;
     this.btnItm_Del.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Del.Name = "btnItm_Del";
     this.btnItm_Del.Text = "删除";
     this.btnItm_Del.Click += new System.EventHandler(this.btnItm_Del_Click);
     //
     // btnItm_Search
     //
     this.btnItm_Search.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Search.Image")));
     this.btnItm_Search.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Search.ImagePaddingHorizontal = 8;
     this.btnItm_Search.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Search.Name = "btnItm_Search";
     this.btnItm_Search.Text = "查询";
     this.btnItm_Search.Click += new System.EventHandler(this.btnItm_search_Click);
     //
     // BtnSave
     //
     this.BtnSave.Image = ((System.Drawing.Image)(resources.GetObject("BtnSave.Image")));
     this.BtnSave.ImagePaddingHorizontal = 8;
     this.BtnSave.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.BtnSave.Name = "BtnSave";
     this.BtnSave.Text = "保存";
     this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // BtnCancle
     //
     this.BtnCancle.Image = ((System.Drawing.Image)(resources.GetObject("BtnCancle.Image")));
     this.BtnCancle.ImagePaddingHorizontal = 8;
     this.BtnCancle.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.BtnCancle.Name = "BtnCancle";
     this.BtnCancle.Text = "撤消";
     this.BtnCancle.Click += new System.EventHandler(this.BtnCancle_Click);
     //
     // btnItm_Exit
     //
     this.btnItm_Exit.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Exit.Image")));
     this.btnItm_Exit.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Exit.ImagePaddingHorizontal = 8;
     this.btnItm_Exit.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Exit.Name = "btnItm_Exit";
     this.btnItm_Exit.Text = "关闭";
     this.btnItm_Exit.Click += new System.EventHandler(this.btnItm_exit_Click);
     //
     // customizeItem1
     //
     this.customizeItem1.Name = "customizeItem1";
     this.customizeItem1.Text = "添加或删除按钮(&A)";
     this.customizeItem1.Tooltip = "工具栏选项";
     //
     // 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, 57);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(638, 0);
     this.dockSite3.TabIndex = 2;
     this.dockSite3.TabStop = false;
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorScheme.ItemDesignTimeBorder = System.Drawing.Color.Black;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.groupPanel3);
     this.panelEx1.Controls.Add(this.groupPanel2);
     this.panelEx1.Controls.Add(this.groupPanel1);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location = new System.Drawing.Point(0, 57);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(638, 502);
     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 = 8;
     //
     // groupPanel3
     //
     this.groupPanel3.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel3.Controls.Add(this.treeView2);
     this.groupPanel3.Location = new System.Drawing.Point(276, 9);
     this.groupPanel3.Name = "groupPanel3";
     this.groupPanel3.Size = new System.Drawing.Size(350, 490);
     //
     //
     //
     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.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel3.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel3.TabIndex = 2;
     this.groupPanel3.Text = "操作员权限";
     //
     // treeView2
     //
     this.treeView2.Location = new System.Drawing.Point(13, 13);
     this.treeView2.Name = "treeView2";
     this.treeView2.Size = new System.Drawing.Size(328, 448);
     this.treeView2.TabIndex = 0;
     //
     // groupPanel2
     //
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.treeView1);
     this.groupPanel2.Location = new System.Drawing.Point(12, 241);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(249, 258);
     //
     //
     //
     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.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel2.TabIndex = 1;
     this.groupPanel2.Text = "操作员列表";
     //
     // treeView1
     //
     this.treeView1.ImageIndex = 0;
     this.treeView1.ImageList = this.imageList1;
     this.treeView1.Location = new System.Drawing.Point(3, 3);
     this.treeView1.Name = "treeView1";
     this.treeView1.SelectedImageIndex = 0;
     this.treeView1.Size = new System.Drawing.Size(237, 226);
     this.treeView1.TabIndex = 0;
     this.treeView1.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView1_NodeMouseClick);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "I156.ICO");
     this.imageList1.Images.SetKeyName(1, "msnnew_009.ico");
     this.imageList1.Images.SetKeyName(2, "msnnew_019.ico");
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.comboBoxEx2);
     this.groupPanel1.Controls.Add(this.TxtTel);
     this.groupPanel1.Controls.Add(this.TxtPws);
     this.groupPanel1.Controls.Add(this.labelX3);
     this.groupPanel1.Controls.Add(this.labelX2);
     this.groupPanel1.Controls.Add(this.labelX1);
     this.groupPanel1.Controls.Add(this.lblX3);
     this.groupPanel1.Controls.Add(this.lblX2);
     this.groupPanel1.Controls.Add(this.lblX1);
     this.groupPanel1.Controls.Add(this.linkLabel1);
     this.groupPanel1.Controls.Add(this.comboBoxEx1);
     this.groupPanel1.Controls.Add(this.txtBoxX2);
     this.groupPanel1.Controls.Add(this.txtBoxX1);
     this.groupPanel1.Location = new System.Drawing.Point(12, 8);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(249, 225);
     //
     //
     //
     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.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel1.TabIndex = 0;
     this.groupPanel1.Text = "操作员信息";
     //
     // comboBoxEx2
     //
     this.comboBoxEx2.DisplayMember = "Text";
     this.comboBoxEx2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx2.FormattingEnabled = true;
     this.comboBoxEx2.Location = new System.Drawing.Point(64, 137);
     this.comboBoxEx2.Name = "comboBoxEx2";
     this.comboBoxEx2.Size = new System.Drawing.Size(121, 22);
     this.comboBoxEx2.TabIndex = 17;
     //
     // TxtTel
     //
     //
     //
     //
     this.TxtTel.Border.Class = "TextBoxBorder";
     this.TxtTel.Location = new System.Drawing.Point(64, 103);
     this.TxtTel.Name = "TxtTel";
     this.TxtTel.Size = new System.Drawing.Size(100, 21);
     this.TxtTel.TabIndex = 16;
     //
     // TxtPws
     //
     this.TxtPws.BackColor = System.Drawing.Color.YellowGreen;
     //
     //
     //
     this.TxtPws.Border.Class = "TextBoxBorder";
     this.TxtPws.Location = new System.Drawing.Point(64, 73);
     this.TxtPws.MaxLength = 16;
     this.TxtPws.Name = "TxtPws";
     this.TxtPws.PasswordChar = '*';
     this.TxtPws.Size = new System.Drawing.Size(100, 21);
     this.TxtPws.TabIndex = 15;
     this.TxtPws.UseSystemPasswordChar = true;
     //
     // labelX3
     //
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     this.labelX3.Location = new System.Drawing.Point(3, 106);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(43, 23);
     this.labelX3.TabIndex = 14;
     this.labelX3.Text = "电话:";
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     this.labelX2.Location = new System.Drawing.Point(3, 74);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(43, 23);
     this.labelX2.TabIndex = 13;
     this.labelX2.Text = "密码:";
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     this.labelX1.Location = new System.Drawing.Point(3, 137);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(72, 23);
     this.labelX1.TabIndex = 12;
     this.labelX1.Text = "所属部门:";
     //
     // lblX3
     //
     this.lblX3.BackColor = System.Drawing.Color.Transparent;
     this.lblX3.Location = new System.Drawing.Point(3, 172);
     this.lblX3.Name = "lblX3";
     this.lblX3.Size = new System.Drawing.Size(55, 23);
     this.lblX3.TabIndex = 9;
     this.lblX3.Text = "权限:";
     //
     // lblX2
     //
     this.lblX2.BackColor = System.Drawing.Color.Transparent;
     this.lblX2.Location = new System.Drawing.Point(3, 42);
     this.lblX2.Name = "lblX2";
     this.lblX2.Size = new System.Drawing.Size(43, 23);
     this.lblX2.TabIndex = 8;
     this.lblX2.Text = "姓名:";
     //
     // lblX1
     //
     this.lblX1.BackColor = System.Drawing.Color.Transparent;
     this.lblX1.Location = new System.Drawing.Point(3, 13);
     this.lblX1.Name = "lblX1";
     this.lblX1.Size = new System.Drawing.Size(55, 23);
     this.lblX1.TabIndex = 7;
     this.lblX1.Text = "工号:";
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.BackColor = System.Drawing.Color.MistyRose;
     this.linkLabel1.Location = new System.Drawing.Point(179, 15);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(29, 12);
     this.linkLabel1.TabIndex = 6;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "检查";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DisplayMember = "Text";
     this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.Location = new System.Drawing.Point(64, 173);
     this.comboBoxEx1.Name = "comboBoxEx1";
     this.comboBoxEx1.Size = new System.Drawing.Size(121, 22);
     this.comboBoxEx1.TabIndex = 5;
     this.comboBoxEx1.SelectionChangeCommitted += new System.EventHandler(this.comboBoxEx1_SelectionChangeCommitted);
     //
     // txtBoxX2
     //
     this.txtBoxX2.BackColor = System.Drawing.Color.YellowGreen;
     //
     //
     //
     this.txtBoxX2.Border.Class = "TextBoxBorder";
     this.txtBoxX2.Location = new System.Drawing.Point(64, 42);
     this.txtBoxX2.Name = "txtBoxX2";
     this.txtBoxX2.Size = new System.Drawing.Size(100, 21);
     this.txtBoxX2.TabIndex = 1;
     //
     // txtBoxX1
     //
     this.txtBoxX1.BackColor = System.Drawing.Color.YellowGreen;
     //
     //
     //
     this.txtBoxX1.Border.Class = "TextBoxBorder";
     this.txtBoxX1.Location = new System.Drawing.Point(64, 13);
     this.txtBoxX1.Name = "txtBoxX1";
     this.txtBoxX1.Size = new System.Drawing.Size(100, 21);
     this.txtBoxX1.TabIndex = 0;
     this.txtBoxX1.TextChanged += new System.EventHandler(this.txtBoxX1_TextChanged);
     this.txtBoxX1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtBoxX1_KeyPress);
     //
     // SetOp
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(638, 559);
     this.Controls.Add(this.panelEx1);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.dockSite2);
     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.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "SetOp";
     this.Text = "操作员设置";
     this.Load += new System.EventHandler(this.SetOp_Load);
     this.dockSite7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.panelEx1.ResumeLayout(false);
     this.groupPanel3.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
示例#50
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.btnRemov = new DevComponents.DotNetBar.ButtonX();
     this.saveButton = new DevComponents.DotNetBar.ButtonX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.lbSelList = new System.Windows.Forms.ListBox();
     this.cancelButton = new DevComponents.DotNetBar.ButtonX();
     this.labelXTitle = new DevComponents.DotNetBar.LabelX();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.cmbContinuationType = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.cmbHistoricalPeriod = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem_tick = new DevComponents.Editors.ComboItem();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.comboItem6 = new DevComponents.Editors.ComboItem();
     this.comboItem7 = new DevComponents.Editors.ComboItem();
     this.comboItem8 = new DevComponents.Editors.ComboItem();
     this.comboItem9 = new DevComponents.Editors.ComboItem();
     this.comboItem10 = new DevComponents.Editors.ComboItem();
     this.comboItem11 = new DevComponents.Editors.ComboItem();
     this.comboItem12 = new DevComponents.Editors.ComboItem();
     this.comboItem13 = new DevComponents.Editors.ComboItem();
     this.comboItem14 = new DevComponents.Editors.ComboItem();
     this.comboItem15 = new DevComponents.Editors.ComboItem();
     this.textBoxXListName = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX_repeat_dialy = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.buttonX_add_date = new DevComponents.DotNetBar.ButtonX();
     this.listViewEx_dates = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.dateTimeInput_date = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.buttonX_add = new DevComponents.DotNetBar.ButtonX();
     this.dateTimeInput2 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.dateTimeInput1 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.checkedListBox_rd = new System.Windows.Forms.CheckedListBox();
     this.checkBoxX_parttime = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.listViewEx_times = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.ui_nudDOMDepth = new System.Windows.Forms.NumericUpDown();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.panelEx1.SuspendLayout();
     this.contextMenuStrip2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput_date)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput1)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ui_nudDOMDepth)).BeginInit();
     this.SuspendLayout();
     //
     // btnRemov
     //
     this.btnRemov.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnRemov.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnRemov.Location = new System.Drawing.Point(696, 45);
     this.btnRemov.Name = "btnRemov";
     this.btnRemov.Size = new System.Drawing.Size(75, 24);
     this.btnRemov.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnRemov.TabIndex = 73;
     this.btnRemov.Text = "<";
     this.btnRemov.Click += new System.EventHandler(this.btnRemov_Click);
     //
     // saveButton
     //
     this.saveButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.saveButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.saveButton.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.saveButton.Location = new System.Drawing.Point(542, 404);
     this.saveButton.Name = "saveButton";
     this.saveButton.Size = new System.Drawing.Size(105, 31);
     this.saveButton.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.saveButton.TabIndex = 70;
     this.saveButton.Text = "Save";
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX5.Location = new System.Drawing.Point(546, 48);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(131, 21);
     this.labelX5.TabIndex = 68;
     this.labelX5.Text = "Selected symbols:";
     //
     // lbSelList
     //
     this.lbSelList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.lbSelList.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.lbSelList.FormattingEnabled = true;
     this.lbSelList.ItemHeight = 15;
     this.lbSelList.Location = new System.Drawing.Point(542, 71);
     this.lbSelList.Name = "lbSelList";
     this.lbSelList.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.lbSelList.Size = new System.Drawing.Size(229, 319);
     this.lbSelList.TabIndex = 58;
     //
     // cancelButton
     //
     this.cancelButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cancelButton.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.cancelButton.Location = new System.Drawing.Point(666, 404);
     this.cancelButton.Name = "cancelButton";
     this.cancelButton.Size = new System.Drawing.Size(105, 31);
     this.cancelButton.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cancelButton.TabIndex = 21;
     this.cancelButton.Text = "Cancel";
     this.toolTip1.SetToolTip(this.cancelButton, "Return without saving");
     //
     // labelXTitle
     //
     //
     //
     //
     this.labelXTitle.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelXTitle.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelXTitle.Location = new System.Drawing.Point(101, 4);
     this.labelXTitle.Name = "labelXTitle";
     this.labelXTitle.Size = new System.Drawing.Size(239, 34);
     this.labelXTitle.TabIndex = 19;
     this.labelXTitle.Text = "EDIT SYMBOLS LIST";
     //
     // pictureBox1
     //
     this.pictureBox1.Image = global::TickNetClient.Properties.Resources.backbutton1;
     this.pictureBox1.Location = new System.Drawing.Point(3, 3);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(44, 44);
     this.pictureBox1.TabIndex = 12;
     this.pictureBox1.TabStop = false;
     this.toolTip1.SetToolTip(this.pictureBox1, "Cancel");
     this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
     //
     // cmbContinuationType
     //
     this.cmbContinuationType.DisplayMember = "Text";
     this.cmbContinuationType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbContinuationType.FormattingEnabled = true;
     this.cmbContinuationType.ItemHeight = 17;
     this.cmbContinuationType.Location = new System.Drawing.Point(185, 129);
     this.cmbContinuationType.Name = "cmbContinuationType";
     this.cmbContinuationType.Size = new System.Drawing.Size(198, 23);
     this.cmbContinuationType.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbContinuationType.TabIndex = 88;
     //
     // cmbHistoricalPeriod
     //
     this.cmbHistoricalPeriod.DisplayMember = "Text";
     this.cmbHistoricalPeriod.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbHistoricalPeriod.FormattingEnabled = true;
     this.cmbHistoricalPeriod.ItemHeight = 17;
     this.cmbHistoricalPeriod.Items.AddRange(new object[] {
     this.comboItem_tick,
     this.comboItem1,
     this.comboItem2,
     this.comboItem3,
     this.comboItem4,
     this.comboItem5,
     this.comboItem6,
     this.comboItem7,
     this.comboItem8,
     this.comboItem9,
     this.comboItem10,
     this.comboItem11,
     this.comboItem12,
     this.comboItem13,
     this.comboItem14,
     this.comboItem15});
     this.cmbHistoricalPeriod.Location = new System.Drawing.Point(185, 100);
     this.cmbHistoricalPeriod.Name = "cmbHistoricalPeriod";
     this.cmbHistoricalPeriod.Size = new System.Drawing.Size(351, 23);
     this.cmbHistoricalPeriod.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbHistoricalPeriod.TabIndex = 87;
     //
     // comboItem_tick
     //
     this.comboItem_tick.Text = "tick";
     //
     // comboItem1
     //
     this.comboItem1.Text = "1 minute";
     //
     // comboItem2
     //
     this.comboItem2.Text = "2 minutes";
     //
     // comboItem3
     //
     this.comboItem3.Text = "3 minutes";
     //
     // comboItem4
     //
     this.comboItem4.Text = "5 minutes";
     //
     // comboItem5
     //
     this.comboItem5.Text = "10 minutes";
     //
     // comboItem6
     //
     this.comboItem6.Text = "15 minutes";
     //
     // comboItem7
     //
     this.comboItem7.Text = "30 minutes";
     //
     // comboItem8
     //
     this.comboItem8.Text = "60 minutes";
     //
     // comboItem9
     //
     this.comboItem9.Text = "240 minutes";
     //
     // comboItem10
     //
     this.comboItem10.Text = "Daily";
     //
     // comboItem11
     //
     this.comboItem11.Text = "Weekly";
     //
     // comboItem12
     //
     this.comboItem12.Text = "Monthly";
     //
     // comboItem13
     //
     this.comboItem13.Text = "Quarterly";
     //
     // comboItem14
     //
     this.comboItem14.Text = "Semiannual";
     //
     // comboItem15
     //
     this.comboItem15.Text = "Yearly";
     //
     // textBoxXListName
     //
     this.textBoxXListName.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.textBoxXListName.Border.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.textBoxXListName.Border.BorderLeftColor = System.Drawing.Color.Green;
     this.textBoxXListName.Border.BorderLeftWidth = 3;
     this.textBoxXListName.Border.Class = "TextBoxBorder";
     this.textBoxXListName.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxXListName.ForeColor = System.Drawing.Color.Black;
     this.textBoxXListName.Location = new System.Drawing.Point(185, 71);
     this.textBoxXListName.Name = "textBoxXListName";
     this.textBoxXListName.Size = new System.Drawing.Size(351, 23);
     this.textBoxXListName.TabIndex = 83;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX1.Location = new System.Drawing.Point(104, 71);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 21);
     this.labelX1.TabIndex = 84;
     this.labelX1.Text = "List Name:";
     this.labelX1.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX2.Location = new System.Drawing.Point(104, 100);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 21);
     this.labelX2.TabIndex = 85;
     this.labelX2.Text = "Timeframe:";
     this.labelX2.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX3.Location = new System.Drawing.Point(45, 127);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(134, 21);
     this.labelX3.TabIndex = 86;
     this.labelX3.Text = "Continuation Types:";
     this.labelX3.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // checkBoxX_repeat_dialy
     //
     //
     //
     //
     this.checkBoxX_repeat_dialy.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX_repeat_dialy.Location = new System.Drawing.Point(212, 28);
     this.checkBoxX_repeat_dialy.Name = "checkBoxX_repeat_dialy";
     this.checkBoxX_repeat_dialy.Size = new System.Drawing.Size(136, 23);
     this.checkBoxX_repeat_dialy.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX_repeat_dialy.TabIndex = 89;
     this.checkBoxX_repeat_dialy.Text = "Days required";
     this.checkBoxX_repeat_dialy.CheckedChanged += new System.EventHandler(this.checkBoxX_repeat_dialy_CheckedChanged);
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.buttonX_add_date);
     this.panelEx1.Controls.Add(this.listViewEx_dates);
     this.panelEx1.Controls.Add(this.dateTimeInput_date);
     this.panelEx1.Controls.Add(this.buttonX_add);
     this.panelEx1.Controls.Add(this.dateTimeInput2);
     this.panelEx1.Controls.Add(this.dateTimeInput1);
     this.panelEx1.Controls.Add(this.checkedListBox_rd);
     this.panelEx1.Controls.Add(this.checkBoxX_parttime);
     this.panelEx1.Controls.Add(this.listViewEx_times);
     this.panelEx1.Controls.Add(this.labelX4);
     this.panelEx1.Controls.Add(this.checkBoxX_repeat_dialy);
     this.panelEx1.Location = new System.Drawing.Point(24, 172);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(512, 218);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     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 = 90;
     //
     // buttonX_add_date
     //
     this.buttonX_add_date.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX_add_date.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX_add_date.Location = new System.Drawing.Point(448, 28);
     this.buttonX_add_date.Name = "buttonX_add_date";
     this.buttonX_add_date.Size = new System.Drawing.Size(49, 23);
     this.buttonX_add_date.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX_add_date.TabIndex = 103;
     this.buttonX_add_date.Text = "Add";
     this.buttonX_add_date.Click += new System.EventHandler(this.buttonX_add_date_Click);
     //
     // listViewEx_dates
     //
     this.listViewEx_dates.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.listViewEx_dates.Border.Class = "ListViewBorder";
     this.listViewEx_dates.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listViewEx_dates.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1});
     this.listViewEx_dates.ContextMenuStrip = this.contextMenuStrip2;
     this.listViewEx_dates.ForeColor = System.Drawing.Color.Black;
     this.listViewEx_dates.Location = new System.Drawing.Point(354, 57);
     this.listViewEx_dates.Name = "listViewEx_dates";
     this.listViewEx_dates.Size = new System.Drawing.Size(143, 149);
     this.listViewEx_dates.TabIndex = 102;
     this.listViewEx_dates.UseCompatibleStateImageBehavior = false;
     this.listViewEx_dates.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Date";
     this.columnHeader1.Width = 120;
     //
     // contextMenuStrip2
     //
     this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1});
     this.contextMenuStrip2.Name = "contextMenuStrip1";
     this.contextMenuStrip2.Size = new System.Drawing.Size(108, 26);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(107, 22);
     this.toolStripMenuItem1.Text = "Delete";
     this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
     //
     // dateTimeInput_date
     //
     //
     //
     //
     this.dateTimeInput_date.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput_date.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput_date.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput_date.ButtonDropDown.Visible = true;
     this.dateTimeInput_date.IsPopupCalendarOpen = false;
     this.dateTimeInput_date.Location = new System.Drawing.Point(354, 28);
     //
     //
     //
     this.dateTimeInput_date.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput_date.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput_date.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.dateTimeInput_date.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput_date.MonthCalendar.DisplayMonth = new System.DateTime(2013, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput_date.MonthCalendar.FirstDayOfWeek = System.DayOfWeek.Monday;
     this.dateTimeInput_date.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput_date.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput_date.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput_date.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput_date.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput_date.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput_date.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput_date.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput_date.Name = "dateTimeInput_date";
     this.dateTimeInput_date.Size = new System.Drawing.Size(88, 23);
     this.dateTimeInput_date.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dateTimeInput_date.TabIndex = 101;
     this.dateTimeInput_date.Value = new System.DateTime(2013, 12, 17, 0, 0, 0, 0);
     //
     // buttonX_add
     //
     this.buttonX_add.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX_add.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX_add.Enabled = false;
     this.buttonX_add.Location = new System.Drawing.Point(155, 57);
     this.buttonX_add.Name = "buttonX_add";
     this.buttonX_add.Size = new System.Drawing.Size(49, 23);
     this.buttonX_add.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX_add.TabIndex = 100;
     this.buttonX_add.Text = "Add";
     this.buttonX_add.Click += new System.EventHandler(this.buttonX_add_Click);
     //
     // dateTimeInput2
     //
     //
     //
     //
     this.dateTimeInput2.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput2.ButtonDropDown.Visible = true;
     this.dateTimeInput2.Enabled = false;
     this.dateTimeInput2.Format = DevComponents.Editors.eDateTimePickerFormat.ShortTime;
     this.dateTimeInput2.IsPopupCalendarOpen = false;
     this.dateTimeInput2.Location = new System.Drawing.Point(79, 58);
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.dateTimeInput2.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.MonthCalendar.DisplayMonth = new System.DateTime(2013, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput2.MonthCalendar.FirstDayOfWeek = System.DayOfWeek.Monday;
     this.dateTimeInput2.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput2.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput2.MonthCalendar.Visible = false;
     this.dateTimeInput2.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput2.Name = "dateTimeInput2";
     this.dateTimeInput2.Size = new System.Drawing.Size(64, 23);
     this.dateTimeInput2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dateTimeInput2.TabIndex = 99;
     this.dateTimeInput2.Value = new System.DateTime(2013, 12, 17, 0, 0, 0, 0);
     //
     // dateTimeInput1
     //
     //
     //
     //
     this.dateTimeInput1.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput1.ButtonDropDown.Visible = true;
     this.dateTimeInput1.Enabled = false;
     this.dateTimeInput1.Format = DevComponents.Editors.eDateTimePickerFormat.ShortTime;
     this.dateTimeInput1.IsPopupCalendarOpen = false;
     this.dateTimeInput1.Location = new System.Drawing.Point(12, 58);
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.dateTimeInput1.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.MonthCalendar.DisplayMonth = new System.DateTime(2013, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput1.MonthCalendar.FirstDayOfWeek = System.DayOfWeek.Monday;
     this.dateTimeInput1.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput1.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput1.MonthCalendar.Visible = false;
     this.dateTimeInput1.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput1.Name = "dateTimeInput1";
     this.dateTimeInput1.Size = new System.Drawing.Size(64, 23);
     this.dateTimeInput1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dateTimeInput1.TabIndex = 98;
     this.dateTimeInput1.Value = new System.DateTime(2013, 12, 17, 0, 0, 0, 0);
     //
     // checkedListBox_rd
     //
     this.checkedListBox_rd.Enabled = false;
     this.checkedListBox_rd.FormattingEnabled = true;
     this.checkedListBox_rd.Items.AddRange(new object[] {
     "Sunday",
     "Monday",
     "Tuesday",
     "Wednesday",
     "Thursday",
     "Friday",
     "Saturday"});
     this.checkedListBox_rd.Location = new System.Drawing.Point(212, 57);
     this.checkedListBox_rd.Name = "checkedListBox_rd";
     this.checkedListBox_rd.Size = new System.Drawing.Size(136, 148);
     this.checkedListBox_rd.TabIndex = 96;
     //
     // checkBoxX_parttime
     //
     //
     //
     //
     this.checkBoxX_parttime.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX_parttime.Location = new System.Drawing.Point(12, 28);
     this.checkBoxX_parttime.Name = "checkBoxX_parttime";
     this.checkBoxX_parttime.Size = new System.Drawing.Size(192, 23);
     this.checkBoxX_parttime.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX_parttime.TabIndex = 95;
     this.checkBoxX_parttime.Text = "Is particular?";
     this.checkBoxX_parttime.CheckedChanged += new System.EventHandler(this.checkBoxX_parttime_CheckedChanged);
     //
     // listViewEx_times
     //
     this.listViewEx_times.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.listViewEx_times.Border.Class = "ListViewBorder";
     this.listViewEx_times.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listViewEx_times.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader2,
     this.columnHeader3});
     this.listViewEx_times.ContextMenuStrip = this.contextMenuStrip1;
     this.listViewEx_times.Enabled = false;
     this.listViewEx_times.ForeColor = System.Drawing.Color.Black;
     this.listViewEx_times.Location = new System.Drawing.Point(12, 87);
     this.listViewEx_times.Name = "listViewEx_times";
     this.listViewEx_times.Size = new System.Drawing.Size(192, 116);
     this.listViewEx_times.TabIndex = 94;
     this.listViewEx_times.UseCompatibleStateImageBehavior = false;
     this.listViewEx_times.View = System.Windows.Forms.View.Details;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Time Start";
     this.columnHeader2.Width = 80;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Time End";
     this.columnHeader3.Width = 80;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.deleteToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(108, 26);
     //
     // deleteToolStripMenuItem
     //
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
     this.deleteToolStripMenuItem.Text = "Delete";
     this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Font = new System.Drawing.Font("Segoe UI Semibold", 9F);
     this.labelX4.Location = new System.Drawing.Point(3, 3);
     this.labelX4.Name = "labelX4";
     this.labelX4.PaddingLeft = 10;
     this.labelX4.Size = new System.Drawing.Size(110, 23);
     this.labelX4.TabIndex = 90;
     this.labelX4.Text = "Schedule";
     //
     // ui_nudDOMDepth
     //
     this.ui_nudDOMDepth.BackColor = System.Drawing.Color.White;
     this.ui_nudDOMDepth.ForeColor = System.Drawing.Color.Black;
     this.ui_nudDOMDepth.Location = new System.Drawing.Point(485, 128);
     this.ui_nudDOMDepth.Maximum = new decimal(new int[] {
     500,
     0,
     0,
     0});
     this.ui_nudDOMDepth.Name = "ui_nudDOMDepth";
     this.ui_nudDOMDepth.Size = new System.Drawing.Size(51, 23);
     this.ui_nudDOMDepth.TabIndex = 92;
     this.ui_nudDOMDepth.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX6.Location = new System.Drawing.Point(389, 127);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(90, 21);
     this.labelX6.TabIndex = 93;
     this.labelX6.Text = "Depth";
     this.labelX6.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // EditListControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.Controls.Add(this.labelX6);
     this.Controls.Add(this.ui_nudDOMDepth);
     this.Controls.Add(this.panelEx1);
     this.Controls.Add(this.cmbContinuationType);
     this.Controls.Add(this.cmbHistoricalPeriod);
     this.Controls.Add(this.textBoxXListName);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.labelXTitle);
     this.Controls.Add(this.btnRemov);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.saveButton);
     this.Controls.Add(this.labelX5);
     this.Controls.Add(this.lbSelList);
     this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.Name = "EditListControl";
     this.Size = new System.Drawing.Size(800, 482);
     this.Load += new System.EventHandler(this.EditListControl_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.panelEx1.ResumeLayout(false);
     this.contextMenuStrip2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput_date)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput1)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ui_nudDOMDepth)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmScaffoldRecommendSelect));
     this.Btn_TjBzsgsj = new DevComponents.DotNetBar.ButtonX();
     this.Lb_TjDsyt = new DevComponents.DotNetBar.LabelX();
     this.Lb_TjDsgd = new DevComponents.DotNetBar.LabelX();
     this.DbInput_TjDsgd = new DevComponents.Editors.DoubleInput();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.Cbx_TjDsyt = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.Lb7_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb6_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb5_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb4_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb3_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb2_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb1_Tj = new DevComponents.DotNetBar.LabelX();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel4 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX4 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX3 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel5 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX5 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel6 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX6 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel7 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX7 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel8 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabControl_Tj = new DevComponents.DotNetBar.TabControl();
     this.tcPanel_Tj5 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem5 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj1 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj2 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj7 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem7 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj6 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem6 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj4 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem4 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj3 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem3 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel16 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_TjDsgd)).BeginInit();
     this.groupPanel1.SuspendLayout();
     this.panelEx1.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.tabControlPanel1.SuspendLayout();
     this.tabControlPanel4.SuspendLayout();
     this.tabControlPanel3.SuspendLayout();
     this.tabControlPanel2.SuspendLayout();
     this.tabControlPanel5.SuspendLayout();
     this.tabControlPanel6.SuspendLayout();
     this.tabControlPanel7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl_Tj)).BeginInit();
     this.tabControl_Tj.SuspendLayout();
     this.panelEx2.SuspendLayout();
     this.SuspendLayout();
     //
     // Btn_TjBzsgsj
     //
     this.Btn_TjBzsgsj.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.Btn_TjBzsgsj.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.Btn_TjBzsgsj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Btn_TjBzsgsj.Location = new System.Drawing.Point(240, 2);
     this.Btn_TjBzsgsj.Name = "Btn_TjBzsgsj";
     this.Btn_TjBzsgsj.Size = new System.Drawing.Size(122, 36);
     this.Btn_TjBzsgsj.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Btn_TjBzsgsj.TabIndex = 0;
     this.Btn_TjBzsgsj.Text = "����ר��ʩ������ ";
     this.Btn_TjBzsgsj.Click += new System.EventHandler(this.Btn_TjBzsgsj_Click);
     //
     // Lb_TjDsyt
     //
     this.Lb_TjDsyt.AutoSize = true;
     //
     //
     //
     this.Lb_TjDsyt.BackgroundStyle.Class = "";
     this.Lb_TjDsyt.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_TjDsyt.Location = new System.Drawing.Point(9, 27);
     this.Lb_TjDsyt.Name = "Lb_TjDsyt";
     this.Lb_TjDsyt.Size = new System.Drawing.Size(118, 18);
     this.Lb_TjDsyt.TabIndex = 48;
     this.Lb_TjDsyt.Text = "�������ּܵ���;";
     //
     // Lb_TjDsgd
     //
     this.Lb_TjDsgd.AutoSize = true;
     //
     //
     //
     this.Lb_TjDsgd.BackgroundStyle.Class = "";
     this.Lb_TjDsgd.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_TjDsgd.Location = new System.Drawing.Point(9, 76);
     this.Lb_TjDsgd.Name = "Lb_TjDsgd";
     this.Lb_TjDsgd.Size = new System.Drawing.Size(118, 18);
     this.Lb_TjDsgd.TabIndex = 47;
     this.Lb_TjDsgd.Text = "�������ּܵĸ߶�";
     //
     // DbInput_TjDsgd
     //
     //
     //
     //
     this.DbInput_TjDsgd.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_TjDsgd.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_TjDsgd.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_TjDsgd.Increment = 1;
     this.DbInput_TjDsgd.Location = new System.Drawing.Point(131, 76);
     this.DbInput_TjDsgd.MinValue = 0;
     this.DbInput_TjDsgd.Name = "DbInput_TjDsgd";
     this.DbInput_TjDsgd.ShowUpDown = true;
     this.DbInput_TjDsgd.Size = new System.Drawing.Size(89, 21);
     this.DbInput_TjDsgd.TabIndex = 49;
     this.DbInput_TjDsgd.ValueChanged += new System.EventHandler(this.DbInput_TjDsgd_ValueChanged);
     //
     // comboItem2
     //
     this.comboItem2.Text = "װ��װ��";
     //
     // comboItem1
     //
     this.comboItem1.Text = "�ṹʩ��";
     //
     // Cbx_TjDsyt
     //
     this.Cbx_TjDsyt.DisplayMember = "Text";
     this.Cbx_TjDsyt.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_TjDsyt.FormattingEnabled = true;
     this.Cbx_TjDsyt.ItemHeight = 15;
     this.Cbx_TjDsyt.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2});
     this.Cbx_TjDsyt.Location = new System.Drawing.Point(130, 24);
     this.Cbx_TjDsyt.Name = "Cbx_TjDsyt";
     this.Cbx_TjDsyt.Size = new System.Drawing.Size(89, 21);
     this.Cbx_TjDsyt.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_TjDsyt.TabIndex = 50;
     this.Cbx_TjDsyt.SelectedIndexChanged += new System.EventHandler(this.Cbx_TjDsyt_SelectedIndexChanged);
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.groupPanel1.Controls.Add(this.Lb_TjDsgd);
     this.groupPanel1.Controls.Add(this.Lb_TjDsyt);
     this.groupPanel1.Controls.Add(this.Cbx_TjDsyt);
     this.groupPanel1.Controls.Add(this.DbInput_TjDsgd);
     this.groupPanel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupPanel1.Location = new System.Drawing.Point(0, 0);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(252, 150);
     //
     //
     //
     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;
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.groupPanel2);
     this.panelEx1.Controls.Add(this.groupPanel1);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(252, 558);
     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 = 47;
     //
     // groupPanel2
     //
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.groupPanel2.Controls.Add(this.Lb7_Tj);
     this.groupPanel2.Controls.Add(this.Lb6_Tj);
     this.groupPanel2.Controls.Add(this.Lb5_Tj);
     this.groupPanel2.Controls.Add(this.Lb4_Tj);
     this.groupPanel2.Controls.Add(this.Lb3_Tj);
     this.groupPanel2.Controls.Add(this.Lb2_Tj);
     this.groupPanel2.Controls.Add(this.Lb1_Tj);
     this.groupPanel2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupPanel2.Location = new System.Drawing.Point(0, 151);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(252, 407);
     //
     //
     //
     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 = 3;
     //
     // Lb7_Tj
     //
     this.Lb7_Tj.AutoSize = true;
     //
     //
     //
     this.Lb7_Tj.BackgroundStyle.Class = "";
     this.Lb7_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb7_Tj.Enabled = false;
     this.Lb7_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb7_Tj.Location = new System.Drawing.Point(12, 303);
     this.Lb7_Tj.Name = "Lb7_Tj";
     this.Lb7_Tj.Size = new System.Drawing.Size(86, 20);
     this.Lb7_Tj.TabIndex = 48;
     this.Lb7_Tj.Text = "�� �����ּ�";
     //
     // Lb6_Tj
     //
     this.Lb6_Tj.AutoSize = true;
     //
     //
     //
     this.Lb6_Tj.BackgroundStyle.Class = "";
     this.Lb6_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb6_Tj.Enabled = false;
     this.Lb6_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb6_Tj.Location = new System.Drawing.Point(12, 265);
     this.Lb6_Tj.Name = "Lb6_Tj";
     this.Lb6_Tj.Size = new System.Drawing.Size(159, 20);
     this.Lb6_Tj.TabIndex = 48;
     this.Lb6_Tj.Text = "�� Һѹ����������ּ�";
     //
     // Lb5_Tj
     //
     this.Lb5_Tj.AutoSize = true;
     //
     //
     //
     this.Lb5_Tj.BackgroundStyle.Class = "";
     this.Lb5_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb5_Tj.Enabled = false;
     this.Lb5_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb5_Tj.Location = new System.Drawing.Point(12, 218);
     this.Lb5_Tj.Name = "Lb5_Tj";
     this.Lb5_Tj.Size = new System.Drawing.Size(130, 20);
     this.Lb5_Tj.TabIndex = 48;
     this.Lb5_Tj.Text = "�� ��ʽ�ֹܽ��ּ�";
     //
     // Lb4_Tj
     //
     this.Lb4_Tj.AutoSize = true;
     //
     //
     //
     this.Lb4_Tj.BackgroundStyle.Class = "";
     this.Lb4_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb4_Tj.Enabled = false;
     this.Lb4_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb4_Tj.Location = new System.Drawing.Point(12, 171);
     this.Lb4_Tj.Name = "Lb4_Tj";
     this.Lb4_Tj.Size = new System.Drawing.Size(187, 20);
     this.Lb4_Tj.TabIndex = 48;
     this.Lb4_Tj.Text = "�� �в����̿�ʽ�ֹܽ��ּ�";
     //
     // Lb3_Tj
     //
     this.Lb3_Tj.AutoSize = true;
     //
     //
     //
     this.Lb3_Tj.BackgroundStyle.Class = "";
     this.Lb3_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb3_Tj.Enabled = false;
     this.Lb3_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb3_Tj.Location = new System.Drawing.Point(12, 130);
     this.Lb3_Tj.Name = "Lb3_Tj";
     this.Lb3_Tj.Size = new System.Drawing.Size(115, 20);
     this.Lb3_Tj.TabIndex = 48;
     this.Lb3_Tj.Text = "�� ���ʽ���ּ�";
     //
     // Lb2_Tj
     //
     this.Lb2_Tj.AutoSize = true;
     //
     //
     //
     this.Lb2_Tj.BackgroundStyle.Class = "";
     this.Lb2_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb2_Tj.Enabled = false;
     this.Lb2_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb2_Tj.Location = new System.Drawing.Point(12, 86);
     this.Lb2_Tj.Name = "Lb2_Tj";
     this.Lb2_Tj.Size = new System.Drawing.Size(238, 20);
     this.Lb2_Tj.TabIndex = 48;
     this.Lb2_Tj.Text = "�� �ۼ�ʽ�ֹܽ��ּܣ����+�����";
     //
     // Lb1_Tj
     //
     this.Lb1_Tj.AutoSize = true;
     //
     //
     //
     this.Lb1_Tj.BackgroundStyle.Class = "";
     this.Lb1_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb1_Tj.Enabled = false;
     this.Lb1_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb1_Tj.Location = new System.Drawing.Point(12, 47);
     this.Lb1_Tj.Name = "Lb1_Tj";
     this.Lb1_Tj.Size = new System.Drawing.Size(202, 20);
     this.Lb1_Tj.TabIndex = 48;
     this.Lb1_Tj.Text = "�� �ۼ�ʽ�ֹܽ��ּܣ���أ�";
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.textBoxX1);
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(580, 470);
     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 = 1;
     //
     // textBoxX1
     //
     //
     //
     //
     this.textBoxX1.Border.Class = "TextBoxBorder";
     this.textBoxX1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX1.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX1.Location = new System.Drawing.Point(1, 1);
     this.textBoxX1.Multiline = true;
     this.textBoxX1.Name = "textBoxX1";
     this.textBoxX1.ReadOnly = true;
     this.textBoxX1.Size = new System.Drawing.Size(578, 468);
     this.textBoxX1.TabIndex = 1;
     this.textBoxX1.Text = resources.GetString("textBoxX1.Text");
     //
     // tabControlPanel4
     //
     this.tabControlPanel4.Controls.Add(this.textBoxX4);
     this.tabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel4.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel4.Name = "tabControlPanel4";
     this.tabControlPanel4.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel4.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel4.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     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;
     //
     // textBoxX4
     //
     //
     //
     //
     this.textBoxX4.Border.Class = "TextBoxBorder";
     this.textBoxX4.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX4.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX4.Location = new System.Drawing.Point(1, 1);
     this.textBoxX4.Multiline = true;
     this.textBoxX4.Name = "textBoxX4";
     this.textBoxX4.ReadOnly = true;
     this.textBoxX4.Size = new System.Drawing.Size(578, 468);
     this.textBoxX4.TabIndex = 2;
     this.textBoxX4.Text = resources.GetString("textBoxX4.Text");
     //
     // tabControlPanel3
     //
     this.tabControlPanel3.Controls.Add(this.textBoxX3);
     this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel3.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel3.Name = "tabControlPanel3";
     this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel3.Size = new System.Drawing.Size(580, 470);
     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;
     //
     // textBoxX3
     //
     //
     //
     //
     this.textBoxX3.Border.Class = "TextBoxBorder";
     this.textBoxX3.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX3.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX3.Location = new System.Drawing.Point(1, 1);
     this.textBoxX3.Multiline = true;
     this.textBoxX3.Name = "textBoxX3";
     this.textBoxX3.ReadOnly = true;
     this.textBoxX3.Size = new System.Drawing.Size(578, 468);
     this.textBoxX3.TabIndex = 2;
     this.textBoxX3.Text = resources.GetString("textBoxX3.Text");
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.Controls.Add(this.textBoxX2);
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(580, 470);
     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 = 2;
     //
     // textBoxX2
     //
     //
     //
     //
     this.textBoxX2.Border.Class = "TextBoxBorder";
     this.textBoxX2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX2.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX2.Location = new System.Drawing.Point(1, 1);
     this.textBoxX2.Multiline = true;
     this.textBoxX2.Name = "textBoxX2";
     this.textBoxX2.ReadOnly = true;
     this.textBoxX2.Size = new System.Drawing.Size(578, 468);
     this.textBoxX2.TabIndex = 2;
     this.textBoxX2.Text = resources.GetString("textBoxX2.Text");
     //
     // tabControlPanel5
     //
     this.tabControlPanel5.Controls.Add(this.textBoxX5);
     this.tabControlPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel5.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel5.Name = "tabControlPanel5";
     this.tabControlPanel5.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel5.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel5.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel5.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel5.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel5.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel5.Style.GradientAngle = 90;
     this.tabControlPanel5.TabIndex = 5;
     //
     // textBoxX5
     //
     //
     //
     //
     this.textBoxX5.Border.Class = "TextBoxBorder";
     this.textBoxX5.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX5.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX5.Location = new System.Drawing.Point(1, 1);
     this.textBoxX5.Multiline = true;
     this.textBoxX5.Name = "textBoxX5";
     this.textBoxX5.ReadOnly = true;
     this.textBoxX5.Size = new System.Drawing.Size(578, 468);
     this.textBoxX5.TabIndex = 2;
     this.textBoxX5.Text = resources.GetString("textBoxX5.Text");
     //
     // tabControlPanel6
     //
     this.tabControlPanel6.Controls.Add(this.textBoxX6);
     this.tabControlPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel6.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel6.Name = "tabControlPanel6";
     this.tabControlPanel6.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel6.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel6.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel6.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel6.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel6.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel6.Style.GradientAngle = 90;
     this.tabControlPanel6.TabIndex = 6;
     //
     // textBoxX6
     //
     //
     //
     //
     this.textBoxX6.Border.Class = "TextBoxBorder";
     this.textBoxX6.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX6.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX6.Location = new System.Drawing.Point(1, 1);
     this.textBoxX6.Multiline = true;
     this.textBoxX6.Name = "textBoxX6";
     this.textBoxX6.ReadOnly = true;
     this.textBoxX6.Size = new System.Drawing.Size(578, 468);
     this.textBoxX6.TabIndex = 2;
     this.textBoxX6.Text = resources.GetString("textBoxX6.Text");
     //
     // tabControlPanel7
     //
     this.tabControlPanel7.Controls.Add(this.textBoxX7);
     this.tabControlPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel7.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel7.Name = "tabControlPanel7";
     this.tabControlPanel7.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel7.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel7.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel7.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel7.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel7.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel7.Style.GradientAngle = 90;
     this.tabControlPanel7.TabIndex = 7;
     this.tabControlPanel7.Visible = false;
     //
     // textBoxX7
     //
     //
     //
     //
     this.textBoxX7.Border.Class = "TextBoxBorder";
     this.textBoxX7.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX7.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX7.ForeColor = System.Drawing.SystemColors.WindowText;
     this.textBoxX7.Location = new System.Drawing.Point(1, 1);
     this.textBoxX7.Multiline = true;
     this.textBoxX7.Name = "textBoxX7";
     this.textBoxX7.ReadOnly = true;
     this.textBoxX7.Size = new System.Drawing.Size(578, 468);
     this.textBoxX7.TabIndex = 2;
     this.textBoxX7.Text = "\r\n�ŵ㣺\r\n������ס�\r\n\r\nȱ�㣺\r\n��ȫ�Խϲ\r\n\r\n�����ԣ�\r\n��Ҫ���ڽ���������װ��װ�޹��̡�\r\n";
     //
     // tabControlPanel8
     //
     this.tabControlPanel8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel8.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel8.Name = "tabControlPanel8";
     this.tabControlPanel8.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel8.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel8.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel8.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel8.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel8.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel8.Style.GradientAngle = 90;
     this.tabControlPanel8.TabIndex = 8;
     //
     // tabControl_Tj
     //
     this.tabControl_Tj.BackColor = System.Drawing.Color.Transparent;
     this.tabControl_Tj.CanReorderTabs = true;
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj1);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj5);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj2);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj7);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj6);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj4);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj3);
     this.tabControl_Tj.Controls.Add(this.tabControlPanel16);
     this.tabControl_Tj.Dock = System.Windows.Forms.DockStyle.Top;
     this.tabControl_Tj.Location = new System.Drawing.Point(252, 0);
     this.tabControl_Tj.Name = "tabControl_Tj";
     this.tabControl_Tj.SelectedTabFont = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Bold);
     this.tabControl_Tj.SelectedTabIndex = 6;
     this.tabControl_Tj.Size = new System.Drawing.Size(580, 514);
     this.tabControl_Tj.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Document;
     this.tabControl_Tj.TabIndex = 51;
     this.tabControl_Tj.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.MultilineNoNavigationBox;
     this.tabControl_Tj.Tabs.Add(this.TJtabItem1);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem2);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem3);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem4);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem5);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem6);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem7);
     this.tabControl_Tj.Tabs.Add(this.tabItem1);
     this.tabControl_Tj.Text = "tabControl1";
     //
     // tcPanel_Tj5
     //
     this.tcPanel_Tj5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj5.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj5.Name = "tcPanel_Tj5";
     this.tcPanel_Tj5.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj5.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj5.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj5.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj5.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj5.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj5.Style.GradientAngle = 90;
     this.tcPanel_Tj5.TabIndex = 5;
     this.tcPanel_Tj5.TabItem = this.TJtabItem5;
     //
     // TJtabItem5
     //
     this.TJtabItem5.AttachedControl = this.tcPanel_Tj5;
     this.TJtabItem5.Name = "TJtabItem5";
     this.TJtabItem5.Text = "��ʽ�ֹܽ��ּ�";
     this.TJtabItem5.Visible = false;
     //
     // tcPanel_Tj1
     //
     this.tcPanel_Tj1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj1.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tcPanel_Tj1.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj1.Name = "tcPanel_Tj1";
     this.tcPanel_Tj1.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj1.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj1.Style.GradientAngle = 90;
     this.tcPanel_Tj1.TabIndex = 1;
     this.tcPanel_Tj1.TabItem = this.TJtabItem1;
     //
     // TJtabItem1
     //
     this.TJtabItem1.AttachedControl = this.tcPanel_Tj1;
     this.TJtabItem1.Name = "TJtabItem1";
     this.TJtabItem1.Text = "�ۼ�ʽ�ֹܽ��ּܣ���أ�";
     this.TJtabItem1.Visible = false;
     //
     // tcPanel_Tj2
     //
     this.tcPanel_Tj2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj2.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj2.Name = "tcPanel_Tj2";
     this.tcPanel_Tj2.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj2.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj2.Style.GradientAngle = 90;
     this.tcPanel_Tj2.TabIndex = 2;
     this.tcPanel_Tj2.TabItem = this.TJtabItem2;
     //
     // TJtabItem2
     //
     this.TJtabItem2.AttachedControl = this.tcPanel_Tj2;
     this.TJtabItem2.Name = "TJtabItem2";
     this.TJtabItem2.Text = "�ۼ�ʽ�ֹܽ��ּܣ����+�����";
     this.TJtabItem2.Visible = false;
     //
     // tcPanel_Tj7
     //
     this.tcPanel_Tj7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj7.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj7.Name = "tcPanel_Tj7";
     this.tcPanel_Tj7.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj7.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj7.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj7.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj7.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj7.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj7.Style.GradientAngle = 90;
     this.tcPanel_Tj7.TabIndex = 7;
     this.tcPanel_Tj7.TabItem = this.TJtabItem7;
     this.tcPanel_Tj7.Visible = false;
     //
     // TJtabItem7
     //
     this.TJtabItem7.AttachedControl = this.tcPanel_Tj7;
     this.TJtabItem7.Name = "TJtabItem7";
     this.TJtabItem7.Text = "�����ּ�";
     this.TJtabItem7.Visible = false;
     //
     // tcPanel_Tj6
     //
     this.tcPanel_Tj6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj6.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj6.Name = "tcPanel_Tj6";
     this.tcPanel_Tj6.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj6.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj6.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj6.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj6.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj6.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj6.Style.GradientAngle = 90;
     this.tcPanel_Tj6.TabIndex = 6;
     this.tcPanel_Tj6.TabItem = this.TJtabItem6;
     //
     // TJtabItem6
     //
     this.TJtabItem6.AttachedControl = this.tcPanel_Tj6;
     this.TJtabItem6.Name = "TJtabItem6";
     this.TJtabItem6.Text = "Һѹ����������ּ�";
     this.TJtabItem6.Visible = false;
     //
     // tcPanel_Tj4
     //
     this.tcPanel_Tj4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj4.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj4.Name = "tcPanel_Tj4";
     this.tcPanel_Tj4.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj4.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj4.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj4.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj4.Style.GradientAngle = 90;
     this.tcPanel_Tj4.TabIndex = 4;
     this.tcPanel_Tj4.TabItem = this.TJtabItem4;
     //
     // TJtabItem4
     //
     this.TJtabItem4.AttachedControl = this.tcPanel_Tj4;
     this.TJtabItem4.Name = "TJtabItem4";
     this.TJtabItem4.Text = "�в����̿�ʽ�ֹܽ��ּ�";
     this.TJtabItem4.Visible = false;
     //
     // tcPanel_Tj3
     //
     this.tcPanel_Tj3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj3.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj3.Name = "tcPanel_Tj3";
     this.tcPanel_Tj3.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj3.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj3.Style.GradientAngle = 90;
     this.tcPanel_Tj3.TabIndex = 3;
     this.tcPanel_Tj3.TabItem = this.TJtabItem3;
     //
     // TJtabItem3
     //
     this.TJtabItem3.AttachedControl = this.tcPanel_Tj3;
     this.TJtabItem3.Name = "TJtabItem3";
     this.TJtabItem3.Text = "���ʽ���ּ�";
     this.TJtabItem3.Visible = false;
     //
     // tabControlPanel16
     //
     this.tabControlPanel16.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel16.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel16.Name = "tabControlPanel16";
     this.tabControlPanel16.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel16.Size = new System.Drawing.Size(580, 467);
     this.tabControlPanel16.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel16.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel16.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel16.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel16.Style.GradientAngle = 90;
     this.tabControlPanel16.TabIndex = 8;
     this.tabControlPanel16.TabItem = this.tabItem1;
     //
     // tabItem1
     //
     this.tabItem1.AttachedControl = this.tabControlPanel16;
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "";
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Controls.Add(this.Btn_TjBzsgsj);
     this.panelEx2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelEx2.Location = new System.Drawing.Point(252, 520);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Size = new System.Drawing.Size(580, 38);
     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 = 52;
     //
     // FrmScaffoldRecommendSelect
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize = new System.Drawing.Size(832, 558);
     this.Controls.Add(this.panelEx2);
     this.Controls.Add(this.tabControl_Tj);
     this.Controls.Add(this.panelEx1);
     this.DoubleBuffered = true;
     this.Name = "FrmScaffoldRecommendSelect";
     this.Text = "���ּ�ѡ��-�Ƽ�ѡ��";
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_TjDsgd)).EndInit();
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     this.panelEx1.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel2.PerformLayout();
     this.tabControlPanel1.ResumeLayout(false);
     this.tabControlPanel4.ResumeLayout(false);
     this.tabControlPanel3.ResumeLayout(false);
     this.tabControlPanel2.ResumeLayout(false);
     this.tabControlPanel5.ResumeLayout(false);
     this.tabControlPanel6.ResumeLayout(false);
     this.tabControlPanel7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControl_Tj)).EndInit();
     this.tabControl_Tj.ResumeLayout(false);
     this.panelEx2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ImportStudentV2));
     this.wizard1 = new DevComponents.DotNetBar.Wizard();
     this.wizardPage1 = new DevComponents.DotNetBar.WizardPage();
     this.chkTrim = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.linkLabel2 = new System.Windows.Forms.LinkLabel();
     this.lblReqFields = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.txtFile = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.wizardPage2 = new DevComponents.DotNetBar.WizardPage();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.listView1 = new System.Windows.Forms.ListView();
     this.wizardPage3 = new DevComponents.DotNetBar.WizardPage();
     this.linkLabel3 = new System.Windows.Forms.LinkLabel();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.lblErrCount = new DevComponents.DotNetBar.LabelX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.lblWarningCount = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.progressBarX1 = new DevComponents.DotNetBar.Controls.ProgressBarX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.SelectSourceFileDialog = new System.Windows.Forms.OpenFileDialog();
     this.errorFile = new System.Windows.Forms.ErrorProvider(this.components);
     this.errorKey = new System.Windows.Forms.ErrorProvider(this.components);
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.cboStudStatus = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.wizard1.SuspendLayout();
     this.wizardPage1.SuspendLayout();
     this.wizardPage2.SuspendLayout();
     this.wizardPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorFile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorKey)).BeginInit();
     this.SuspendLayout();
     //
     // wizard1
     //
     this.wizard1.BackButtonText = "上一步";
     this.wizard1.BackColor = System.Drawing.Color.Transparent;
     this.wizard1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("wizard1.BackgroundImage")));
     this.wizard1.ButtonStyle = DevComponents.DotNetBar.eWizardStyle.Office2007;
     this.wizard1.CancelButtonText = "關閉";
     this.wizard1.Cursor = System.Windows.Forms.Cursors.Default;
     this.wizard1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.wizard1.FinishButtonTabIndex = 3;
     this.wizard1.FinishButtonText = "開始匯入";
     this.wizard1.FooterHeight = 33;
     //
     //
     //
     this.wizard1.FooterStyle.BackColor = System.Drawing.Color.Transparent;
     this.wizard1.FooterStyle.Class = "";
     this.wizard1.FooterStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizard1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(57)))), ((int)(((byte)(129)))));
     this.wizard1.HeaderCaptionFont = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.wizard1.HeaderDescriptionFont = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.wizard1.HeaderDescriptionIndent = 16;
     this.wizard1.HeaderImage = ((System.Drawing.Image)(resources.GetObject("wizard1.HeaderImage")));
     //
     //
     //
     this.wizard1.HeaderStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(215)))), ((int)(((byte)(243)))));
     this.wizard1.HeaderStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(219)))), ((int)(((byte)(241)))), ((int)(((byte)(254)))));
     this.wizard1.HeaderStyle.BackColorGradientAngle = 90;
     this.wizard1.HeaderStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.wizard1.HeaderStyle.BorderBottomColor = System.Drawing.Color.FromArgb(((int)(((byte)(121)))), ((int)(((byte)(157)))), ((int)(((byte)(182)))));
     this.wizard1.HeaderStyle.BorderBottomWidth = 1;
     this.wizard1.HeaderStyle.BorderColor = System.Drawing.SystemColors.Control;
     this.wizard1.HeaderStyle.BorderLeftWidth = 1;
     this.wizard1.HeaderStyle.BorderRightWidth = 1;
     this.wizard1.HeaderStyle.BorderTopWidth = 1;
     this.wizard1.HeaderStyle.Class = "";
     this.wizard1.HeaderStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizard1.HeaderStyle.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.wizard1.HeaderStyle.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.wizard1.HelpButtonVisible = false;
     this.wizard1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.wizard1.Location = new System.Drawing.Point(0, 0);
     this.wizard1.Name = "wizard1";
     this.wizard1.NextButtonText = "下一步";
     this.wizard1.Size = new System.Drawing.Size(464, 323);
     this.wizard1.TabIndex = 0;
     this.wizard1.WizardPages.AddRange(new DevComponents.DotNetBar.WizardPage[] {
     this.wizardPage1,
     this.wizardPage2,
     this.wizardPage3});
     this.wizard1.WizardPageChanged += new DevComponents.DotNetBar.WizardPageChangeEventHandler(this.wizard1_WizardPageChanged);
     //
     // wizardPage1
     //
     this.wizardPage1.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.wizardPage1.AntiAlias = false;
     this.wizardPage1.BackButtonVisible = DevComponents.DotNetBar.eWizardButtonState.False;
     this.wizardPage1.BackColor = System.Drawing.Color.Transparent;
     this.wizardPage1.Controls.Add(this.chkTrim);
     this.wizardPage1.Controls.Add(this.linkLabel2);
     this.wizardPage1.Controls.Add(this.lblReqFields);
     this.wizardPage1.Controls.Add(this.labelX1);
     this.wizardPage1.Controls.Add(this.buttonX1);
     this.wizardPage1.Controls.Add(this.txtFile);
     this.wizardPage1.Location = new System.Drawing.Point(7, 72);
     this.wizardPage1.Name = "wizardPage1";
     this.wizardPage1.NextButtonEnabled = DevComponents.DotNetBar.eWizardButtonState.False;
     this.wizardPage1.PageDescription = "選取匯入檔案";
     this.wizardPage1.Size = new System.Drawing.Size(450, 206);
     //
     //
     //
     this.wizardPage1.Style.Class = "";
     this.wizardPage1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage1.StyleMouseDown.Class = "";
     this.wizardPage1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage1.StyleMouseOver.Class = "";
     this.wizardPage1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizardPage1.TabIndex = 7;
     //
     // chkTrim
     //
     this.chkTrim.AutoSize = true;
     //
     //
     //
     this.chkTrim.BackgroundStyle.Class = "";
     this.chkTrim.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkTrim.Checked = true;
     this.chkTrim.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkTrim.CheckValue = "Y";
     this.chkTrim.Location = new System.Drawing.Point(35, 65);
     this.chkTrim.Name = "chkTrim";
     this.chkTrim.Size = new System.Drawing.Size(161, 21);
     this.chkTrim.TabIndex = 4;
     this.chkTrim.Text = "自動過慮頭尾空白字元";
     this.chkTrim.CheckedChanged += new System.EventHandler(this.chkTrim_CheckedChanged);
     //
     // linkLabel2
     //
     this.linkLabel2.AutoSize = true;
     this.linkLabel2.Location = new System.Drawing.Point(357, 65);
     this.linkLabel2.Name = "linkLabel2";
     this.linkLabel2.Size = new System.Drawing.Size(60, 17);
     this.linkLabel2.TabIndex = 3;
     this.linkLabel2.TabStop = true;
     this.linkLabel2.Text = "重新整理";
     this.linkLabel2.Visible = false;
     this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
     //
     // lblReqFields
     //
     this.lblReqFields.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.lblReqFields.BackgroundStyle.Class = "";
     this.lblReqFields.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblReqFields.Location = new System.Drawing.Point(105, 85);
     this.lblReqFields.Name = "lblReqFields";
     this.lblReqFields.Size = new System.Drawing.Size(312, 121);
     this.lblReqFields.TabIndex = 2;
     this.lblReqFields.TextLineAlignment = System.Drawing.StringAlignment.Near;
     this.lblReqFields.WordWrap = true;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(35, 85);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(74, 21);
     this.labelX1.TabIndex = 2;
     this.labelX1.Text = "必要欄位:";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Location = new System.Drawing.Point(394, 36);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(23, 25);
     this.buttonX1.TabIndex = 1;
     this.buttonX1.Text = "‧‧‧";
     this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // txtFile
     //
     this.txtFile.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.txtFile.Border.Class = "TextBoxBorder";
     this.txtFile.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtFile.Location = new System.Drawing.Point(35, 36);
     this.txtFile.Name = "txtFile";
     this.txtFile.Size = new System.Drawing.Size(353, 25);
     this.txtFile.TabIndex = 0;
     this.txtFile.TextChanged += new System.EventHandler(this.txtFile_TextChanged);
     //
     // wizardPage2
     //
     this.wizardPage2.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.wizardPage2.AntiAlias = false;
     this.wizardPage2.BackColor = System.Drawing.Color.Transparent;
     this.wizardPage2.Controls.Add(this.checkBox1);
     this.wizardPage2.Controls.Add(this.listView1);
     this.wizardPage2.Location = new System.Drawing.Point(7, 72);
     this.wizardPage2.Name = "wizardPage2";
     this.wizardPage2.PageDescription = "選取匯入欄位";
     this.wizardPage2.Size = new System.Drawing.Size(450, 206);
     //
     //
     //
     this.wizardPage2.Style.Class = "";
     this.wizardPage2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage2.StyleMouseDown.Class = "";
     this.wizardPage2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage2.StyleMouseOver.Class = "";
     this.wizardPage2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizardPage2.TabIndex = 8;
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.BackColor = System.Drawing.Color.Transparent;
     this.checkBox1.Location = new System.Drawing.Point(0, -2);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(72, 16);
     this.checkBox1.TabIndex = 1;
     this.checkBox1.Text = "全部選取";
     this.checkBox1.UseVisualStyleBackColor = false;
     //
     // listView1
     //
     this.listView1.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.listView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.listView1.CheckBoxes = true;
     this.listView1.Location = new System.Drawing.Point(0, 17);
     this.listView1.Name = "listView1";
     this.listView1.ShowGroups = false;
     this.listView1.Size = new System.Drawing.Size(450, 189);
     this.listView1.TabIndex = 0;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.List;
     //
     // wizardPage3
     //
     this.wizardPage3.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.wizardPage3.AntiAlias = false;
     this.wizardPage3.BackColor = System.Drawing.Color.Transparent;
     this.wizardPage3.Controls.Add(this.linkLabel3);
     this.wizardPage3.Controls.Add(this.linkLabel1);
     this.wizardPage3.Controls.Add(this.lblErrCount);
     this.wizardPage3.Controls.Add(this.labelX4);
     this.wizardPage3.Controls.Add(this.lblWarningCount);
     this.wizardPage3.Controls.Add(this.labelX3);
     this.wizardPage3.Controls.Add(this.progressBarX1);
     this.wizardPage3.Controls.Add(this.labelX2);
     this.wizardPage3.FinishButtonEnabled = DevComponents.DotNetBar.eWizardButtonState.False;
     this.wizardPage3.Location = new System.Drawing.Point(7, 72);
     this.wizardPage3.Name = "wizardPage3";
     this.wizardPage3.NextButtonVisible = DevComponents.DotNetBar.eWizardButtonState.False;
     this.wizardPage3.PageDescription = "驗證匯入資料";
     this.wizardPage3.Size = new System.Drawing.Size(450, 206);
     //
     //
     //
     this.wizardPage3.Style.Class = "";
     this.wizardPage3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage3.StyleMouseDown.Class = "";
     this.wizardPage3.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage3.StyleMouseOver.Class = "";
     this.wizardPage3.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizardPage3.TabIndex = 9;
     this.wizardPage3.AfterPageDisplayed += new DevComponents.DotNetBar.WizardPageChangeEventHandler(this.wizardPage3_AfterPageDisplayed);
     this.wizardPage3.BackButtonClick += new System.ComponentModel.CancelEventHandler(this.wizardPage3_BackButtonClick);
     this.wizardPage3.FinishButtonClick += new System.ComponentModel.CancelEventHandler(this.wizardPage3_FinishButtonClick);
     //
     // linkLabel3
     //
     this.linkLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.linkLabel3.AutoSize = true;
     this.linkLabel3.Location = new System.Drawing.Point(353, 187);
     this.linkLabel3.Name = "linkLabel3";
     this.linkLabel3.Size = new System.Drawing.Size(60, 17);
     this.linkLabel3.TabIndex = 4;
     this.linkLabel3.TabStop = true;
     this.linkLabel3.Text = "終止驗證";
     this.linkLabel3.Visible = false;
     this.linkLabel3.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel3_LinkClicked);
     //
     // linkLabel1
     //
     this.linkLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.Location = new System.Drawing.Point(314, 187);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(99, 17);
     this.linkLabel1.TabIndex = 3;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "檢視驗證後資料";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // lblErrCount
     //
     this.lblErrCount.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblErrCount.AutoSize = true;
     //
     //
     //
     this.lblErrCount.BackgroundStyle.Class = "";
     this.lblErrCount.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblErrCount.Location = new System.Drawing.Point(159, 139);
     this.lblErrCount.Name = "lblErrCount";
     this.lblErrCount.Size = new System.Drawing.Size(15, 21);
     this.lblErrCount.TabIndex = 2;
     this.lblErrCount.Text = "0";
     //
     // 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.Location = new System.Drawing.Point(58, 139);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(101, 21);
     this.labelX4.TabIndex = 2;
     this.labelX4.Text = "錯誤資料筆數:";
     //
     // lblWarningCount
     //
     this.lblWarningCount.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblWarningCount.AutoSize = true;
     //
     //
     //
     this.lblWarningCount.BackgroundStyle.Class = "";
     this.lblWarningCount.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblWarningCount.Location = new System.Drawing.Point(159, 101);
     this.lblWarningCount.Name = "lblWarningCount";
     this.lblWarningCount.Size = new System.Drawing.Size(15, 21);
     this.lblWarningCount.TabIndex = 2;
     this.lblWarningCount.Text = "0";
     //
     // 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.Location = new System.Drawing.Point(58, 101);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(101, 21);
     this.labelX3.TabIndex = 2;
     this.labelX3.Text = "警告資料筆數:";
     //
     // progressBarX1
     //
     this.progressBarX1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.progressBarX1.BackgroundStyle.Class = "";
     this.progressBarX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.progressBarX1.Location = new System.Drawing.Point(118, 30);
     this.progressBarX1.Name = "progressBarX1";
     this.progressBarX1.Size = new System.Drawing.Size(295, 23);
     this.progressBarX1.TabIndex = 1;
     this.progressBarX1.Text = "progressBarX1";
     //
     // labelX2
     //
     this.labelX2.AutoSize = true;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(37, 32);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(74, 21);
     this.labelX2.TabIndex = 0;
     this.labelX2.Text = "資料驗證中";
     //
     // SelectSourceFileDialog
     //
     this.SelectSourceFileDialog.Filter = "Excel 檔案 (*.xls)| *.xls";
     //
     // errorFile
     //
     this.errorFile.BlinkRate = 0;
     this.errorFile.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorFile.ContainerControl = this;
     //
     // errorKey
     //
     this.errorKey.ContainerControl = this;
     //
     // labelX5
     //
     this.labelX5.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Location = new System.Drawing.Point(82, 295);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(60, 23);
     this.labelX5.TabIndex = 1;
     this.labelX5.Text = "學生狀態";
     //
     // cboStudStatus
     //
     this.cboStudStatus.DisplayMember = "Text";
     this.cboStudStatus.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cboStudStatus.FormattingEnabled = true;
     this.cboStudStatus.ItemHeight = 19;
     this.cboStudStatus.Location = new System.Drawing.Point(140, 294);
     this.cboStudStatus.Name = "cboStudStatus";
     this.cboStudStatus.Size = new System.Drawing.Size(87, 25);
     this.cboStudStatus.TabIndex = 2;
     //
     // ImportStudentV2
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(464, 323);
     this.Controls.Add(this.cboStudStatus);
     this.Controls.Add(this.labelX5);
     this.Controls.Add(this.wizard1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "ImportStudentV2";
     this.Text = "";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ImportStudent_FormClosed);
     this.wizard1.ResumeLayout(false);
     this.wizardPage1.ResumeLayout(false);
     this.wizardPage1.PerformLayout();
     this.wizardPage2.ResumeLayout(false);
     this.wizardPage2.PerformLayout();
     this.wizardPage3.ResumeLayout(false);
     this.wizardPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorFile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorKey)).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.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.lvhanghoa = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.cmb_QG = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.txtDienThoai = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.panel5 = new System.Windows.Forms.Panel();
     this.buttonX6 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX4 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX5 = new DevComponents.DotNetBar.ButtonX();
     this.txttennsx = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX26 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel1.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.panel5.SuspendLayout();
     this.SuspendLayout();
     //
     // groupPanel1
     //
     this.groupPanel1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel1.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.lvhanghoa);
     this.groupPanel1.Location = new System.Drawing.Point(34, 214);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(555, 217);
     //
     //
     //
     this.groupPanel1.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.Style.BackColor2 = System.Drawing.Color.Transparent;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     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.groupPanel1.TabIndex = 75;
     this.groupPanel1.Text = "DANH SÁCH NHÀ SẢN XUẤT";
     //
     // lvhanghoa
     //
     //
     //
     //
     this.lvhanghoa.Border.Class = "ListViewBorder";
     this.lvhanghoa.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader7,
     this.columnHeader2,
     this.columnHeader1,
     this.columnHeader3,
     this.columnHeader4});
     this.lvhanghoa.FullRowSelect = true;
     this.lvhanghoa.GridLines = true;
     this.lvhanghoa.Location = new System.Drawing.Point(7, 3);
     this.lvhanghoa.Name = "lvhanghoa";
     this.lvhanghoa.Size = new System.Drawing.Size(531, 177);
     this.lvhanghoa.TabIndex = 71;
     this.lvhanghoa.UseCompatibleStateImageBehavior = false;
     this.lvhanghoa.View = System.Windows.Forms.View.Details;
     this.lvhanghoa.SelectedIndexChanged += new System.EventHandler(this.lvhanghoa_SelectedIndexChanged);
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "STT";
     this.columnHeader7.Width = 46;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Tên NSX";
     this.columnHeader2.Width = 190;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "MÃ QG";
     this.columnHeader1.Width = 106;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Điện Thoại";
     this.columnHeader3.Width = 111;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "masx";
     this.columnHeader4.Width = 0;
     //
     // groupPanel2
     //
     this.groupPanel2.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel2.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.cmb_QG);
     this.groupPanel2.Controls.Add(this.txtDienThoai);
     this.groupPanel2.Controls.Add(this.labelX2);
     this.groupPanel2.Controls.Add(this.labelX1);
     this.groupPanel2.Controls.Add(this.panel5);
     this.groupPanel2.Controls.Add(this.txttennsx);
     this.groupPanel2.Controls.Add(this.labelX26);
     this.groupPanel2.Location = new System.Drawing.Point(34, 41);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(555, 171);
     //
     //
     //
     this.groupPanel2.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.Style.BackColor2 = System.Drawing.Color.Transparent;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     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 = 0;
     this.groupPanel2.Text = "THÔNG TIN NHÀ SẢN XUẤT";
     //
     // cmb_QG
     //
     this.cmb_QG.DisplayMember = "Text";
     this.cmb_QG.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmb_QG.FocusHighlightEnabled = true;
     this.cmb_QG.FormattingEnabled = true;
     this.cmb_QG.ItemHeight = 18;
     this.cmb_QG.Items.AddRange(new object[] {
     this.comboItem3,
     this.comboItem4});
     this.cmb_QG.Location = new System.Drawing.Point(106, 51);
     this.cmb_QG.Name = "cmb_QG";
     this.cmb_QG.Size = new System.Drawing.Size(193, 24);
     this.cmb_QG.TabIndex = 1;
     //
     // comboItem3
     //
     this.comboItem3.Text = "Nhập hàng";
     //
     // comboItem4
     //
     this.comboItem4.Text = "Trả hàng";
     //
     // txtDienThoai
     //
     //
     //
     //
     this.txtDienThoai.Border.Class = "TextBoxBorder";
     this.txtDienThoai.FocusHighlightEnabled = true;
     this.txtDienThoai.Location = new System.Drawing.Point(106, 83);
     this.txtDienThoai.Name = "txtDienThoai";
     this.txtDienThoai.Size = new System.Drawing.Size(193, 24);
     this.txtDienThoai.TabIndex = 2;
     //
     // labelX2
     //
     this.labelX2.Location = new System.Drawing.Point(21, 79);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(79, 25);
     this.labelX2.TabIndex = 74;
     this.labelX2.Text = "Điện thoại:";
     //
     // labelX1
     //
     this.labelX1.Location = new System.Drawing.Point(21, 48);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(70, 25);
     this.labelX1.TabIndex = 72;
     this.labelX1.Text = "Quốc gia:";
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.SteelBlue;
     this.panel5.Controls.Add(this.buttonX6);
     this.panel5.Controls.Add(this.buttonX4);
     this.panel5.Controls.Add(this.buttonX5);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel5.Location = new System.Drawing.Point(0, 116);
     this.panel5.Margin = new System.Windows.Forms.Padding(0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(549, 30);
     this.panel5.TabIndex = 3;
     //
     // buttonX6
     //
     this.buttonX6.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX6.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX6.Location = new System.Drawing.Point(223, 2);
     this.buttonX6.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX6.Name = "buttonX6";
     this.buttonX6.Size = new System.Drawing.Size(70, 27);
     this.buttonX6.TabIndex = 1;
     this.buttonX6.Text = "Sửa";
     this.buttonX6.Click += new System.EventHandler(this.buttonX6_Click);
     //
     // buttonX4
     //
     this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX4.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX4.Location = new System.Drawing.Point(305, 2);
     this.buttonX4.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX4.Name = "buttonX4";
     this.buttonX4.Size = new System.Drawing.Size(70, 27);
     this.buttonX4.TabIndex = 2;
     this.buttonX4.Text = "Xóa";
     this.buttonX4.Click += new System.EventHandler(this.buttonX4_Click);
     //
     // buttonX5
     //
     this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX5.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX5.Location = new System.Drawing.Point(140, 2);
     this.buttonX5.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX5.Name = "buttonX5";
     this.buttonX5.Size = new System.Drawing.Size(70, 27);
     this.buttonX5.TabIndex = 0;
     this.buttonX5.Text = "Thêm";
     this.buttonX5.Click += new System.EventHandler(this.buttonX5_Click);
     //
     // txttennsx
     //
     //
     //
     //
     this.txttennsx.Border.Class = "TextBoxBorder";
     this.txttennsx.FocusHighlightEnabled = true;
     this.txttennsx.Location = new System.Drawing.Point(106, 16);
     this.txttennsx.Name = "txttennsx";
     this.txttennsx.Size = new System.Drawing.Size(193, 24);
     this.txttennsx.TabIndex = 0;
     //
     // labelX26
     //
     this.labelX26.Location = new System.Drawing.Point(21, 12);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(70, 25);
     this.labelX26.TabIndex = 60;
     this.labelX26.Text = "Tên NSX:";
     //
     // frmNSX
     //
     this.ClientSize = new System.Drawing.Size(627, 450);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.groupPanel2);
     this.Name = "frmNSX";
     this.Text = "Nhà sản xuất";
     this.Load += new System.EventHandler(this.frmNSX_Load);
     this.Controls.SetChildIndex(this.groupPanel2, 0);
     this.Controls.SetChildIndex(this.groupPanel1, 0);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#54
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()
 {
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.lvhanghoa = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader9 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader10 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader11 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader12 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader13 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader14 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.txtMST = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtdienthoai = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.buttonX6 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX4 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX5 = new DevComponents.DotNetBar.ButtonX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.txt_capdo = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_codekh = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.btnNhomKH = new DevComponents.DotNetBar.ButtonX();
     this.panel5 = new System.Windows.Forms.Panel();
     this.cmdInDS = new DevComponents.DotNetBar.ButtonX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.cmb_nhom = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.cmdTinhThanh = new DevComponents.DotNetBar.ButtonX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX27 = new DevComponents.DotNetBar.LabelX();
     this.txt_diachi = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_tenkh = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX26 = new DevComponents.DotNetBar.LabelX();
     this.cmb_tinhthanh = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.labelX8 = new DevComponents.DotNetBar.LabelX();
     this.txtHanNo = new DevComponents.Editors.IntegerInput();
     this.groupPanel1.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.panel5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtHanNo)).BeginInit();
     this.SuspendLayout();
     //
     // groupPanel1
     //
     this.groupPanel1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel1.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.lvhanghoa);
     this.groupPanel1.Location = new System.Drawing.Point(5, 301);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(877, 255);
     //
     //
     //
     this.groupPanel1.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.Style.BackColor2 = System.Drawing.Color.Transparent;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     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.groupPanel1.TabIndex = 75;
     this.groupPanel1.Text = "DANH SÁCH KHÁCH HÀNG";
     //
     // lvhanghoa
     //
     //
     //
     //
     this.lvhanghoa.Border.Class = "ListViewBorder";
     this.lvhanghoa.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader7,
     this.columnHeader2,
     this.columnHeader9,
     this.columnHeader5,
     this.columnHeader10,
     this.columnHeader3,
     this.columnHeader11,
     this.columnHeader12,
     this.columnHeader13,
     this.columnHeader14,
     this.columnHeader1,
     this.columnHeader4});
     this.lvhanghoa.Font = new System.Drawing.Font("Arial", 11F);
     this.lvhanghoa.FullRowSelect = true;
     this.lvhanghoa.GridLines = true;
     this.lvhanghoa.Location = new System.Drawing.Point(7, 3);
     this.lvhanghoa.Name = "lvhanghoa";
     this.lvhanghoa.Size = new System.Drawing.Size(864, 226);
     this.lvhanghoa.TabIndex = 71;
     this.lvhanghoa.UseCompatibleStateImageBehavior = false;
     this.lvhanghoa.View = System.Windows.Forms.View.Details;
     this.lvhanghoa.SelectedIndexChanged += new System.EventHandler(this.lvhanghoa_SelectedIndexChanged);
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "STT";
     this.columnHeader7.Width = 54;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Code KH";
     this.columnHeader2.Width = 80;
     //
     // columnHeader9
     //
     this.columnHeader9.Text = "Tên KH";
     this.columnHeader9.Width = 235;
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "MST";
     this.columnHeader5.Width = 83;
     //
     // columnHeader10
     //
     this.columnHeader10.Text = "Nhóm";
     this.columnHeader10.Width = 77;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Tỉnh thành";
     this.columnHeader3.Width = 100;
     //
     // columnHeader11
     //
     this.columnHeader11.Text = "Địa chỉ";
     this.columnHeader11.Width = 74;
     //
     // columnHeader12
     //
     this.columnHeader12.Text = "Điện thoại";
     this.columnHeader12.Width = 87;
     //
     // columnHeader13
     //
     this.columnHeader13.Text = "Hạn nợ";
     this.columnHeader13.Width = 80;
     //
     // columnHeader14
     //
     this.columnHeader14.Text = "makh";
     this.columnHeader14.Width = 0;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "MAnhom";
     this.columnHeader1.Width = 0;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "matinh";
     this.columnHeader4.Width = 0;
     //
     // groupPanel2
     //
     this.groupPanel2.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel2.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.txtHanNo);
     this.groupPanel2.Controls.Add(this.labelX8);
     this.groupPanel2.Controls.Add(this.labelX7);
     this.groupPanel2.Controls.Add(this.labelX6);
     this.groupPanel2.Controls.Add(this.txtMST);
     this.groupPanel2.Controls.Add(this.txtdienthoai);
     this.groupPanel2.Controls.Add(this.buttonX6);
     this.groupPanel2.Controls.Add(this.buttonX4);
     this.groupPanel2.Controls.Add(this.buttonX5);
     this.groupPanel2.Controls.Add(this.labelX5);
     this.groupPanel2.Controls.Add(this.labelX4);
     this.groupPanel2.Controls.Add(this.txt_capdo);
     this.groupPanel2.Controls.Add(this.txt_codekh);
     this.groupPanel2.Controls.Add(this.labelX3);
     this.groupPanel2.Controls.Add(this.btnNhomKH);
     this.groupPanel2.Controls.Add(this.panel5);
     this.groupPanel2.Controls.Add(this.labelX2);
     this.groupPanel2.Controls.Add(this.cmb_nhom);
     this.groupPanel2.Controls.Add(this.cmdTinhThanh);
     this.groupPanel2.Controls.Add(this.labelX1);
     this.groupPanel2.Controls.Add(this.labelX27);
     this.groupPanel2.Controls.Add(this.txt_diachi);
     this.groupPanel2.Controls.Add(this.txt_tenkh);
     this.groupPanel2.Controls.Add(this.labelX26);
     this.groupPanel2.Controls.Add(this.cmb_tinhthanh);
     this.groupPanel2.Location = new System.Drawing.Point(5, 41);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(880, 252);
     //
     //
     //
     this.groupPanel2.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.Style.BackColor2 = System.Drawing.Color.Transparent;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     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 = 0;
     this.groupPanel2.Text = "THÔNG TIN KHÁCH HÀNG";
     //
     // labelX6
     //
     this.labelX6.Location = new System.Drawing.Point(20, 151);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(71, 25);
     this.labelX6.TabIndex = 83;
     this.labelX6.Text = "Mã Thuế:";
     //
     // txtMST
     //
     //
     //
     //
     this.txtMST.Border.Class = "TextBoxBorder";
     this.txtMST.FocusHighlightEnabled = true;
     this.txtMST.Location = new System.Drawing.Point(106, 151);
     this.txtMST.Multiline = true;
     this.txtMST.Name = "txtMST";
     this.txtMST.Size = new System.Drawing.Size(193, 24);
     this.txtMST.TabIndex = 4;
     //
     // txtdienthoai
     //
     //
     //
     //
     this.txtdienthoai.Border.Class = "TextBoxBorder";
     this.txtdienthoai.FocusHighlightEnabled = true;
     this.txtdienthoai.Location = new System.Drawing.Point(438, 12);
     this.txtdienthoai.Name = "txtdienthoai";
     this.txtdienthoai.Size = new System.Drawing.Size(374, 24);
     this.txtdienthoai.TabIndex = 5;
     //
     // buttonX6
     //
     this.buttonX6.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX6.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX6.Location = new System.Drawing.Point(408, 199);
     this.buttonX6.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX6.Name = "buttonX6";
     this.buttonX6.Size = new System.Drawing.Size(70, 27);
     this.buttonX6.TabIndex = 9;
     this.buttonX6.Text = "Sửa";
     this.buttonX6.Click += new System.EventHandler(this.buttonX6_Click);
     //
     // buttonX4
     //
     this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX4.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX4.Location = new System.Drawing.Point(490, 199);
     this.buttonX4.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX4.Name = "buttonX4";
     this.buttonX4.Size = new System.Drawing.Size(70, 27);
     this.buttonX4.TabIndex = 10;
     this.buttonX4.Text = "Xóa";
     this.buttonX4.Click += new System.EventHandler(this.buttonX4_Click);
     //
     // buttonX5
     //
     this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX5.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX5.Location = new System.Drawing.Point(325, 199);
     this.buttonX5.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX5.Name = "buttonX5";
     this.buttonX5.Size = new System.Drawing.Size(70, 27);
     this.buttonX5.TabIndex = 8;
     this.buttonX5.Text = "Thêm";
     this.buttonX5.Click += new System.EventHandler(this.buttonX5_Click);
     //
     // labelX5
     //
     this.labelX5.Location = new System.Drawing.Point(21, 117);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(83, 25);
     this.labelX5.TabIndex = 79;
     this.labelX5.Text = "Tỉnh:";
     //
     // labelX4
     //
     this.labelX4.Location = new System.Drawing.Point(363, 119);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(71, 25);
     this.labelX4.TabIndex = 78;
     this.labelX4.Text = "Cấp độ:";
     //
     // txt_capdo
     //
     //
     //
     //
     this.txt_capdo.Border.Class = "TextBoxBorder";
     this.txt_capdo.FocusHighlightEnabled = true;
     this.txt_capdo.Location = new System.Drawing.Point(438, 121);
     this.txt_capdo.Multiline = true;
     this.txt_capdo.Name = "txt_capdo";
     this.txt_capdo.Size = new System.Drawing.Size(374, 24);
     this.txt_capdo.TabIndex = 7;
     //
     // txt_codekh
     //
     //
     //
     //
     this.txt_codekh.Border.Class = "TextBoxBorder";
     this.txt_codekh.FocusHighlightEnabled = true;
     this.txt_codekh.Location = new System.Drawing.Point(106, 14);
     this.txt_codekh.Name = "txt_codekh";
     this.txt_codekh.Size = new System.Drawing.Size(193, 24);
     this.txt_codekh.TabIndex = 0;
     //
     // labelX3
     //
     this.labelX3.Location = new System.Drawing.Point(21, 10);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(70, 25);
     this.labelX3.TabIndex = 76;
     this.labelX3.Text = "Code KH";
     //
     // btnNhomKH
     //
     this.btnNhomKH.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnNhomKH.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnNhomKH.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnNhomKH.Location = new System.Drawing.Point(302, 83);
     this.btnNhomKH.Name = "btnNhomKH";
     this.btnNhomKH.Size = new System.Drawing.Size(25, 22);
     this.btnNhomKH.TabIndex = 74;
     this.btnNhomKH.Text = "+";
     this.btnNhomKH.Click += new System.EventHandler(this.btnNhomKH_Click);
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.SteelBlue;
     this.panel5.Controls.Add(this.cmdInDS);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel5.Location = new System.Drawing.Point(0, 197);
     this.panel5.Margin = new System.Windows.Forms.Padding(0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(874, 30);
     this.panel5.TabIndex = 70;
     //
     // cmdInDS
     //
     this.cmdInDS.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdInDS.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmdInDS.Location = new System.Drawing.Point(571, 2);
     this.cmdInDS.Margin = new System.Windows.Forms.Padding(0);
     this.cmdInDS.Name = "cmdInDS";
     this.cmdInDS.Size = new System.Drawing.Size(70, 27);
     this.cmdInDS.TabIndex = 54;
     this.cmdInDS.Text = "In DS";
     this.cmdInDS.Click += new System.EventHandler(this.cmdInDS_Click);
     //
     // labelX2
     //
     this.labelX2.Location = new System.Drawing.Point(21, 83);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(83, 25);
     this.labelX2.TabIndex = 72;
     this.labelX2.Text = "Nhóm:";
     //
     // cmb_nhom
     //
     this.cmb_nhom.DisplayMember = "Text";
     this.cmb_nhom.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmb_nhom.FocusHighlightEnabled = true;
     this.cmb_nhom.FormattingEnabled = true;
     this.cmb_nhom.ItemHeight = 18;
     this.cmb_nhom.Items.AddRange(new object[] {
     this.comboItem3,
     this.comboItem4});
     this.cmb_nhom.Location = new System.Drawing.Point(106, 83);
     this.cmb_nhom.Name = "cmb_nhom";
     this.cmb_nhom.Size = new System.Drawing.Size(193, 24);
     this.cmb_nhom.TabIndex = 2;
     //
     // comboItem3
     //
     this.comboItem3.Text = "Nhập hàng";
     //
     // comboItem4
     //
     this.comboItem4.Text = "Trả hàng";
     //
     // cmdTinhThanh
     //
     this.cmdTinhThanh.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdTinhThanh.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmdTinhThanh.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdTinhThanh.Location = new System.Drawing.Point(302, 120);
     this.cmdTinhThanh.Name = "cmdTinhThanh";
     this.cmdTinhThanh.Size = new System.Drawing.Size(25, 22);
     this.cmdTinhThanh.TabIndex = 71;
     this.cmdTinhThanh.Text = "+";
     this.cmdTinhThanh.Click += new System.EventHandler(this.cmdTinhThanh_Click);
     //
     // labelX1
     //
     this.labelX1.Location = new System.Drawing.Point(363, 60);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(53, 25);
     this.labelX1.TabIndex = 70;
     this.labelX1.Text = "Địa chỉ:";
     //
     // labelX27
     //
     this.labelX27.Location = new System.Drawing.Point(363, 12);
     this.labelX27.Name = "labelX27";
     this.labelX27.Size = new System.Drawing.Size(71, 25);
     this.labelX27.TabIndex = 67;
     this.labelX27.Text = "Điện thoại:";
     //
     // txt_diachi
     //
     //
     //
     //
     this.txt_diachi.Border.Class = "TextBoxBorder";
     this.txt_diachi.FocusHighlightEnabled = true;
     this.txt_diachi.Location = new System.Drawing.Point(438, 48);
     this.txt_diachi.Multiline = true;
     this.txt_diachi.Name = "txt_diachi";
     this.txt_diachi.Size = new System.Drawing.Size(374, 57);
     this.txt_diachi.TabIndex = 6;
     //
     // txt_tenkh
     //
     //
     //
     //
     this.txt_tenkh.Border.Class = "TextBoxBorder";
     this.txt_tenkh.FocusHighlightEnabled = true;
     this.txt_tenkh.Location = new System.Drawing.Point(106, 48);
     this.txt_tenkh.Name = "txt_tenkh";
     this.txt_tenkh.Size = new System.Drawing.Size(193, 24);
     this.txt_tenkh.TabIndex = 1;
     //
     // labelX26
     //
     this.labelX26.Location = new System.Drawing.Point(21, 45);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(70, 25);
     this.labelX26.TabIndex = 60;
     this.labelX26.Text = "Tên KH:";
     //
     // cmb_tinhthanh
     //
     this.cmb_tinhthanh.DisplayMember = "Text";
     this.cmb_tinhthanh.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmb_tinhthanh.FocusHighlightEnabled = true;
     this.cmb_tinhthanh.FormattingEnabled = true;
     this.cmb_tinhthanh.ItemHeight = 18;
     this.cmb_tinhthanh.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2});
     this.cmb_tinhthanh.Location = new System.Drawing.Point(106, 120);
     this.cmb_tinhthanh.Name = "cmb_tinhthanh";
     this.cmb_tinhthanh.Size = new System.Drawing.Size(193, 24);
     this.cmb_tinhthanh.TabIndex = 3;
     //
     // comboItem1
     //
     this.comboItem1.Text = "Nhập hàng";
     //
     // comboItem2
     //
     this.comboItem2.Text = "Trả hàng";
     //
     // labelX7
     //
     this.labelX7.Location = new System.Drawing.Point(364, 152);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(71, 25);
     this.labelX7.TabIndex = 84;
     this.labelX7.Text = "Hạn nợ:";
     //
     // labelX8
     //
     this.labelX8.Location = new System.Drawing.Point(520, 154);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(40, 25);
     this.labelX8.TabIndex = 86;
     this.labelX8.Text = "ngày";
     //
     // txtHanNo
     //
     //
     //
     //
     this.txtHanNo.BackgroundStyle.Class = "DateTimeInputBackground";
     this.txtHanNo.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.txtHanNo.Location = new System.Drawing.Point(438, 154);
     this.txtHanNo.Name = "txtHanNo";
     this.txtHanNo.ShowUpDown = true;
     this.txtHanNo.Size = new System.Drawing.Size(80, 24);
     this.txtHanNo.TabIndex = 87;
     //
     // frmKhachHang
     //
     this.ClientSize = new System.Drawing.Size(897, 577);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.groupPanel2);
     this.Name = "frmKhachHang";
     this.Text = "Quản lý khách hàng";
     this.Load += new System.EventHandler(this.frmKhachHang_Load);
     this.Controls.SetChildIndex(this.groupPanel2, 0);
     this.Controls.SetChildIndex(this.groupPanel1, 0);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtHanNo)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TagEditor));
     this.cboGroups = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.txtName = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.btnConfirm = new DevComponents.DotNetBar.ButtonX();
     this.btnCancel = new DevComponents.DotNetBar.ButtonX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.cpColor = new DevComponents.DotNetBar.ColorPickerButton();
     this.SuspendLayout();
     //
     // cboGroups
     //
     this.cboGroups.DisplayMember = "Text";
     this.cboGroups.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cboGroups.FormattingEnabled = true;
     this.cboGroups.ItemHeight = 19;
     this.cboGroups.Location = new System.Drawing.Point(45, 6);
     this.cboGroups.Name = "cboGroups";
     this.cboGroups.Size = new System.Drawing.Size(188, 25);
     this.cboGroups.TabIndex = 0;
     //
     // txtName
     //
     //
     //
     //
     this.txtName.Border.Class = "TextBoxBorder";
     this.txtName.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtName.Location = new System.Drawing.Point(45, 40);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(148, 25);
     this.txtName.TabIndex = 1;
     //
     // 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(7, 9);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(34, 21);
     this.labelX1.TabIndex = 3;
     this.labelX1.Text = "群組";
     //
     // btnConfirm
     //
     this.btnConfirm.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnConfirm.BackColor = System.Drawing.Color.Transparent;
     this.btnConfirm.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnConfirm.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnConfirm.Location = new System.Drawing.Point(99, 74);
     this.btnConfirm.Name = "btnConfirm";
     this.btnConfirm.Size = new System.Drawing.Size(64, 23);
     this.btnConfirm.TabIndex = 6;
     this.btnConfirm.Text = "確定";
     this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
     //
     // btnCancel
     //
     this.btnCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnCancel.BackColor = System.Drawing.Color.Transparent;
     this.btnCancel.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(169, 74);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(64, 23);
     this.btnCancel.TabIndex = 7;
     this.btnCancel.Text = "取消";
     //
     // labelX2
     //
     this.labelX2.AutoSize = true;
     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(7, 42);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(34, 21);
     this.labelX2.TabIndex = 8;
     this.labelX2.Text = "名稱";
     //
     // cpColor
     //
     this.cpColor.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cpColor.AutoExpandOnClick = true;
     this.cpColor.BackColor = System.Drawing.Color.Transparent;
     this.cpColor.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.cpColor.Image = ((System.Drawing.Image)(resources.GetObject("cpColor.Image")));
     this.cpColor.Location = new System.Drawing.Point(196, 40);
     this.cpColor.Name = "cpColor";
     this.cpColor.SelectedColorImageRectangle = new System.Drawing.Rectangle(2, 2, 12, 12);
     this.cpColor.Size = new System.Drawing.Size(37, 23);
     this.cpColor.TabIndex = 10;
     //
     // TagEditor
     //
     this.AcceptButton = this.btnConfirm;
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(243, 102);
     this.Controls.Add(this.cpColor);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnConfirm);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.txtName);
     this.Controls.Add(this.cboGroups);
     this.DoubleBuffered = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name = "TagEditor";
     this.RenderMode = DevComponents.DotNetBar.eRenderMode.Global;
     this.Text = "新增類別";
     this.Load += new System.EventHandler(this.TagInsert_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = 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 dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_ventas));
     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.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.btn_del = new System.Windows.Forms.Button();
     this.btn_add = new System.Windows.Forms.Button();
     this.label12 = new System.Windows.Forms.Label();
     this.telef = new System.Windows.Forms.TextBox();
     this.vendpername = new System.Windows.Forms.TextBox();
     this.vendperid = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.ctacte = new System.Windows.Forms.TextBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.txtvuelto = new System.Windows.Forms.TextBox();
     this.txtefectivo = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.valventa = new System.Windows.Forms.TextBox();
     this.dctoTda = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.lbl_valor = new System.Windows.Forms.Label();
     this.totimporte = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.totimpto = new System.Windows.Forms.TextBox();
     this.txt_valor = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.dctoTotal = new System.Windows.Forms.TextBox();
     this.label39 = new System.Windows.Forms.Label();
     this.dctoTarj = new System.Windows.Forms.TextBox();
     this.totdscto1 = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.bruto = new System.Windows.Forms.TextBox();
     this.label40 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.totpzas = new System.Windows.Forms.TextBox();
     this.txt_stock = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.itemsT = new System.Windows.Forms.TextBox();
     this.shapeContainer3 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape4 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.lineShape3 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.griddetallemov = new System.Windows.Forms.DataGridView();
     this.nostock = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.item = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.rollo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.unmed = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Ubicacion = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.stock_old = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.stock = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precventa = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.costoultimo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.costopromed = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidad = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidad_old = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precioanterior = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precunit = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.valor = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dtotimpto = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.importe = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.importfac = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dalmacaccionid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidadcta = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.direc = new System.Windows.Forms.TextBox();
     this.ctactename = new System.Windows.Forms.TextBox();
     this.nmruc = new System.Windows.Forms.TextBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.btn_refresh_tcamb = new DevExpress.XtraEditors.SimpleButton();
     this.chkfijar = new DevExpress.XtraEditors.CheckEdit();
     this.cbo_incprec = new System.Windows.Forms.ComboBox();
     this.label20 = new System.Windows.Forms.Label();
     this.lbltitulo = new System.Windows.Forms.Label();
     this.label41 = new System.Windows.Forms.Label();
     this.tipimptotasa = new System.Windows.Forms.ComboBox();
     this.fechdoc = new System.Windows.Forms.DateTimePicker();
     this.moneda = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.numdoc = new System.Windows.Forms.TextBox();
     this.tcamb = new System.Windows.Forms.TextBox();
     this.tipodoc = new System.Windows.Forms.ComboBox();
     this.serdoc = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_editar = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.btn_grabar = new System.Windows.Forms.ToolStripButton();
     this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.btnImprimirNoval = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_primero = new System.Windows.Forms.ToolStripButton();
     this.btn_anterior = new System.Windows.Forms.ToolStripButton();
     this.btn_siguiente = new System.Windows.Forms.ToolStripButton();
     this.btn_ultimo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_detanadir = new System.Windows.Forms.ToolStripButton();
     this.btn_deteliminar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_Calculadora = new System.Windows.Forms.ToolStripButton();
     this.btn_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_log = new System.Windows.Forms.ToolStripButton();
     this.btn_upload = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.btn_information = new System.Windows.Forms.ToolStripButton();
     this.tipoclieprov = new System.Windows.Forms.Label();
     this.lblruc = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape2 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.pdtimagen = new System.Windows.Forms.PictureBox();
     this.lstListaprec = new System.Windows.Forms.ComboBox();
     this.label22 = new System.Windows.Forms.Label();
     this.btnextraersunat = new DevExpress.XtraEditors.SimpleButton();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.canticombo = new DevExpress.XtraEditors.SpinEdit();
     this.label26 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.preccombo = new System.Windows.Forms.TextBox();
     this.princombo = new System.Windows.Forms.CheckBox();
     this.glosa = new System.Windows.Forms.TextBox();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.label23 = new System.Windows.Forms.Label();
     this.importtarj = new System.Windows.Forms.TextBox();
     this.lstTarjGroup = new System.Windows.Forms.ListBox();
     this.dgbtarjetas = new System.Windows.Forms.DataGridView();
     this._tarjetalogo = new System.Windows.Forms.DataGridViewImageColumn();
     this._tarjetaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetanum = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetaimpo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._ddnni = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.numnotac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.sernotac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipnotac = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.numguia = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.serguia = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipguia = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.numfac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.serfac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipfac = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.recep_fecha = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.recep_dni = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.recep_name = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.chkNC = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chkGR = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chkFA = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.fechnotac = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.fechguia = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.fechfac = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.label29 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.griddetallemov)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkfijar.Properties)).BeginInit();
     this.Botonera.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pdtimagen)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.canticombo.Properties)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgbtarjetas)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.recep_fecha)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechnotac)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechguia)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechfac)).BeginInit();
     this.SuspendLayout();
     //
     // btn_del
     //
     this.btn_del.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_del.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btn_del.Image = global::BapFormulariosNet.Properties.Resources.go_remove1;
     this.btn_del.Location = new System.Drawing.Point(226, 34);
     this.btn_del.Name = "btn_del";
     this.btn_del.Size = new System.Drawing.Size(21, 21);
     this.btn_del.TabIndex = 99;
     this.toolTip1.SetToolTip(this.btn_del, "Quitar");
     this.btn_del.UseVisualStyleBackColor = true;
     this.btn_del.Click += new System.EventHandler(this.btn_del_Click);
     //
     // btn_add
     //
     this.btn_add.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_add.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btn_add.Image = global::BapFormulariosNet.Properties.Resources.go_add1;
     this.btn_add.Location = new System.Drawing.Point(226, 12);
     this.btn_add.Name = "btn_add";
     this.btn_add.Size = new System.Drawing.Size(21, 21);
     this.btn_add.TabIndex = 98;
     this.toolTip1.SetToolTip(this.btn_add, "Agregar");
     this.btn_add.UseVisualStyleBackColor = true;
     this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(302, 128);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(34, 13);
     this.label12.TabIndex = 92;
     this.label12.Text = "Telef:";
     //
     // telef
     //
     this.telef.Location = new System.Drawing.Point(338, 125);
     this.telef.MaxLength = 100;
     this.telef.Name = "telef";
     this.telef.Size = new System.Drawing.Size(86, 21);
     this.telef.TabIndex = 83;
     //
     // vendpername
     //
     this.vendpername.Location = new System.Drawing.Point(100, 183);
     this.vendpername.Name = "vendpername";
     this.vendpername.Size = new System.Drawing.Size(351, 21);
     this.vendpername.TabIndex = 81;
     //
     // vendperid
     //
     this.vendperid.Location = new System.Drawing.Point(64, 183);
     this.vendperid.MaxLength = 8;
     this.vendperid.Name = "vendperid";
     this.vendperid.Size = new System.Drawing.Size(35, 21);
     this.vendperid.TabIndex = 80;
     this.vendperid.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.vendperid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.vendperid_KeyDown);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(3, 186);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(56, 13);
     this.label11.TabIndex = 78;
     this.label11.Text = "Vendedor:";
     //
     // ctacte
     //
     this.ctacte.Location = new System.Drawing.Point(64, 83);
     this.ctacte.MaxLength = 7;
     this.ctacte.Name = "ctacte";
     this.ctacte.Size = new System.Drawing.Size(53, 21);
     this.ctacte.TabIndex = 11;
     this.ctacte.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ctacte_KeyDown);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Teal;
     this.panel2.Controls.Add(this.txtvuelto);
     this.panel2.Controls.Add(this.txtefectivo);
     this.panel2.Controls.Add(this.label19);
     this.panel2.Controls.Add(this.label18);
     this.panel2.Controls.Add(this.label5);
     this.panel2.Controls.Add(this.label9);
     this.panel2.Controls.Add(this.valventa);
     this.panel2.Controls.Add(this.dctoTda);
     this.panel2.Controls.Add(this.label4);
     this.panel2.Controls.Add(this.lbl_valor);
     this.panel2.Controls.Add(this.totimporte);
     this.panel2.Controls.Add(this.label14);
     this.panel2.Controls.Add(this.totimpto);
     this.panel2.Controls.Add(this.txt_valor);
     this.panel2.Controls.Add(this.label3);
     this.panel2.Controls.Add(this.dctoTotal);
     this.panel2.Controls.Add(this.label39);
     this.panel2.Controls.Add(this.dctoTarj);
     this.panel2.Controls.Add(this.totdscto1);
     this.panel2.Controls.Add(this.label17);
     this.panel2.Controls.Add(this.label10);
     this.panel2.Controls.Add(this.bruto);
     this.panel2.Controls.Add(this.label40);
     this.panel2.Controls.Add(this.label7);
     this.panel2.Controls.Add(this.totpzas);
     this.panel2.Controls.Add(this.txt_stock);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Controls.Add(this.itemsT);
     this.panel2.Controls.Add(this.shapeContainer3);
     this.panel2.Location = new System.Drawing.Point(0, 480);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(989, 80);
     this.panel2.TabIndex = 73;
     //
     // txtvuelto
     //
     this.txtvuelto.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.txtvuelto.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtvuelto.Location = new System.Drawing.Point(905, 52);
     this.txtvuelto.Name = "txtvuelto";
     this.txtvuelto.Size = new System.Drawing.Size(75, 20);
     this.txtvuelto.TabIndex = 101;
     this.txtvuelto.Text = "00.00";
     this.txtvuelto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtefectivo
     //
     this.txtefectivo.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.txtefectivo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtefectivo.Location = new System.Drawing.Point(904, 29);
     this.txtefectivo.Name = "txtefectivo";
     this.txtefectivo.Size = new System.Drawing.Size(75, 20);
     this.txtefectivo.TabIndex = 100;
     this.txtefectivo.Text = "00.00";
     this.txtefectivo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtefectivo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtefectivo_KeyDown);
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.BackColor = System.Drawing.Color.Transparent;
     this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.ForeColor = System.Drawing.Color.White;
     this.label19.Location = new System.Drawing.Point(849, 56);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(51, 13);
     this.label19.TabIndex = 99;
     this.label19.Text = "Vuelto :";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.Color.White;
     this.label18.Location = new System.Drawing.Point(838, 33);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(62, 13);
     this.label18.TabIndex = 98;
     this.label18.Text = "Efectivo :";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.White;
     this.label5.Location = new System.Drawing.Point(669, 13);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(74, 13);
     this.label5.TabIndex = 81;
     this.label5.Text = "Val. Venta :";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.Color.White;
     this.label9.Location = new System.Drawing.Point(508, 12);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(68, 13);
     this.label9.TabIndex = 92;
     this.label9.Text = "Dcto.Tda :";
     //
     // valventa
     //
     this.valventa.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.valventa.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valventa.Location = new System.Drawing.Point(747, 8);
     this.valventa.Name = "valventa";
     this.valventa.Size = new System.Drawing.Size(75, 20);
     this.valventa.TabIndex = 80;
     this.valventa.Text = "100,000.00";
     this.valventa.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // dctoTda
     //
     this.dctoTda.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTda.Location = new System.Drawing.Point(577, 8);
     this.dctoTda.Name = "dctoTda";
     this.dctoTda.Size = new System.Drawing.Size(75, 20);
     this.dctoTda.TabIndex = 91;
     this.dctoTda.Text = "00.00";
     this.dctoTda.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.White;
     this.label4.Location = new System.Drawing.Point(677, 33);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(66, 13);
     this.label4.TabIndex = 83;
     this.label4.Text = "Impuesto :";
     //
     // lbl_valor
     //
     this.lbl_valor.AutoSize = true;
     this.lbl_valor.BackColor = System.Drawing.Color.Transparent;
     this.lbl_valor.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_valor.ForeColor = System.Drawing.Color.White;
     this.lbl_valor.Location = new System.Drawing.Point(173, 53);
     this.lbl_valor.Name = "lbl_valor";
     this.lbl_valor.Size = new System.Drawing.Size(72, 13);
     this.lbl_valor.TabIndex = 87;
     this.lbl_valor.Text = "Cost.Prom :";
     //
     // totimporte
     //
     this.totimporte.BackColor = System.Drawing.Color.YellowGreen;
     this.totimporte.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.totimporte.Location = new System.Drawing.Point(747, 50);
     this.totimporte.Name = "totimporte";
     this.totimporte.Size = new System.Drawing.Size(75, 21);
     this.totimporte.TabIndex = 84;
     this.totimporte.Text = "100,000.00";
     this.totimporte.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.BackColor = System.Drawing.Color.Transparent;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.ForeColor = System.Drawing.Color.White;
     this.label14.Location = new System.Drawing.Point(508, 32);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(68, 13);
     this.label14.TabIndex = 94;
     this.label14.Text = "Dcto.Tarj :";
     //
     // totimpto
     //
     this.totimpto.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.totimpto.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.totimpto.Location = new System.Drawing.Point(747, 29);
     this.totimpto.Name = "totimpto";
     this.totimpto.Size = new System.Drawing.Size(75, 20);
     this.totimpto.TabIndex = 82;
     this.totimpto.Text = "100,000.00";
     this.totimpto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_valor
     //
     this.txt_valor.Enabled = false;
     this.txt_valor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txt_valor.Location = new System.Drawing.Point(246, 49);
     this.txt_valor.Name = "txt_valor";
     this.txt_valor.Size = new System.Drawing.Size(75, 21);
     this.txt_valor.TabIndex = 86;
     this.txt_valor.Text = "100,000.00";
     this.txt_valor.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.White;
     this.label3.Location = new System.Drawing.Point(699, 54);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(44, 13);
     this.label3.TabIndex = 85;
     this.label3.Text = "Total :";
     //
     // dctoTotal
     //
     this.dctoTotal.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTotal.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTotal.Location = new System.Drawing.Point(577, 50);
     this.dctoTotal.Name = "dctoTotal";
     this.dctoTotal.Size = new System.Drawing.Size(75, 21);
     this.dctoTotal.TabIndex = 95;
     this.dctoTotal.Text = "00.00";
     this.dctoTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.BackColor = System.Drawing.Color.Transparent;
     this.label39.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label39.ForeColor = System.Drawing.Color.White;
     this.label39.Location = new System.Drawing.Point(170, 31);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(76, 13);
     this.label39.TabIndex = 79;
     this.label39.Text = "Descuento :";
     //
     // dctoTarj
     //
     this.dctoTarj.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTarj.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTarj.Location = new System.Drawing.Point(577, 29);
     this.dctoTarj.Name = "dctoTarj";
     this.dctoTarj.Size = new System.Drawing.Size(75, 20);
     this.dctoTarj.TabIndex = 93;
     this.dctoTarj.Text = "00.00";
     this.dctoTarj.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // totdscto1
     //
     this.totdscto1.Location = new System.Drawing.Point(246, 28);
     this.totdscto1.Name = "totdscto1";
     this.totdscto1.Size = new System.Drawing.Size(75, 21);
     this.totdscto1.TabIndex = 78;
     this.totdscto1.Text = "100,000.00";
     this.totdscto1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.BackColor = System.Drawing.Color.Transparent;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.ForeColor = System.Drawing.Color.White;
     this.label17.Location = new System.Drawing.Point(501, 53);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(75, 13);
     this.label17.TabIndex = 96;
     this.label17.Text = "Descto.TT :";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.ForeColor = System.Drawing.Color.White;
     this.label10.Location = new System.Drawing.Point(3, 51);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(71, 13);
     this.label10.TabIndex = 77;
     this.label10.Text = "Val. Bruto :";
     //
     // bruto
     //
     this.bruto.Location = new System.Drawing.Point(76, 48);
     this.bruto.Name = "bruto";
     this.bruto.Size = new System.Drawing.Size(75, 21);
     this.bruto.TabIndex = 76;
     this.bruto.Text = "100,000.00";
     this.bruto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.BackColor = System.Drawing.Color.Transparent;
     this.label40.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label40.ForeColor = System.Drawing.Color.White;
     this.label40.Location = new System.Drawing.Point(344, 52);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(48, 13);
     this.label40.TabIndex = 89;
     this.label40.Text = "Stock :";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.White;
     this.label7.Location = new System.Drawing.Point(6, 29);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(68, 13);
     this.label7.TabIndex = 75;
     this.label7.Text = "T. Piezas :";
     //
     // totpzas
     //
     this.totpzas.Location = new System.Drawing.Point(76, 26);
     this.totpzas.Name = "totpzas";
     this.totpzas.Size = new System.Drawing.Size(75, 21);
     this.totpzas.TabIndex = 74;
     this.totpzas.Text = "10,000";
     this.totpzas.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_stock
     //
     this.txt_stock.Enabled = false;
     this.txt_stock.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txt_stock.Location = new System.Drawing.Point(392, 48);
     this.txt_stock.Name = "txt_stock";
     this.txt_stock.Size = new System.Drawing.Size(75, 21);
     this.txt_stock.TabIndex = 88;
     this.txt_stock.Text = "100,000.00";
     this.txt_stock.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location = new System.Drawing.Point(29, 7);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(45, 13);
     this.label1.TabIndex = 73;
     this.label1.Text = "Items :";
     //
     // itemsT
     //
     this.itemsT.Location = new System.Drawing.Point(77, 4);
     this.itemsT.Name = "itemsT";
     this.itemsT.Size = new System.Drawing.Size(51, 21);
     this.itemsT.TabIndex = 72;
     this.itemsT.Text = "999";
     this.itemsT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // shapeContainer3
     //
     this.shapeContainer3.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer3.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer3.Name = "shapeContainer3";
     this.shapeContainer3.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape4,
     this.lineShape3});
     this.shapeContainer3.Size = new System.Drawing.Size(989, 80);
     this.shapeContainer3.TabIndex = 97;
     this.shapeContainer3.TabStop = false;
     //
     // lineShape4
     //
     this.lineShape4.BorderWidth = 2;
     this.lineShape4.Name = "lineShape4";
     this.lineShape4.X1 = 482;
     this.lineShape4.X2 = 482;
     this.lineShape4.Y1 = 10;
     this.lineShape4.Y2 = 71;
     //
     // lineShape3
     //
     this.lineShape3.BorderWidth = 2;
     this.lineShape3.Name = "lineShape3";
     this.lineShape3.X1 = 665;
     this.lineShape3.X2 = 665;
     this.lineShape3.Y1 = 10;
     this.lineShape3.Y2 = 71;
     //
     // griddetallemov
     //
     this.griddetallemov.AllowUserToAddRows = false;
     this.griddetallemov.AllowUserToDeleteRows = false;
     this.griddetallemov.AllowUserToResizeColumns = false;
     this.griddetallemov.AllowUserToResizeRows = false;
     this.griddetallemov.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Tahoma", 8.25F);
     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.griddetallemov.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.griddetallemov.ColumnHeadersHeight = 20;
     this.griddetallemov.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.nostock,
     this.item,
     this.productid,
     this.productname,
     this.rollo,
     this.unmed,
     this.Ubicacion,
     this.stock_old,
     this.stock,
     this.precventa,
     this.costoultimo,
     this.costopromed,
     this.cantidad,
     this.cantidad_old,
     this.precioanterior,
     this.precunit,
     this.valor,
     this.dtotimpto,
     this.importe,
     this.importfac,
     this.dalmacaccionid,
     this.cantidadcta});
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle8.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     dataGridViewCellStyle8.NullValue = null;
     dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.griddetallemov.DefaultCellStyle = dataGridViewCellStyle8;
     this.griddetallemov.Location = new System.Drawing.Point(1, 214);
     this.griddetallemov.MultiSelect = false;
     this.griddetallemov.Name = "griddetallemov";
     this.griddetallemov.RowHeadersVisible = false;
     this.griddetallemov.RowHeadersWidth = 10;
     dataGridViewCellStyle9.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle9.NullValue = null;
     this.griddetallemov.RowsDefaultCellStyle = dataGridViewCellStyle9;
     this.griddetallemov.RowTemplate.DefaultCellStyle.NullValue = null;
     this.griddetallemov.RowTemplate.Height = 20;
     this.griddetallemov.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.griddetallemov.Size = new System.Drawing.Size(989, 266);
     this.griddetallemov.TabIndex = 71;
     this.griddetallemov.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellValueChanged);
     this.griddetallemov.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellEndEdit);
     this.griddetallemov.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellEnter);
     this.griddetallemov.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellLeave);
     this.griddetallemov.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellValueChanged);
     this.griddetallemov.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.griddetallemov_EditingControlShowing);
     this.griddetallemov.KeyDown += new System.Windows.Forms.KeyEventHandler(this.griddetallemov_KeyDown);
     this.griddetallemov.KeyUp += new System.Windows.Forms.KeyEventHandler(this.griddetallemov_KeyUp);
     //
     // nostock
     //
     this.nostock.DataPropertyName = "nostock";
     this.nostock.FalseValue = "false";
     this.nostock.Frozen = true;
     this.nostock.HeaderText = "Aft";
     this.nostock.Name = "nostock";
     this.nostock.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.nostock.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.nostock.TrueValue = "true";
     this.nostock.Width = 20;
     //
     // item
     //
     this.item.DataPropertyName = "items";
     this.item.Frozen = true;
     this.item.HeaderText = "Items";
     this.item.Name = "item";
     this.item.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.item.Width = 40;
     //
     // productid
     //
     this.productid.DataPropertyName = "productid";
     this.productid.Frozen = true;
     this.productid.HeaderText = "Codigo";
     this.productid.Name = "productid";
     this.productid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // productname
     //
     this.productname.DataPropertyName = "productname";
     this.productname.Frozen = true;
     this.productname.HeaderText = "Producto";
     this.productname.Name = "productname";
     this.productname.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.productname.Width = 400;
     //
     // rollo
     //
     this.rollo.DataPropertyName = "rollo";
     this.rollo.Frozen = true;
     this.rollo.HeaderText = "Rollo";
     this.rollo.MaxInputLength = 10;
     this.rollo.Name = "rollo";
     this.rollo.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.rollo.Visible = false;
     this.rollo.Width = 80;
     //
     // unmed
     //
     this.unmed.DataPropertyName = "unmed";
     this.unmed.Frozen = true;
     this.unmed.HeaderText = "UnMed";
     this.unmed.Name = "unmed";
     this.unmed.Width = 48;
     //
     // Ubicacion
     //
     this.Ubicacion.DataPropertyName = "ubicacion";
     dataGridViewCellStyle2.NullValue = null;
     this.Ubicacion.DefaultCellStyle = dataGridViewCellStyle2;
     this.Ubicacion.Frozen = true;
     this.Ubicacion.HeaderText = "Ubicacion";
     this.Ubicacion.MaxInputLength = 4;
     this.Ubicacion.Name = "Ubicacion";
     this.Ubicacion.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.Ubicacion.Visible = false;
     //
     // stock_old
     //
     this.stock_old.DataPropertyName = "stock_old";
     this.stock_old.Frozen = true;
     this.stock_old.HeaderText = "stock_old";
     this.stock_old.Name = "stock_old";
     this.stock_old.Visible = false;
     //
     // stock
     //
     this.stock.DataPropertyName = "stock";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopRight;
     dataGridViewCellStyle3.NullValue = null;
     this.stock.DefaultCellStyle = dataGridViewCellStyle3;
     this.stock.Frozen = true;
     this.stock.HeaderText = "Stock";
     this.stock.Name = "stock";
     this.stock.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // precventa
     //
     this.precventa.DataPropertyName = "precventa";
     this.precventa.Frozen = true;
     this.precventa.HeaderText = "precventa";
     this.precventa.Name = "precventa";
     this.precventa.Visible = false;
     //
     // costoultimo
     //
     this.costoultimo.DataPropertyName = "costoultimo";
     this.costoultimo.Frozen = true;
     this.costoultimo.HeaderText = "costoultimo";
     this.costoultimo.Name = "costoultimo";
     this.costoultimo.Visible = false;
     //
     // costopromed
     //
     this.costopromed.DataPropertyName = "costopromed";
     this.costopromed.Frozen = true;
     this.costopromed.HeaderText = "costopromed";
     this.costopromed.Name = "costopromed";
     this.costopromed.Visible = false;
     //
     // cantidad
     //
     this.cantidad.DataPropertyName = "cantidad";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle4.NullValue = null;
     this.cantidad.DefaultCellStyle = dataGridViewCellStyle4;
     this.cantidad.Frozen = true;
     this.cantidad.HeaderText = "Cantidad";
     this.cantidad.Name = "cantidad";
     this.cantidad.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.cantidad.Width = 80;
     //
     // cantidad_old
     //
     this.cantidad_old.DataPropertyName = "cantidad_old";
     this.cantidad_old.Frozen = true;
     this.cantidad_old.HeaderText = "cantidad_old";
     this.cantidad_old.Name = "cantidad_old";
     this.cantidad_old.Visible = false;
     //
     // precioanterior
     //
     this.precioanterior.DataPropertyName = "precioanterior";
     this.precioanterior.Frozen = true;
     this.precioanterior.HeaderText = "precioanterior";
     this.precioanterior.Name = "precioanterior";
     this.precioanterior.Visible = false;
     //
     // precunit
     //
     this.precunit.DataPropertyName = "precunit";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle5.Format = "N2";
     dataGridViewCellStyle5.NullValue = null;
     this.precunit.DefaultCellStyle = dataGridViewCellStyle5;
     this.precunit.Frozen = true;
     this.precunit.HeaderText = "Precio";
     this.precunit.Name = "precunit";
     this.precunit.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.precunit.Width = 90;
     //
     // valor
     //
     this.valor.DataPropertyName = "valor";
     this.valor.HeaderText = "valor";
     this.valor.Name = "valor";
     this.valor.Visible = false;
     //
     // dtotimpto
     //
     this.dtotimpto.DataPropertyName = "totimpto";
     this.dtotimpto.HeaderText = "totimpto";
     this.dtotimpto.Name = "dtotimpto";
     this.dtotimpto.Visible = false;
     //
     // importe
     //
     this.importe.DataPropertyName = "importe";
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle6.Format = "N4";
     dataGridViewCellStyle6.NullValue = null;
     this.importe.DefaultCellStyle = dataGridViewCellStyle6;
     this.importe.HeaderText = "Importe";
     this.importe.Name = "importe";
     this.importe.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.importe.Visible = false;
     //
     // importfac
     //
     this.importfac.DataPropertyName = "importfac";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopRight;
     dataGridViewCellStyle7.Format = "N2";
     dataGridViewCellStyle7.NullValue = null;
     this.importfac.DefaultCellStyle = dataGridViewCellStyle7;
     this.importfac.HeaderText = "Importe";
     this.importfac.Name = "importfac";
     this.importfac.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dalmacaccionid
     //
     this.dalmacaccionid.DataPropertyName = "almacaccionid";
     this.dalmacaccionid.HeaderText = "almacaccionid";
     this.dalmacaccionid.Name = "dalmacaccionid";
     this.dalmacaccionid.Visible = false;
     //
     // cantidadcta
     //
     this.cantidadcta.DataPropertyName = "cantidadcta";
     this.cantidadcta.HeaderText = "cantidadcta";
     this.cantidadcta.Name = "cantidadcta";
     this.cantidadcta.Visible = false;
     //
     // direc
     //
     this.direc.Location = new System.Drawing.Point(64, 125);
     this.direc.Name = "direc";
     this.direc.Size = new System.Drawing.Size(233, 21);
     this.direc.TabIndex = 23;
     //
     // ctactename
     //
     this.ctactename.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.ctactename.Location = new System.Drawing.Point(64, 104);
     this.ctactename.Name = "ctactename";
     this.ctactename.Size = new System.Drawing.Size(387, 21);
     this.ctactename.TabIndex = 21;
     //
     // nmruc
     //
     this.nmruc.Location = new System.Drawing.Point(160, 82);
     this.nmruc.MaxLength = 11;
     this.nmruc.Name = "nmruc";
     this.nmruc.Size = new System.Drawing.Size(90, 21);
     this.nmruc.TabIndex = 12;
     this.nmruc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.nmruc_KeyDown);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.btn_refresh_tcamb);
     this.panel1.Controls.Add(this.chkfijar);
     this.panel1.Controls.Add(this.cbo_incprec);
     this.panel1.Controls.Add(this.label20);
     this.panel1.Controls.Add(this.lbltitulo);
     this.panel1.Controls.Add(this.label41);
     this.panel1.Controls.Add(this.tipimptotasa);
     this.panel1.Controls.Add(this.fechdoc);
     this.panel1.Controls.Add(this.moneda);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.numdoc);
     this.panel1.Controls.Add(this.tcamb);
     this.panel1.Controls.Add(this.tipodoc);
     this.panel1.Controls.Add(this.serdoc);
     this.panel1.Controls.Add(this.label21);
     this.panel1.Controls.Add(this.label6);
     this.panel1.Controls.Add(this.label13);
     this.panel1.Controls.Add(this.label8);
     this.panel1.Controls.Add(this.label15);
     this.panel1.Controls.Add(this.label16);
     this.panel1.Location = new System.Drawing.Point(0, 29);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(993, 45);
     this.panel1.TabIndex = 2;
     //
     // btn_refresh_tcamb
     //
     this.btn_refresh_tcamb.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_refresh_tcamb.Image = ((System.Drawing.Image)(resources.GetObject("btn_refresh_tcamb.Image")));
     this.btn_refresh_tcamb.Location = new System.Drawing.Point(643, 19);
     this.btn_refresh_tcamb.Name = "btn_refresh_tcamb";
     this.btn_refresh_tcamb.Size = new System.Drawing.Size(22, 22);
     this.btn_refresh_tcamb.TabIndex = 23;
     this.btn_refresh_tcamb.ToolTip = "Refrescar Tipo de Cambio";
     this.btn_refresh_tcamb.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_refresh_tcamb.Click += new System.EventHandler(this.btn_refresh_tcamb_Click);
     //
     // chkfijar
     //
     this.chkfijar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.chkfijar.Location = new System.Drawing.Point(137, 21);
     this.chkfijar.Name = "chkfijar";
     this.chkfijar.Properties.Caption = "Fijar";
     this.chkfijar.Size = new System.Drawing.Size(51, 19);
     this.chkfijar.TabIndex = 22;
     this.chkfijar.CheckedChanged += new System.EventHandler(this.chkfijar_CheckedChanged);
     //
     // cbo_incprec
     //
     this.cbo_incprec.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.cbo_incprec.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbo_incprec.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.cbo_incprec.FormattingEnabled = true;
     this.cbo_incprec.ImeMode = System.Windows.Forms.ImeMode.Disable;
     this.cbo_incprec.Items.AddRange(new object[] {
     "SI",
     "NO"});
     this.cbo_incprec.Location = new System.Drawing.Point(946, 20);
     this.cbo_incprec.Name = "cbo_incprec";
     this.cbo_incprec.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.cbo_incprec.Size = new System.Drawing.Size(40, 21);
     this.cbo_incprec.TabIndex = 21;
     this.cbo_incprec.SelectedIndexChanged += new System.EventHandler(this.cbo_incprec_SelectedIndexChanged);
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.BackColor = System.Drawing.Color.Transparent;
     this.label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.ForeColor = System.Drawing.Color.White;
     this.label20.Location = new System.Drawing.Point(947, 5);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(39, 13);
     this.label20.TabIndex = 20;
     this.label20.Text = "Inclu.";
     //
     // lbltitulo
     //
     this.lbltitulo.AutoSize = true;
     this.lbltitulo.BackColor = System.Drawing.Color.Transparent;
     this.lbltitulo.Font = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbltitulo.ForeColor = System.Drawing.Color.White;
     this.lbltitulo.Location = new System.Drawing.Point(422, 9);
     this.lbltitulo.Name = "lbltitulo";
     this.lbltitulo.Size = new System.Drawing.Size(151, 31);
     this.lbltitulo.TabIndex = 19;
     this.lbltitulo.Text = "FACTURA";
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.BackColor = System.Drawing.Color.Transparent;
     this.label41.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label41.ForeColor = System.Drawing.Color.White;
     this.label41.Location = new System.Drawing.Point(928, 22);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(21, 17);
     this.label41.TabIndex = 18;
     this.label41.Text = "%";
     //
     // tipimptotasa
     //
     this.tipimptotasa.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.tipimptotasa.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipimptotasa.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.tipimptotasa.FormattingEnabled = true;
     this.tipimptotasa.ImeMode = System.Windows.Forms.ImeMode.Disable;
     this.tipimptotasa.Location = new System.Drawing.Point(887, 20);
     this.tipimptotasa.Name = "tipimptotasa";
     this.tipimptotasa.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.tipimptotasa.Size = new System.Drawing.Size(40, 21);
     this.tipimptotasa.TabIndex = 17;
     this.tipimptotasa.SelectedIndexChanged += new System.EventHandler(this.tipimptotasa_SelectedIndexChanged);
     //
     // fechdoc
     //
     this.fechdoc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechdoc.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechdoc.Location = new System.Drawing.Point(669, 21);
     this.fechdoc.Name = "fechdoc";
     this.fechdoc.Size = new System.Drawing.Size(84, 20);
     this.fechdoc.TabIndex = 7;
     this.fechdoc.Value = new System.DateTime(2014, 4, 14, 0, 0, 0, 0);
     this.fechdoc.ValueChanged += new System.EventHandler(this.fechdoc_ValueChanged);
     //
     // moneda
     //
     this.moneda.AutoCompleteCustomSource.AddRange(new string[] {
     "FA"});
     this.moneda.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.moneda.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.moneda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.moneda.FormattingEnabled = true;
     this.moneda.Location = new System.Drawing.Point(756, 20);
     this.moneda.Name = "moneda";
     this.moneda.Size = new System.Drawing.Size(70, 21);
     this.moneda.TabIndex = 8;
     this.moneda.SelectedIndexChanged += new System.EventHandler(this.moneda_SelectedIndexChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.White;
     this.label2.Location = new System.Drawing.Point(16, 6);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(100, 13);
     this.label2.TabIndex = 3;
     this.label2.Text = "Tipo Documento";
     //
     // numdoc
     //
     this.numdoc.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.numdoc.Location = new System.Drawing.Point(231, 20);
     this.numdoc.MaxLength = 10;
     this.numdoc.Name = "numdoc";
     this.numdoc.Size = new System.Drawing.Size(87, 21);
     this.numdoc.TabIndex = 8;
     this.numdoc.Text = "000000001";
     this.numdoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.numdoc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numdoc_KeyDown);
     this.numdoc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.numdoc_KeyPress);
     //
     // tcamb
     //
     this.tcamb.Location = new System.Drawing.Point(828, 20);
     this.tcamb.Name = "tcamb";
     this.tcamb.Size = new System.Drawing.Size(56, 21);
     this.tcamb.TabIndex = 9;
     this.tcamb.Text = "3.420";
     this.tcamb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // tipodoc
     //
     this.tipodoc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipodoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)), true);
     this.tipodoc.FormattingEnabled = true;
     this.tipodoc.Location = new System.Drawing.Point(7, 20);
     this.tipodoc.Name = "tipodoc";
     this.tipodoc.Size = new System.Drawing.Size(128, 20);
     this.tipodoc.TabIndex = 4;
     this.tipodoc.SelectedIndexChanged += new System.EventHandler(this.tipodoc_SelectedIndexChanged);
     //
     // serdoc
     //
     this.serdoc.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.serdoc.Location = new System.Drawing.Point(189, 20);
     this.serdoc.MaxLength = 5;
     this.serdoc.Name = "serdoc";
     this.serdoc.Size = new System.Drawing.Size(40, 21);
     this.serdoc.TabIndex = 4;
     this.serdoc.Text = "2014";
     this.serdoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.serdoc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.serdoc_KeyPress);
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.BackColor = System.Drawing.Color.Transparent;
     this.label21.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.ForeColor = System.Drawing.Color.White;
     this.label21.Location = new System.Drawing.Point(761, 5);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(52, 13);
     this.label21.TabIndex = 12;
     this.label21.Text = "Moneda";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.White;
     this.label6.Location = new System.Drawing.Point(193, 5);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(36, 13);
     this.label6.TabIndex = 5;
     this.label6.Text = "Serie";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.BackColor = System.Drawing.Color.Transparent;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.Color.White;
     this.label13.Location = new System.Drawing.Point(883, 5);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(58, 13);
     this.label13.TabIndex = 16;
     this.label13.Text = "Impuesto";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.White;
     this.label8.Location = new System.Drawing.Point(247, 5);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(50, 13);
     this.label8.TabIndex = 7;
     this.label8.Text = "Número";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.BackColor = System.Drawing.Color.Transparent;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.Color.White;
     this.label15.Location = new System.Drawing.Point(826, 5);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(60, 13);
     this.label15.TabIndex = 14;
     this.label15.Text = "T Cambio";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.White;
     this.label16.Location = new System.Drawing.Point(688, 5);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(42, 13);
     this.label16.TabIndex = 10;
     this.label16.Text = "Fecha";
     //
     // Botonera
     //
     this.Botonera.BackColor = System.Drawing.SystemColors.Control;
     this.Botonera.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_cancelar,
     this.btn_grabar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.btnImprimirNoval,
     this.toolStripSeparator1,
     this.btn_primero,
     this.btn_anterior,
     this.btn_siguiente,
     this.btn_ultimo,
     this.toolStripSeparator2,
     this.btn_detanadir,
     this.btn_deteliminar,
     this.toolStripSeparator3,
     this.btn_Calculadora,
     this.btn_clave,
     this.btn_log,
     this.btn_upload,
     this.btn_salir,
     this.btn_information});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(993, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     this.Botonera.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.Botonera_ItemClicked);
     //
     // btn_nuevo
     //
     this.btn_nuevo.BackColor = System.Drawing.Color.Transparent;
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.Image")));
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.Color.Transparent;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.ToolTipText = "Nuevo (Ctrl + N)";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_editar
     //
     this.btn_editar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_editar.Image = global::BapFormulariosNet.Properties.Resources.Edit;
     this.btn_editar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_editar.Name = "btn_editar";
     this.btn_editar.Size = new System.Drawing.Size(26, 26);
     this.btn_editar.Text = "Editar";
     this.btn_editar.Click += new System.EventHandler(this.btn_editar_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // btn_grabar
     //
     this.btn_grabar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_grabar.Image = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Image")));
     this.btn_grabar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_grabar.Name = "btn_grabar";
     this.btn_grabar.Size = new System.Drawing.Size(26, 26);
     this.btn_grabar.Text = "Grabar";
     this.btn_grabar.ToolTipText = "Grabar (Ctrl + G)";
     this.btn_grabar.Click += new System.EventHandler(this.btn_grabar_Click);
     //
     // btn_eliminar
     //
     this.btn_eliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_eliminar.Image = global::BapFormulariosNet.Properties.Resources.btn_eliminar20;
     this.btn_eliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_eliminar.Name = "btn_eliminar";
     this.btn_eliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_eliminar.Text = "Eliminar";
     this.btn_eliminar.Click += new System.EventHandler(this.btn_eliminar_Click);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.Image")));
     this.btn_imprimir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(24, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.ToolTipText = "Impresion Valorizada";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // btnImprimirNoval
     //
     this.btnImprimirNoval.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnImprimirNoval.Image = global::BapFormulariosNet.Properties.Resources.agt_print;
     this.btnImprimirNoval.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnImprimirNoval.Name = "btnImprimirNoval";
     this.btnImprimirNoval.Size = new System.Drawing.Size(26, 26);
     this.btnImprimirNoval.ToolTipText = "Impresion No Valorizada";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_primero
     //
     this.btn_primero.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_primero.Image = global::BapFormulariosNet.Properties.Resources.go_first_g;
     this.btn_primero.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_primero.Name = "btn_primero";
     this.btn_primero.Size = new System.Drawing.Size(26, 26);
     this.btn_primero.Text = "Primero";
     this.btn_primero.Click += new System.EventHandler(this.btn_primero_Click);
     //
     // btn_anterior
     //
     this.btn_anterior.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_anterior.Image = global::BapFormulariosNet.Properties.Resources.go_previous_g;
     this.btn_anterior.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_anterior.Name = "btn_anterior";
     this.btn_anterior.Size = new System.Drawing.Size(26, 26);
     this.btn_anterior.Text = "Anterior";
     this.btn_anterior.Click += new System.EventHandler(this.btn_anterior_Click);
     //
     // btn_siguiente
     //
     this.btn_siguiente.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_siguiente.Image = global::BapFormulariosNet.Properties.Resources.go_next_g;
     this.btn_siguiente.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_siguiente.Name = "btn_siguiente";
     this.btn_siguiente.Size = new System.Drawing.Size(26, 26);
     this.btn_siguiente.Text = "Siguiente";
     this.btn_siguiente.Click += new System.EventHandler(this.btn_siguiente_Click);
     //
     // btn_ultimo
     //
     this.btn_ultimo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_ultimo.Image = global::BapFormulariosNet.Properties.Resources.go_last_g;
     this.btn_ultimo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_ultimo.Name = "btn_ultimo";
     this.btn_ultimo.Size = new System.Drawing.Size(26, 26);
     this.btn_ultimo.Text = "Ultimo";
     this.btn_ultimo.Click += new System.EventHandler(this.btn_ultimo_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 29);
     //
     // btn_detanadir
     //
     this.btn_detanadir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_detanadir.Image = global::BapFormulariosNet.Properties.Resources.go_add;
     this.btn_detanadir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_detanadir.Name = "btn_detanadir";
     this.btn_detanadir.Size = new System.Drawing.Size(26, 26);
     this.btn_detanadir.Text = "Añadir";
     this.btn_detanadir.Click += new System.EventHandler(this.btn_detanadir_Click);
     //
     // btn_deteliminar
     //
     this.btn_deteliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_deteliminar.Image = global::BapFormulariosNet.Properties.Resources.go_remove1;
     this.btn_deteliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_deteliminar.Name = "btn_deteliminar";
     this.btn_deteliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_deteliminar.Text = "Quitar";
     this.btn_deteliminar.Click += new System.EventHandler(this.btn_deteliminar_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 29);
     //
     // btn_Calculadora
     //
     this.btn_Calculadora.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_Calculadora.Image = global::BapFormulariosNet.Properties.Resources.go_calc2;
     this.btn_Calculadora.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_Calculadora.Name = "btn_Calculadora";
     this.btn_Calculadora.Size = new System.Drawing.Size(26, 26);
     this.btn_Calculadora.Text = "Calculadora";
     this.btn_Calculadora.Click += new System.EventHandler(this.btn_Calculadora_Click);
     //
     // btn_clave
     //
     this.btn_clave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_clave.Image = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.Size = new System.Drawing.Size(26, 26);
     this.btn_clave.Text = "Clave Administrador";
     this.btn_clave.Click += new System.EventHandler(this.btn_clave_Click);
     //
     // btn_log
     //
     this.btn_log.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_log.Image = ((System.Drawing.Image)(resources.GetObject("btn_log.Image")));
     this.btn_log.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_log.Name = "btn_log";
     this.btn_log.Size = new System.Drawing.Size(26, 26);
     this.btn_log.Text = "Auditoria";
     this.btn_log.ToolTipText = "Auditoria";
     this.btn_log.Click += new System.EventHandler(this.btn_log_Click);
     //
     // btn_upload
     //
     this.btn_upload.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_upload.Image = global::BapFormulariosNet.Properties.Resources.btn_barcode;
     this.btn_upload.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_upload.Name = "btn_upload";
     this.btn_upload.Size = new System.Drawing.Size(26, 26);
     this.btn_upload.Text = "Leer Codigo Barras";
     this.btn_upload.ToolTipText = "Cargar";
     this.btn_upload.Click += new System.EventHandler(this.btn_upload_Click);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // btn_information
     //
     this.btn_information.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_information.Image = global::BapFormulariosNet.Properties.Resources.go_information;
     this.btn_information.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_information.Name = "btn_information";
     this.btn_information.Size = new System.Drawing.Size(26, 26);
     this.btn_information.Text = "Informacion";
     this.btn_information.Click += new System.EventHandler(this.btn_information_Click);
     //
     // tipoclieprov
     //
     this.tipoclieprov.AutoSize = true;
     this.tipoclieprov.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tipoclieprov.Location = new System.Drawing.Point(6, 86);
     this.tipoclieprov.Name = "tipoclieprov";
     this.tipoclieprov.Size = new System.Drawing.Size(42, 13);
     this.tipoclieprov.TabIndex = 18;
     this.tipoclieprov.Text = "Cliente:";
     //
     // lblruc
     //
     this.lblruc.AutoSize = true;
     this.lblruc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblruc.Location = new System.Drawing.Point(123, 85);
     this.lblruc.Name = "lblruc";
     this.lblruc.Size = new System.Drawing.Size(33, 13);
     this.lblruc.TabIndex = 75;
     this.lblruc.Text = "RUC:";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label24.Location = new System.Drawing.Point(6, 128);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(55, 13);
     this.label24.TabIndex = 22;
     this.label24.Text = "Dirección:";
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape2});
     this.shapeContainer1.Size = new System.Drawing.Size(993, 560);
     this.shapeContainer1.TabIndex = 82;
     this.shapeContainer1.TabStop = false;
     //
     // lineShape2
     //
     this.lineShape2.BorderWidth = 2;
     this.lineShape2.Name = "lineShape2";
     this.lineShape2.SelectionColor = System.Drawing.SystemColors.HotTrack;
     this.lineShape2.X1 = 2;
     this.lineShape2.X2 = 453;
     this.lineShape2.Y1 = 176;
     this.lineShape2.Y2 = 176;
     //
     // pdtimagen
     //
     this.pdtimagen.BackColor = System.Drawing.Color.Transparent;
     this.pdtimagen.Image = global::BapFormulariosNet.Properties.Resources.anulado;
     this.pdtimagen.Location = new System.Drawing.Point(378, 286);
     this.pdtimagen.Name = "pdtimagen";
     this.pdtimagen.Size = new System.Drawing.Size(262, 135);
     this.pdtimagen.TabIndex = 96;
     this.pdtimagen.TabStop = false;
     //
     // lstListaprec
     //
     this.lstListaprec.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.lstListaprec.FormattingEnabled = true;
     this.lstListaprec.Location = new System.Drawing.Point(873, 99);
     this.lstListaprec.Name = "lstListaprec";
     this.lstListaprec.Size = new System.Drawing.Size(113, 21);
     this.lstListaprec.TabIndex = 98;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.Location = new System.Drawing.Point(870, 78);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(85, 13);
     this.label22.TabIndex = 99;
     this.label22.Text = "Lista de Precios:";
     //
     // btnextraersunat
     //
     this.btnextraersunat.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnextraersunat.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnextraersunat.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnextraersunat.Image = global::BapFormulariosNet.Properties.Resources.go_sunat1;
     this.btnextraersunat.Location = new System.Drawing.Point(256, 80);
     this.btnextraersunat.Name = "btnextraersunat";
     this.btnextraersunat.Size = new System.Drawing.Size(90, 23);
     this.btnextraersunat.TabIndex = 100;
     this.btnextraersunat.ToolTip = "Extrae Datos";
     this.btnextraersunat.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btnextraersunat.Click += new System.EventHandler(this.btnextraersunat_Click);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(466, 76);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage3;
     this.xtraTabControl1.Size = new System.Drawing.Size(401, 137);
     this.xtraTabControl1.TabIndex = 101;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3});
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.canticombo);
     this.xtraTabPage3.Controls.Add(this.label26);
     this.xtraTabPage3.Controls.Add(this.label25);
     this.xtraTabPage3.Controls.Add(this.preccombo);
     this.xtraTabPage3.Controls.Add(this.princombo);
     this.xtraTabPage3.Controls.Add(this.glosa);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage3.Text = "Observaciones";
     //
     // canticombo
     //
     this.canticombo.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.canticombo.Location = new System.Drawing.Point(295, 30);
     this.canticombo.Name = "canticombo";
     this.canticombo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.canticombo.Properties.MaxValue = new decimal(new int[] {
     100,
     0,
     0,
     0});
     this.canticombo.Size = new System.Drawing.Size(67, 20);
     this.canticombo.TabIndex = 87;
     this.canticombo.EditValueChanged += new System.EventHandler(this.canticombo_EditValueChanged);
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(239, 64);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(55, 13);
     this.label26.TabIndex = 86;
     this.label26.Text = "Prec/Unit:";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(210, 34);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(84, 13);
     this.label25.TabIndex = 85;
     this.label25.Text = "Nro de Combos:";
     //
     // preccombo
     //
     this.preccombo.Location = new System.Drawing.Point(295, 60);
     this.preccombo.Name = "preccombo";
     this.preccombo.ReadOnly = true;
     this.preccombo.Size = new System.Drawing.Size(67, 21);
     this.preccombo.TabIndex = 83;
     this.preccombo.Text = "0.00";
     this.preccombo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // princombo
     //
     this.princombo.AutoSize = true;
     this.princombo.Location = new System.Drawing.Point(219, 9);
     this.princombo.Name = "princombo";
     this.princombo.Size = new System.Drawing.Size(151, 17);
     this.princombo.TabIndex = 81;
     this.princombo.Text = "Imprimir en Detalle Combo";
     this.princombo.UseVisualStyleBackColor = true;
     this.princombo.CheckedChanged += new System.EventHandler(this.princombo_CheckedChanged);
     //
     // glosa
     //
     this.glosa.Location = new System.Drawing.Point(18, 9);
     this.glosa.Multiline = true;
     this.glosa.Name = "glosa";
     this.glosa.Size = new System.Drawing.Size(186, 72);
     this.glosa.TabIndex = 80;
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.label23);
     this.xtraTabPage1.Controls.Add(this.importtarj);
     this.xtraTabPage1.Controls.Add(this.btn_del);
     this.xtraTabPage1.Controls.Add(this.btn_add);
     this.xtraTabPage1.Controls.Add(this.lstTarjGroup);
     this.xtraTabPage1.Controls.Add(this.dgbtarjetas);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage1.Text = "Pago con Tarjeta";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(73, 83);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(50, 13);
     this.label23.TabIndex = 101;
     this.label23.Text = "Total >>";
     //
     // importtarj
     //
     this.importtarj.Location = new System.Drawing.Point(129, 80);
     this.importtarj.MaxLength = 8;
     this.importtarj.Name = "importtarj";
     this.importtarj.Size = new System.Drawing.Size(69, 21);
     this.importtarj.TabIndex = 100;
     this.importtarj.Text = "0.00";
     this.importtarj.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lstTarjGroup
     //
     this.lstTarjGroup.FormattingEnabled = true;
     this.lstTarjGroup.Location = new System.Drawing.Point(253, 12);
     this.lstTarjGroup.Name = "lstTarjGroup";
     this.lstTarjGroup.Size = new System.Drawing.Size(116, 56);
     this.lstTarjGroup.TabIndex = 97;
     //
     // dgbtarjetas
     //
     this.dgbtarjetas.AllowUserToAddRows = false;
     this.dgbtarjetas.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgbtarjetas.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this._tarjetalogo,
     this._tarjetaid,
     this._tarjetaname,
     this._tarjetanum,
     this._tarjetaimpo,
     this._ddnni});
     this.dgbtarjetas.Location = new System.Drawing.Point(5, 12);
     this.dgbtarjetas.Name = "dgbtarjetas";
     this.dgbtarjetas.ReadOnly = true;
     this.dgbtarjetas.RowHeadersVisible = false;
     this.dgbtarjetas.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgbtarjetas.Size = new System.Drawing.Size(214, 68);
     this.dgbtarjetas.TabIndex = 96;
     //
     // _tarjetalogo
     //
     this._tarjetalogo.DataPropertyName = "tarjetalogo";
     this._tarjetalogo.HeaderText = "TarJ";
     this._tarjetalogo.ImageLayout = System.Windows.Forms.DataGridViewImageCellLayout.Zoom;
     this._tarjetalogo.Name = "_tarjetalogo";
     this._tarjetalogo.ReadOnly = true;
     this._tarjetalogo.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this._tarjetalogo.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this._tarjetalogo.Width = 40;
     //
     // _tarjetaid
     //
     this._tarjetaid.DataPropertyName = "tarjetaid";
     dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this._tarjetaid.DefaultCellStyle = dataGridViewCellStyle10;
     this._tarjetaid.HeaderText = "Cod";
     this._tarjetaid.Name = "_tarjetaid";
     this._tarjetaid.ReadOnly = true;
     this._tarjetaid.Visible = false;
     this._tarjetaid.Width = 30;
     //
     // _tarjetaname
     //
     this._tarjetaname.DataPropertyName = "tarjetaname";
     this._tarjetaname.HeaderText = "Nom";
     this._tarjetaname.Name = "_tarjetaname";
     this._tarjetaname.ReadOnly = true;
     this._tarjetaname.Visible = false;
     //
     // _tarjetanum
     //
     this._tarjetanum.DataPropertyName = "tarjetanume";
     dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     this._tarjetanum.DefaultCellStyle = dataGridViewCellStyle11;
     this._tarjetanum.HeaderText = "Aprob.";
     this._tarjetanum.Name = "_tarjetanum";
     this._tarjetanum.ReadOnly = true;
     this._tarjetanum.Width = 80;
     //
     // _tarjetaimpo
     //
     this._tarjetaimpo.DataPropertyName = "tarjetaimpo";
     dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle12.Format = "N2";
     dataGridViewCellStyle12.NullValue = null;
     this._tarjetaimpo.DefaultCellStyle = dataGridViewCellStyle12;
     this._tarjetaimpo.HeaderText = "Importe";
     this._tarjetaimpo.Name = "_tarjetaimpo";
     this._tarjetaimpo.ReadOnly = true;
     this._tarjetaimpo.Width = 80;
     //
     // _ddnni
     //
     this._ddnni.DataPropertyName = "ddnni";
     this._ddnni.HeaderText = "Dni";
     this._ddnni.Name = "_ddnni";
     this._ddnni.ReadOnly = true;
     this._ddnni.Visible = false;
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.numnotac);
     this.xtraTabPage2.Controls.Add(this.sernotac);
     this.xtraTabPage2.Controls.Add(this.tipnotac);
     this.xtraTabPage2.Controls.Add(this.numguia);
     this.xtraTabPage2.Controls.Add(this.serguia);
     this.xtraTabPage2.Controls.Add(this.tipguia);
     this.xtraTabPage2.Controls.Add(this.numfac);
     this.xtraTabPage2.Controls.Add(this.serfac);
     this.xtraTabPage2.Controls.Add(this.tipfac);
     this.xtraTabPage2.Controls.Add(this.recep_fecha);
     this.xtraTabPage2.Controls.Add(this.recep_dni);
     this.xtraTabPage2.Controls.Add(this.recep_name);
     this.xtraTabPage2.Controls.Add(this.chkNC);
     this.xtraTabPage2.Controls.Add(this.chkGR);
     this.xtraTabPage2.Controls.Add(this.chkFA);
     this.xtraTabPage2.Controls.Add(this.fechnotac);
     this.xtraTabPage2.Controls.Add(this.fechguia);
     this.xtraTabPage2.Controls.Add(this.fechfac);
     this.xtraTabPage2.Controls.Add(this.label29);
     this.xtraTabPage2.Controls.Add(this.label28);
     this.xtraTabPage2.Controls.Add(this.label27);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage2.Text = "Docs Referencia";
     //
     // numnotac
     //
     //
     //
     //
     this.numnotac.Border.Class = "TextBoxBorder";
     this.numnotac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numnotac.ButtonCustom.Tooltip = "";
     this.numnotac.ButtonCustom2.Tooltip = "";
     this.numnotac.Location = new System.Drawing.Point(88, 60);
     this.numnotac.MaxLength = 10;
     this.numnotac.Name = "numnotac";
     this.numnotac.PreventEnterBeep = true;
     this.numnotac.Size = new System.Drawing.Size(79, 21);
     this.numnotac.TabIndex = 94;
     //
     // sernotac
     //
     //
     //
     //
     this.sernotac.Border.Class = "TextBoxBorder";
     this.sernotac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.sernotac.ButtonCustom.Tooltip = "";
     this.sernotac.ButtonCustom2.Tooltip = "";
     this.sernotac.Location = new System.Drawing.Point(49, 60);
     this.sernotac.MaxLength = 4;
     this.sernotac.Name = "sernotac";
     this.sernotac.PreventEnterBeep = true;
     this.sernotac.Size = new System.Drawing.Size(37, 21);
     this.sernotac.TabIndex = 93;
     //
     // tipnotac
     //
     this.tipnotac.DisplayMember = "Text";
     this.tipnotac.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipnotac.FormattingEnabled = true;
     this.tipnotac.ItemHeight = 15;
     this.tipnotac.Items.AddRange(new object[] {
     this.comboItem5});
     this.tipnotac.Location = new System.Drawing.Point(6, 60);
     this.tipnotac.Name = "tipnotac";
     this.tipnotac.Size = new System.Drawing.Size(40, 21);
     this.tipnotac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipnotac.TabIndex = 92;
     this.tipnotac.Text = "NC";
     //
     // comboItem5
     //
     this.comboItem5.Text = "NC";
     //
     // numguia
     //
     //
     //
     //
     this.numguia.Border.Class = "TextBoxBorder";
     this.numguia.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numguia.ButtonCustom.Tooltip = "";
     this.numguia.ButtonCustom2.Tooltip = "";
     this.numguia.Location = new System.Drawing.Point(88, 36);
     this.numguia.MaxLength = 10;
     this.numguia.Name = "numguia";
     this.numguia.PreventEnterBeep = true;
     this.numguia.Size = new System.Drawing.Size(79, 21);
     this.numguia.TabIndex = 91;
     //
     // serguia
     //
     //
     //
     //
     this.serguia.Border.Class = "TextBoxBorder";
     this.serguia.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.serguia.ButtonCustom.Tooltip = "";
     this.serguia.ButtonCustom2.Tooltip = "";
     this.serguia.Location = new System.Drawing.Point(49, 36);
     this.serguia.MaxLength = 4;
     this.serguia.Name = "serguia";
     this.serguia.PreventEnterBeep = true;
     this.serguia.Size = new System.Drawing.Size(37, 21);
     this.serguia.TabIndex = 90;
     //
     // tipguia
     //
     this.tipguia.DisplayMember = "Text";
     this.tipguia.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipguia.FormattingEnabled = true;
     this.tipguia.ItemHeight = 15;
     this.tipguia.Items.AddRange(new object[] {
     this.comboItem3});
     this.tipguia.Location = new System.Drawing.Point(6, 36);
     this.tipguia.Name = "tipguia";
     this.tipguia.Size = new System.Drawing.Size(40, 21);
     this.tipguia.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipguia.TabIndex = 89;
     this.tipguia.Text = "GR";
     //
     // comboItem3
     //
     this.comboItem3.Text = "GR";
     //
     // numfac
     //
     //
     //
     //
     this.numfac.Border.Class = "TextBoxBorder";
     this.numfac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numfac.ButtonCustom.Tooltip = "";
     this.numfac.ButtonCustom2.Tooltip = "";
     this.numfac.Location = new System.Drawing.Point(88, 12);
     this.numfac.MaxLength = 10;
     this.numfac.Name = "numfac";
     this.numfac.PreventEnterBeep = true;
     this.numfac.Size = new System.Drawing.Size(79, 21);
     this.numfac.TabIndex = 88;
     this.numfac.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numfac_KeyDown);
     //
     // serfac
     //
     //
     //
     //
     this.serfac.Border.Class = "TextBoxBorder";
     this.serfac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.serfac.ButtonCustom.Tooltip = "";
     this.serfac.ButtonCustom2.Tooltip = "";
     this.serfac.Location = new System.Drawing.Point(49, 12);
     this.serfac.MaxLength = 4;
     this.serfac.Name = "serfac";
     this.serfac.PreventEnterBeep = true;
     this.serfac.Size = new System.Drawing.Size(37, 21);
     this.serfac.TabIndex = 87;
     this.serfac.KeyDown += new System.Windows.Forms.KeyEventHandler(this.serfac_KeyDown);
     //
     // tipfac
     //
     this.tipfac.DisplayMember = "Text";
     this.tipfac.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipfac.FormattingEnabled = true;
     this.tipfac.ItemHeight = 15;
     this.tipfac.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2});
     this.tipfac.Location = new System.Drawing.Point(6, 12);
     this.tipfac.Name = "tipfac";
     this.tipfac.Size = new System.Drawing.Size(40, 21);
     this.tipfac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipfac.TabIndex = 86;
     //
     // comboItem1
     //
     this.comboItem1.Text = "FA";
     //
     // comboItem2
     //
     this.comboItem2.Text = "BV";
     //
     // recep_fecha
     //
     //
     //
     //
     this.recep_fecha.BackgroundStyle.Class = "DateTimeInputBackground";
     this.recep_fecha.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.ButtonClear.Tooltip = "";
     this.recep_fecha.ButtonCustom.Tooltip = "";
     this.recep_fecha.ButtonCustom2.Tooltip = "";
     this.recep_fecha.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.recep_fecha.ButtonDropDown.Tooltip = "";
     this.recep_fecha.ButtonDropDown.Visible = true;
     this.recep_fecha.ButtonFreeText.Tooltip = "";
     this.recep_fecha.IsPopupCalendarOpen = false;
     this.recep_fecha.Location = new System.Drawing.Point(297, 79);
     //
     //
     //
     this.recep_fecha.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.recep_fecha.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.recep_fecha.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.recep_fecha.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.recep_fecha.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.TodayButtonVisible = true;
     this.recep_fecha.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.recep_fecha.Name = "recep_fecha";
     this.recep_fecha.Size = new System.Drawing.Size(82, 21);
     this.recep_fecha.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.recep_fecha.TabIndex = 85;
     //
     // recep_dni
     //
     //
     //
     //
     this.recep_dni.Border.Class = "TextBoxBorder";
     this.recep_dni.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_dni.ButtonCustom.Tooltip = "";
     this.recep_dni.ButtonCustom2.Tooltip = "";
     this.recep_dni.Location = new System.Drawing.Point(297, 58);
     this.recep_dni.MaxLength = 8;
     this.recep_dni.Name = "recep_dni";
     this.recep_dni.PreventEnterBeep = true;
     this.recep_dni.Size = new System.Drawing.Size(83, 21);
     this.recep_dni.TabIndex = 84;
     //
     // recep_name
     //
     //
     //
     //
     this.recep_name.Border.Class = "TextBoxBorder";
     this.recep_name.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_name.ButtonCustom.Tooltip = "";
     this.recep_name.ButtonCustom2.Tooltip = "";
     this.recep_name.Location = new System.Drawing.Point(269, 21);
     this.recep_name.MaxLength = 100;
     this.recep_name.Multiline = true;
     this.recep_name.Name = "recep_name";
     this.recep_name.PreventEnterBeep = true;
     this.recep_name.Size = new System.Drawing.Size(111, 36);
     this.recep_name.TabIndex = 83;
     //
     // chkNC
     //
     //
     //
     //
     this.chkNC.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkNC.Location = new System.Drawing.Point(247, 58);
     this.chkNC.Name = "chkNC";
     this.chkNC.Size = new System.Drawing.Size(16, 23);
     this.chkNC.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkNC.TabIndex = 82;
     this.chkNC.CheckedChanged += new System.EventHandler(this.chkNC_CheckedChanged);
     //
     // chkGR
     //
     //
     //
     //
     this.chkGR.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkGR.Location = new System.Drawing.Point(247, 36);
     this.chkGR.Name = "chkGR";
     this.chkGR.Size = new System.Drawing.Size(16, 23);
     this.chkGR.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkGR.TabIndex = 81;
     this.chkGR.CheckedChanged += new System.EventHandler(this.chkGR_CheckedChanged);
     //
     // chkFA
     //
     //
     //
     //
     this.chkFA.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkFA.Location = new System.Drawing.Point(247, 12);
     this.chkFA.Name = "chkFA";
     this.chkFA.Size = new System.Drawing.Size(16, 23);
     this.chkFA.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkFA.TabIndex = 80;
     this.chkFA.CheckedChanged += new System.EventHandler(this.chkFA_CheckedChanged);
     //
     // fechnotac
     //
     //
     //
     //
     this.fechnotac.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechnotac.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.ButtonClear.Tooltip = "";
     this.fechnotac.ButtonCustom.Tooltip = "";
     this.fechnotac.ButtonCustom2.Tooltip = "";
     this.fechnotac.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechnotac.ButtonDropDown.Tooltip = "";
     this.fechnotac.ButtonDropDown.Visible = true;
     this.fechnotac.ButtonFreeText.Tooltip = "";
     this.fechnotac.IsPopupCalendarOpen = false;
     this.fechnotac.Location = new System.Drawing.Point(168, 59);
     //
     //
     //
     this.fechnotac.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechnotac.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechnotac.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechnotac.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechnotac.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.TodayButtonVisible = true;
     this.fechnotac.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechnotac.Name = "fechnotac";
     this.fechnotac.Size = new System.Drawing.Size(82, 21);
     this.fechnotac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechnotac.TabIndex = 79;
     //
     // fechguia
     //
     //
     //
     //
     this.fechguia.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechguia.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.ButtonClear.Tooltip = "";
     this.fechguia.ButtonCustom.Tooltip = "";
     this.fechguia.ButtonCustom2.Tooltip = "";
     this.fechguia.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechguia.ButtonDropDown.Tooltip = "";
     this.fechguia.ButtonDropDown.Visible = true;
     this.fechguia.ButtonFreeText.Tooltip = "";
     this.fechguia.IsPopupCalendarOpen = false;
     this.fechguia.Location = new System.Drawing.Point(168, 36);
     //
     //
     //
     this.fechguia.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechguia.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechguia.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechguia.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechguia.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.TodayButtonVisible = true;
     this.fechguia.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechguia.Name = "fechguia";
     this.fechguia.Size = new System.Drawing.Size(82, 21);
     this.fechguia.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechguia.TabIndex = 78;
     //
     // fechfac
     //
     //
     //
     //
     this.fechfac.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechfac.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.ButtonClear.Tooltip = "";
     this.fechfac.ButtonCustom.Tooltip = "";
     this.fechfac.ButtonCustom2.Tooltip = "";
     this.fechfac.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechfac.ButtonDropDown.Tooltip = "";
     this.fechfac.ButtonDropDown.Visible = true;
     this.fechfac.ButtonFreeText.Tooltip = "";
     this.fechfac.IsPopupCalendarOpen = false;
     this.fechfac.Location = new System.Drawing.Point(168, 12);
     //
     //
     //
     this.fechfac.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechfac.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechfac.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechfac.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechfac.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.TodayButtonVisible = true;
     this.fechfac.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechfac.Name = "fechfac";
     this.fechfac.Size = new System.Drawing.Size(82, 21);
     this.fechfac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechfac.TabIndex = 77;
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(225, 84);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(73, 13);
     this.label29.TabIndex = 72;
     this.label29.Text = "Fecha Recep:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(269, 58);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(29, 13);
     this.label28.TabIndex = 69;
     this.label28.Text = "DNI:";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(271, 9);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(55, 13);
     this.label27.TabIndex = 67;
     this.label27.Text = "Receptor:";
     //
     // Frm_ventas
     //
     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.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(993, 560);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.btnextraersunat);
     this.Controls.Add(this.label22);
     this.Controls.Add(this.lstListaprec);
     this.Controls.Add(this.pdtimagen);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.telef);
     this.Controls.Add(this.vendpername);
     this.Controls.Add(this.vendperid);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.ctacte);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.griddetallemov);
     this.Controls.Add(this.direc);
     this.Controls.Add(this.ctactename);
     this.Controls.Add(this.nmruc);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.Botonera);
     this.Controls.Add(this.tipoclieprov);
     this.Controls.Add(this.lblruc);
     this.Controls.Add(this.label24);
     this.Controls.Add(this.shapeContainer1);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_ventas";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Modulo de Ventas";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Frm_movimiento_FormClosing);
     this.Load += new System.EventHandler(this.Frm_ventas_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_movimiento_KeyDown);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.griddetallemov)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkfijar.Properties)).EndInit();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pdtimagen)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage3.ResumeLayout(false);
     this.xtraTabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.canticombo.Properties)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgbtarjetas)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     this.xtraTabPage2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.recep_fecha)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechnotac)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechguia)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechfac)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        private void AddStatInfo()
        {
            if (addCtr == 11)
                return;

            LabelX newStatTypeLabelX = new LabelX();
            newStatTypeLabelX.BackColor = Color.Transparent;

            lastLocY += 35;

            //Stat Type Label

            newStatTypeLabelX.BackgroundStyle.Class = "";
            newStatTypeLabelX.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            newStatTypeLabelX.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            newStatTypeLabelX.Location = new System.Drawing.Point(13, lastLocY);
            newStatTypeLabelX.Name = "statTypeLabelX" + addCtr;
            newStatTypeLabelX.Size = new System.Drawing.Size(59, 23);
            newStatTypeLabelX.TabIndex = 8 + addCtr;
            newStatTypeLabelX.Text = "Stat Type";

            addButtonX.Location = new Point(addButtonX.Location.X, lastLocY + 25);

            itemStatsGroupPanel.Controls.Add(newStatTypeLabelX);

            //Stat Type ComboBoxEx

            DevComponents.DotNetBar.Controls.ComboBoxEx newStatTypeComboBoxEx = new DevComponents.DotNetBar.Controls.ComboBoxEx();

            foreach (DevComponents.Editors.ComboItem item in statTypeComboBoxEx1.Items)
            {
                newStatTypeComboBoxEx.Items.Add(item.Text);
            }

            newStatTypeComboBoxEx.DropDownStyle = ComboBoxStyle.DropDownList;
            newStatTypeComboBoxEx.DisplayMember = "Text";
            newStatTypeComboBoxEx.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            newStatTypeComboBoxEx.FormattingEnabled = true;
            newStatTypeComboBoxEx.ItemHeight = 14;
            newStatTypeComboBoxEx.Location = new System.Drawing.Point(79, lastLocY);
            newStatTypeComboBoxEx.Name = "statTypeComboBoxEx" + addCtr;
            newStatTypeComboBoxEx.Size = new System.Drawing.Size(152, 20);
            newStatTypeComboBoxEx.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            newStatTypeComboBoxEx.TabIndex = 9 + addCtr;

            itemStatsGroupPanel.Controls.Add(newStatTypeComboBoxEx);

            //Stat Type Value Label

            LabelX newStatValueLabelX = new LabelX();

            newStatValueLabelX.BackColor = Color.Transparent;
            newStatValueLabelX.BackgroundStyle.Class = "";
            newStatValueLabelX.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            newStatValueLabelX.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            newStatValueLabelX.Location = new System.Drawing.Point(237, lastLocY);
            newStatValueLabelX.Name = "statTypeValueLabelX" + addCtr;
            newStatValueLabelX.Size = new System.Drawing.Size(39, 23);
            newStatValueLabelX.TabIndex = 10 + addCtr;
            newStatValueLabelX.Text = "Value";

            itemStatsGroupPanel.Controls.Add(newStatValueLabelX);

            //Stat Type Value IntegerInput

            DevComponents.Editors.IntegerInput newStatTypeValueIntegerInput = new DevComponents.Editors.IntegerInput();

            newStatTypeValueIntegerInput.BackgroundStyle.Class = "DateTimeInputBackground";
            newStatTypeValueIntegerInput.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            newStatTypeValueIntegerInput.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
            newStatTypeValueIntegerInput.Location = new System.Drawing.Point(283, lastLocY);
            newStatTypeValueIntegerInput.Name = "statTypeValueIntegerInput1";
            newStatTypeValueIntegerInput.ShowUpDown = true;
            newStatTypeValueIntegerInput.Size = new System.Drawing.Size(80, 20);
            newStatTypeValueIntegerInput.TabIndex = 11;

            itemStatsGroupPanel.Controls.Add(newStatTypeValueIntegerInput);

            addCtr++;
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.crystalReportViewer1 = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
     this.panelTheKho = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.dkpTo = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.dpkfrom = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.cmbKho = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.cmbTenThuoc = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.cmdTheKho = new DevComponents.DotNetBar.ButtonX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.panelTheKho.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dkpTo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dpkfrom)).BeginInit();
     this.SuspendLayout();
     //
     // crystalReportViewer1
     //
     this.crystalReportViewer1.ActiveViewIndex = -1;
     this.crystalReportViewer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.crystalReportViewer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.crystalReportViewer1.Location = new System.Drawing.Point(0, 95);
     this.crystalReportViewer1.Name = "crystalReportViewer1";
     this.crystalReportViewer1.SelectionFormula = "";
     this.crystalReportViewer1.Size = new System.Drawing.Size(992, 651);
     this.crystalReportViewer1.TabIndex = 73;
     this.crystalReportViewer1.ViewTimeSelectionFormula = "";
     //
     // panelTheKho
     //
     this.panelTheKho.BackColor = System.Drawing.Color.Transparent;
     this.panelTheKho.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelTheKho.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelTheKho.Controls.Add(this.dkpTo);
     this.panelTheKho.Controls.Add(this.dpkfrom);
     this.panelTheKho.Controls.Add(this.labelX5);
     this.panelTheKho.Controls.Add(this.cmbKho);
     this.panelTheKho.Controls.Add(this.labelX4);
     this.panelTheKho.Controls.Add(this.cmbTenThuoc);
     this.panelTheKho.Controls.Add(this.cmdTheKho);
     this.panelTheKho.Controls.Add(this.labelX2);
     this.panelTheKho.Controls.Add(this.labelX3);
     this.panelTheKho.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelTheKho.Location = new System.Drawing.Point(0, 35);
     this.panelTheKho.Name = "panelTheKho";
     this.panelTheKho.Size = new System.Drawing.Size(992, 60);
     //
     //
     //
     this.panelTheKho.Style.BackColor = System.Drawing.Color.Transparent;
     this.panelTheKho.Style.BackColor2 = System.Drawing.Color.Transparent;
     this.panelTheKho.Style.BackColorGradientAngle = 90;
     this.panelTheKho.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.panelTheKho.Style.BorderBottomWidth = 1;
     this.panelTheKho.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelTheKho.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.panelTheKho.Style.BorderLeftWidth = 1;
     this.panelTheKho.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.panelTheKho.Style.BorderRightWidth = 1;
     this.panelTheKho.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.panelTheKho.Style.BorderTopWidth = 1;
     this.panelTheKho.Style.CornerDiameter = 4;
     this.panelTheKho.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.panelTheKho.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.panelTheKho.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelTheKho.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.panelTheKho.TabIndex = 74;
     this.panelTheKho.Text = "Thông tin";
     //
     // dkpTo
     //
     //
     //
     //
     this.dkpTo.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dkpTo.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dkpTo.ButtonDropDown.Visible = true;
     this.dkpTo.Location = new System.Drawing.Point(695, 8);
     //
     //
     //
     this.dkpTo.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dkpTo.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dkpTo.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dkpTo.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dkpTo.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dkpTo.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dkpTo.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dkpTo.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dkpTo.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dkpTo.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dkpTo.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dkpTo.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dkpTo.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dkpTo.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dkpTo.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dkpTo.MonthCalendar.TodayButtonVisible = true;
     this.dkpTo.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dkpTo.Name = "dkpTo";
     this.dkpTo.Size = new System.Drawing.Size(96, 24);
     this.dkpTo.TabIndex = 78;
     //
     // dpkfrom
     //
     //
     //
     //
     this.dpkfrom.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dpkfrom.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dpkfrom.ButtonDropDown.Visible = true;
     this.dpkfrom.Location = new System.Drawing.Point(522, 8);
     //
     //
     //
     this.dpkfrom.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dpkfrom.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dpkfrom.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dpkfrom.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dpkfrom.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dpkfrom.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dpkfrom.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dpkfrom.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dpkfrom.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dpkfrom.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dpkfrom.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dpkfrom.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dpkfrom.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dpkfrom.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dpkfrom.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dpkfrom.MonthCalendar.TodayButtonVisible = true;
     this.dpkfrom.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dpkfrom.Name = "dpkfrom";
     this.dpkfrom.Size = new System.Drawing.Size(96, 24);
     this.dpkfrom.TabIndex = 77;
     //
     // labelX5
     //
     this.labelX5.Location = new System.Drawing.Point(312, 9);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(33, 25);
     this.labelX5.TabIndex = 76;
     this.labelX5.Text = "Kho:";
     //
     // cmbKho
     //
     this.cmbKho.DisplayMember = "Text";
     this.cmbKho.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbKho.FormattingEnabled = true;
     this.cmbKho.ItemHeight = 18;
     this.cmbKho.Location = new System.Drawing.Point(351, 9);
     this.cmbKho.Name = "cmbKho";
     this.cmbKho.Size = new System.Drawing.Size(103, 24);
     this.cmbKho.TabIndex = 75;
     //
     // labelX4
     //
     this.labelX4.Location = new System.Drawing.Point(30, 5);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(92, 25);
     this.labelX4.TabIndex = 74;
     this.labelX4.Text = "Khách hàng:";
     //
     // cmbTenThuoc
     //
     this.cmbTenThuoc.DisplayMember = "Text";
     this.cmbTenThuoc.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbTenThuoc.FormattingEnabled = true;
     this.cmbTenThuoc.ItemHeight = 18;
     this.cmbTenThuoc.Location = new System.Drawing.Point(128, 8);
     this.cmbTenThuoc.Name = "cmbTenThuoc";
     this.cmbTenThuoc.Size = new System.Drawing.Size(165, 24);
     this.cmbTenThuoc.TabIndex = 73;
     //
     // cmdTheKho
     //
     this.cmdTheKho.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdTheKho.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.cmdTheKho.Location = new System.Drawing.Point(795, 7);
     this.cmdTheKho.Name = "cmdTheKho";
     this.cmdTheKho.Size = new System.Drawing.Size(75, 23);
     this.cmdTheKho.TabIndex = 72;
     this.cmdTheKho.Text = "Báo cáo";
     //
     // labelX2
     //
     this.labelX2.Location = new System.Drawing.Point(623, 9);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(66, 25);
     this.labelX2.TabIndex = 70;
     this.labelX2.Text = "đến ngày:";
     //
     // labelX3
     //
     this.labelX3.Location = new System.Drawing.Point(455, 9);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(61, 25);
     this.labelX3.TabIndex = 60;
     this.labelX3.Text = "Từ ngày:";
     //
     // frmRptKH
     //
     this.ClientSize = new System.Drawing.Size(992, 746);
     this.Controls.Add(this.crystalReportViewer1);
     this.Controls.Add(this.panelTheKho);
     this.Name = "frmRptKH";
     this.Text = "Report KH";
     this.Controls.SetChildIndex(this.panelTheKho, 0);
     this.Controls.SetChildIndex(this.crystalReportViewer1, 0);
     this.panelTheKho.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dkpTo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dpkfrom)).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 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);
 }