Exemplo n.º 1
0
        //初始化label内容  changed by xisheng 添加自动调整label的宽度,然后调整
        private void initLableButton(int labcount)
        {
            m_FieldCount = labcount;

            int Top = 17;

            for (int i = 0; i < labcount; i++)
            {
                m_LabelY[i]          = new Label();
                m_LabelY[i].Top      = Top;
                m_LabelY[i].Left     = 23;
                m_LabelY[i].AutoSize = true;
                this.Controls.Add(m_LabelY[i]);
                Top += 30;
            }

            Top = 17;
            for (int i = 0; i < labcount; i++)
            {
                m_TextBoxX[i]        = new DevComponents.DotNetBar.Controls.TextBoxX();
                m_TextBoxX[i].Top    = Top;
                m_TextBoxX[i].Left   = 75;
                m_TextBoxX[i].Width  = 142;
                m_TextBoxX[i].Height = 20;
                this.Controls.Add(m_TextBoxX[i]);
                Top += 30;
            }
            this.buttonXOK.Top     = m_LabelY[labcount - 1].Top + 40;
            this.buttonXCancel.Top = m_LabelY[labcount - 1].Top + 40;
            this.Height            = this.buttonXOK.Top + 60;
        }
        private void AddTopRow()
        {
            DevComponents.AdvTree.Node node = new DevComponents.AdvTree.Node("Name");

            for (int i = 0; i < MappedEntities.Count; i++)
            {
                DevComponents.AdvTree.Cell cell = new DevComponents.AdvTree.Cell();
                DevComponents.DotNetBar.Controls.TextBoxX tb = new DevComponents.DotNetBar.Controls.TextBoxX();
                tb.Text            = MappedEntities[i].Name;
                cell.HostedControl = tb;
                node.Cells.Add(cell);
            }
            advTree1.Nodes.Add(node);
            node = new DevComponents.AdvTree.Node("Is Base?");

            for (int i = 0; i < MappedEntities.Count; i++)
            {
                DevComponents.AdvTree.Cell           cell     = new DevComponents.AdvTree.Cell();
                DevComponents.DotNetBar.CheckBoxItem checkbox = new DevComponents.DotNetBar.CheckBoxItem();
                cell.HostedItem          = checkbox;
                checkbox.CheckedChanged += new DevComponents.DotNetBar.CheckBoxChangeEventHandler(IsBaseCheckbox_CheckedChanged);
                node.Cells.Add(cell);
            }
            advTree1.Nodes.Add(node);
            node = new DevComponents.AdvTree.Node("Discriminator Value");

            for (int i = 0; i < MappedEntities.Count; i++)
            {
                DevComponents.AdvTree.Cell cell = new DevComponents.AdvTree.Cell();
                DevComponents.DotNetBar.Controls.TextBoxX tb = new DevComponents.DotNetBar.Controls.TextBoxX();
                cell.HostedControl = tb;
                node.Cells.Add(cell);
            }
            advTree1.Nodes.Add(node);
        }
        private bool CheckTextIsValue2(ErrorProvider errorProvider, DevComponents.DotNetBar.Controls.TextBoxX respiratory, string p)
        {
            if (!string.IsNullOrEmpty(respiratory.Text))
            {
                if (respiratory.Text == "免測")
                {
                    errorProvider.SetError(respiratory, "");
                    return(true);
                }

                double x;
                if (!double.TryParse(respiratory.Text, out x))
                {
                    errorProvider.SetError(respiratory, p);
                    return(false);
                }
                else
                {
                    errorProvider.SetError(respiratory, "");
                    return(true);
                }
            }
            else
            {
                errorProvider.SetError(respiratory, "");
                return(true);
            }
        }
        private bool CheckTextIsValue(ErrorProvider errorProvider, DevComponents.DotNetBar.Controls.TextBoxX SitAndReach, string p)
        {
            if (!string.IsNullOrEmpty(SitAndReach.Text))
            {
                if (SitAndReach.Text == "免測")
                {
                    errorProvider.SetError(SitAndReach, "");
                    return(true);
                }

                int x;
                if (!int.TryParse(SitAndReach.Text, out x))
                {
                    errorProvider.SetError(SitAndReach, p);
                    return(false);
                }
                else
                {
                    errorProvider.SetError(SitAndReach, "");
                    return(true);
                }
            }
            else
            {
                errorProvider.SetError(SitAndReach, "");
                return(true);
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnOK = new DevComponents.DotNetBar.ButtonX();
     this.btnCancel = new DevComponents.DotNetBar.ButtonX();
     this.txtMessage = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.SuspendLayout();
     //
     // btnOK
     //
     this.btnOK.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnOK.BackColor = System.Drawing.Color.Transparent;
     this.btnOK.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnOK.Location = new System.Drawing.Point(68, 47);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(60, 20);
     this.btnOK.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnOK.TabIndex = 0;
     this.btnOK.Text = "確定";
     this.btnOK.Click += new System.EventHandler(this.btnOK_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(134, 47);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(60, 20);
     this.btnCancel.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnCancel.TabIndex = 1;
     this.btnCancel.Text = "取消";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // txtMessage
     //
     //
     //
     //
     this.txtMessage.Border.Class = "TextBoxBorder";
     this.txtMessage.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtMessage.Location = new System.Drawing.Point(12, 12);
     this.txtMessage.Name = "txtMessage";
     this.txtMessage.Size = new System.Drawing.Size(181, 25);
     this.txtMessage.TabIndex = 2;
     //
     // frmInputBox
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(210, 80);
     this.Controls.Add(this.txtMessage);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnOK);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name = "frmInputBox";
     this.Text = "frmInputBox";
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器
 /// 修改這個方法的內容。
 /// </summary>
 private void InitializeComponent()
 {
     this.txtMsg = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.SuspendLayout();
     //
     // txtMsg
     //
     //
     //
     //
     this.txtMsg.Border.Class = "TextBoxBorder";
     this.txtMsg.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtMsg.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtMsg.Location = new System.Drawing.Point(0, 0);
     this.txtMsg.Multiline = true;
     this.txtMsg.Name = "txtMsg";
     this.txtMsg.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.txtMsg.Size = new System.Drawing.Size(550, 150);
     this.txtMsg.TabIndex = 1;
     //
     // DetailContentImprovedMsg
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.txtMsg);
     this.Name = "DetailContentImprovedMsg";
     this.Size = new System.Drawing.Size(550, 150);
     this.ResumeLayout(false);
 }
Exemplo n.º 7
0
 public void StokGuncelle(DevComponents.DotNetBar.Controls.TextBoxX txt_stokadi, DevComponents.DotNetBar.Controls.ComboBoxEx cmBox_StokGrup, DevComponents.DotNetBar.Controls.ComboBoxEx cmBox_AltGrup, DevComponents.DotNetBar.Controls.TextBoxX txt_AlisF, DevComponents.DotNetBar.Controls.TextBoxX txt_adet, DevComponents.DotNetBar.Controls.TextBoxX txt_SatisF, DevComponents.DotNetBar.Controls.TextBoxX txt_KDVdahil, DevComponents.DotNetBar.Controls.ComboBoxEx cmBox_KDV, DevComponents.DotNetBar.Controls.TextBoxX txt_OzelKod, DevComponents.DotNetBar.Controls.TextBoxX txt_OrjKod, DevComponents.DotNetBar.Controls.TextBoxX txt_Barkod, int x)
 {
     MessageBoxEx.EnableGlass         = false;
     MessageBoxEx.MessageBoxTextColor = System.Drawing.Color.Black;
     if (txt_stokadi.Text != "" && cmBox_StokGrup.SelectedItem != null && cmBox_AltGrup.SelectedItem != null && txt_AlisF.Text != "" && txt_adet.Text != "" && txt_SatisF.Text != "" && txt_KDVdahil.Text != "" && cmBox_KDV.SelectedItem != null && txt_OrjKod.Text.Length == 13 && txt_Barkod.Text.Length == 13)
     {
         baglanti.Open();
         cmd = new SqlCommand("UPDATE StokList SET StokAdi=@ad, StokGrup=@ugrup, AltGrup=@agrup, AlisFiyati=@afiyat, Adet=@adet, SatisFiyati=@sfiyat, KDVli_Fiyat=@kdvliF, KDV=@kdv, OzelKod=@ozel, OrjKod=@orj, Barkod=@bar WHERE StokID=@id", baglanti);
         cmd.Parameters.Add("ad", txt_stokadi.Text);
         cmd.Parameters.Add("ugrup", cmBox_StokGrup.SelectedItem.ToString());
         cmd.Parameters.Add("agrup", cmBox_AltGrup.SelectedItem.ToString());
         cmd.Parameters.Add("afiyat", Convert.ToDecimal(txt_AlisF.Text));
         cmd.Parameters.Add("adet", Convert.ToInt32(txt_adet.Text));
         cmd.Parameters.Add("sfiyat", Convert.ToDecimal(txt_SatisF.Text));
         cmd.Parameters.Add("kdvliF", Convert.ToDecimal(txt_KDVdahil.Text));
         cmd.Parameters.Add("kdv", cmBox_KDV.SelectedItem.ToString());
         cmd.Parameters.Add("ozel", txt_OzelKod.Text);
         cmd.Parameters.Add("orj", txt_OrjKod.Text);
         cmd.Parameters.Add("bar", txt_Barkod.Text);
         cmd.Parameters.Add("id", x);
         cmd.ExecuteNonQuery();
         cmd.Dispose();
         baglanti.Close();
         MessageBoxEx.Show("    Güncelleme işlemi başarılı.    ", "Bilgi", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
     else
     {
         MessageBoxEx.Show("   Eksik veya boş değer girdiniz!    ", "Dikkat", MessageBoxButtons.OK, MessageBoxIcon.Warning);
     }
 }
Exemplo n.º 8
0
 public void CariGuncelle(DevComponents.DotNetBar.Controls.TextBoxX txt_cariadi, DevComponents.DotNetBar.Controls.TextBoxX txt_ilgikisi, DevComponents.DotNetBar.Controls.MaskedTextBoxAdv txt_TCno, DevComponents.DotNetBar.Controls.ComboBoxEx cmBox_İl, DevComponents.DotNetBar.Controls.TextBoxX txt_iskonto, DevComponents.DotNetBar.Controls.TextBoxX txt_alacak, DevComponents.DotNetBar.Controls.TextBoxX txt_verecek, DevComponents.DotNetBar.Controls.TextBoxX txt_risk, DevComponents.DotNetBar.Controls.TextBoxX txt_email, DevComponents.DotNetBar.Controls.TextBoxX txt_fax, DevComponents.DotNetBar.Controls.MaskedTextBoxAdv txt_tel, DevComponents.DotNetBar.Controls.TextBoxX txt_vdairesi, DevComponents.DotNetBar.Controls.TextBoxX txt_vergino, DevComponents.DotNetBar.Controls.ComboBoxEx cmBox_Parabirimi, RichTextBox txt_adres, DevComponents.DotNetBar.LabelX lbl_id)
 {
     MessageBoxEx.EnableGlass         = false;
     MessageBoxEx.MessageBoxTextColor = System.Drawing.Color.Black;
     if (txt_cariadi.Text != "" && txt_ilgikisi.Text != "" && txt_TCno.Text.Length == 11 && cmBox_İl.SelectedItem != null && txt_alacak.Text != "" && txt_verecek.Text != "" && txt_risk.Text != "" && txt_email.Text != "" && txt_tel.Text.Length == 14 && txt_vdairesi.Text != "" && txt_vergino.Text != "" && cmBox_Parabirimi.SelectedItem != null)
     {
         baglanti.Open();
         cmd = new SqlCommand("UPDATE CariList SET CariAdi=@ad, IlgiliKisi=@kisi, TCno=@tc, Il=@il, Iskonto=@is, Tahsilat=@alac, Borc=@verec, Risk=@r, Email=@em, Fax=@fax, Telefon=@tel, VergiDa=@vda, VergiNo=@vno, ParaB=@pb, Adres=@adres WHERE CariID=@id", baglanti);
         cmd.Parameters.Add("id", lbl_id.Text);
         cmd.Parameters.Add("ad", txt_cariadi.Text);
         cmd.Parameters.Add("kisi", txt_ilgikisi.Text);
         cmd.Parameters.Add("tc", txt_TCno.Text);
         cmd.Parameters.Add("il", cmBox_İl.SelectedItem.ToString());
         cmd.Parameters.Add("is", Convert.ToDecimal(txt_iskonto.Text));
         cmd.Parameters.Add("alac", Convert.ToDecimal(txt_alacak.Text));
         cmd.Parameters.Add("verec", Convert.ToDecimal(txt_verecek.Text));
         cmd.Parameters.Add("r", Convert.ToDecimal(txt_risk.Text));
         cmd.Parameters.Add("em", txt_email.Text);
         cmd.Parameters.Add("fax", txt_fax.Text);
         cmd.Parameters.Add("tel", txt_tel.Text);
         cmd.Parameters.Add("vda", txt_vdairesi.Text);
         cmd.Parameters.Add("vno", Convert.ToInt32(txt_vergino.Text));
         cmd.Parameters.Add("pb", cmBox_Parabirimi.SelectedItem.ToString());
         cmd.Parameters.Add("adres", txt_adres.Text);
         cmd.ExecuteNonQuery();
         cmd.Dispose();
         baglanti.Close();
         MessageBoxEx.Show("     İşlem başarılı.     ", "Bilgi", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
     else
     {
         MessageBoxEx.Show("    Eksik  veya  hatalı  veri  girişi!    ", "Dikkat", MessageBoxButtons.OK, MessageBoxIcon.Warning);
     }
 }
Exemplo n.º 9
0
 private void InitializeComponent()
 {
     this.txtValue = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.SuspendLayout();
     //
     // txtValue
     //
     //
     //
     //
     this.txtValue.Border.Class = "TextBoxBorder";
     this.txtValue.Font         = new System.Drawing.Font("���ו", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtValue.Location     = new System.Drawing.Point(0, 3);
     this.txtValue.Margin       = new System.Windows.Forms.Padding(0);
     this.txtValue.Name         = "txtValue";
     this.txtValue.Size         = new System.Drawing.Size(150, 21);
     this.txtValue.TabIndex     = 0;
     this.txtValue.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.textbox_KeyUp);
     //
     // frmStringEdit
     //
     this.BackColor  = System.Drawing.SystemColors.Window;
     this.ClientSize = new System.Drawing.Size(150, 27);
     this.Controls.Add(this.txtValue);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmStringEdit";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.Manual;
     this.TopMost         = true;
     this.ResumeLayout(false);
 }
Exemplo n.º 10
0
 internal static bool ValidarProducto(DevComponents.DotNetBar.Controls.TextBoxX tb_nombre, DevComponents.DotNetBar.Controls.TextBoxX tb_codigo, DevComponents.DotNetBar.Controls.TextBoxX tb_precio, ErrorProvider errorIcono, facturacion.Vistas.VProducto vProducto)
 {
     if (tb_nombre.Text == string.Empty)
     {
         errorIcono.SetError(tb_nombre, "El nombre del producto es necesario");
         ToastNotification.Show(vProducto, "El nombre del producto es necesario", global::facturacion.Properties.Resources.Warning_sign, 3000, (eToastGlowColor.Red), (eToastPosition.TopRight));
         return(false);
     }
     else
     {
         errorIcono.Clear();
     }
     if (tb_codigo.Text == string.Empty)
     {
         errorIcono.SetError(tb_codigo, "El codigo es necesario");
         ToastNotification.Show(vProducto, "El codigo es necesario", global::facturacion.Properties.Resources.Warning_sign, 3000, (eToastGlowColor.Red), (eToastPosition.TopRight));
         return(false);
     }
     else
     {
         errorIcono.Clear();
     }
     if (tb_precio.Text == string.Empty)
     {
         errorIcono.SetError(tb_precio, "El precio es necesario");
         ToastNotification.Show(vProducto, "El precio es necesario", global::facturacion.Properties.Resources.Warning_sign, 3000, (eToastGlowColor.Red), (eToastPosition.TopRight));
         return(false);
     }
     else
     {
         errorIcono.Clear();
     }
     return(true);
 }
Exemplo n.º 11
0
        /////////////////////// http://www.csharp-examples.net/inputbox/ //////////////////////
        public static DialogResult InputBox(string title, string promptText, ref string value)
        {
            Office2007Form form  = new Office2007Form();
            LabelX         label = new LabelX();

            DevComponents.DotNetBar.Controls.TextBoxX textBox = new DevComponents.DotNetBar.Controls.TextBoxX();
            ButtonX buttonOk     = new ButtonX();
            ButtonX buttonCancel = new ButtonX();

            form.Text    = title;
            label.Text   = promptText;
            textBox.Text = value;


            textBox.Border.Class      = "TextBoxBorder";
            textBox.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            textBox.Location          = new System.Drawing.Point(240, 151);
            textBox.Name     = "textbox";
            textBox.ReadOnly = false;
            textBox.Size     = new System.Drawing.Size(275, 20);
            textBox.TabIndex = 1;

            buttonOk.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            buttonOk.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;

            buttonCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            buttonCancel.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;


            buttonOk.Text             = "OK";
            buttonCancel.Text         = "Cancel";
            buttonOk.DialogResult     = DialogResult.OK;
            buttonCancel.DialogResult = DialogResult.Cancel;

            label.SetBounds(9, 20, 372, 13);
            textBox.SetBounds(12, 36, 372, 20);
            buttonOk.SetBounds(228, 72, 75, 23);
            buttonCancel.SetBounds(309, 72, 75, 23);

            label.AutoSize      = true;
            textBox.Anchor      = textBox.Anchor | AnchorStyles.Right;
            buttonOk.Anchor     = AnchorStyles.Bottom | AnchorStyles.Right;
            buttonCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;

            form.ClientSize = new Size(396, 107);
            form.Controls.AddRange(new Control[] { label, textBox, buttonOk, buttonCancel });
            form.ClientSize      = new Size(Math.Max(300, label.Right + 10), form.ClientSize.Height);
            form.FormBorderStyle = FormBorderStyle.FixedDialog;
            form.StartPosition   = FormStartPosition.CenterScreen;
            form.MinimizeBox     = false;
            form.MaximizeBox     = false;
            form.AcceptButton    = buttonOk;
            form.CancelButton    = buttonCancel;
            form.EnableGlass     = false;

            DialogResult dialogResult = form.ShowDialog();

            value = textBox.Text;
            return(dialogResult);
        }
Exemplo n.º 12
0
        private void cboxxHideExampleData_CheckedChanged(object sender, EventArgs e)
        {
            DevComponents.DotNetBar.Controls.TextBoxX[] txtbx = new DevComponents.DotNetBar.Controls.TextBoxX[] { txtbxBugDescription, txtbxBugReproSteps, txtbxBugActualResults, txtbxBugExpectedResults, txtbxBugNotes };
            if (chkxHideExampleData.Checked)
            {
                bugStatusWatermark            = txtbxBugSummary.WatermarkText;
                txtbxBugSummary.WatermarkText = "Bug Summary";

                foreach (DevComponents.DotNetBar.Controls.TextBoxX textBoxX in txtbx)
                {
                    textBoxX.WatermarkText  = textBoxX.WatermarkText.Replace("#BC8F8F", "white");
                    textBoxX.WatermarkText  = textBoxX.WatermarkText.Replace("#8FBC8F", "#FFFFFF");
                    textBoxX.WatermarkColor = Color.White;
                }
            }
            else
            {
                txtbxBugSummary.WatermarkText = bugStatusWatermark;

                foreach (DevComponents.DotNetBar.Controls.TextBoxX textBoxX in txtbx)
                {
                    textBoxX.WatermarkText  = textBoxX.WatermarkText.Replace("white", "#BC8F8F");
                    textBoxX.WatermarkText  = textBoxX.WatermarkText.Replace("#FFFFFF", "#8FBC8F");
                    textBoxX.WatermarkColor = System.Drawing.SystemColors.GrayText;
                }
            }
        }
Exemplo n.º 13
0
 public void SifreAdDegistir(DevComponents.DotNetBar.Controls.TextBoxX txt_KulAdi, DevComponents.DotNetBar.Controls.TextBoxX txt_Sifre, DevComponents.DotNetBar.Controls.TextBoxX txt_SifreT)
 {
     MessageBoxEx.EnableGlass         = false;
     MessageBoxEx.MessageBoxTextColor = System.Drawing.Color.Black;
     if (txt_KulAdi.Text != "" && txt_Sifre.Text != "" && txt_SifreT.Text != "")
     {
         if (txt_Sifre.Text != txt_SifreT.Text)
         {
             MessageBoxEx.Show("   Girdiğiniz şifreler birbiriyle uyuşmamakta!   ", "Dikkat", MessageBoxButtons.OK, MessageBoxIcon.Warning);
         }
         else
         {
             baglanti.Open();
             cmd = new SqlCommand("UPDATE Kullanici SET KullaniciAdi=@uname,Sifre=@pass WHERE UserID=1", baglanti);
             cmd.Parameters.Add("uname", txt_KulAdi.Text);
             cmd.Parameters.Add("pass", txt_Sifre.Text);
             cmd.ExecuteNonQuery();
             cmd.Dispose();
             baglanti.Close();
             MessageBoxEx.Show("   İşlem başarıyla gerçekleşti.   ", "Bilgi", MessageBoxButtons.OK, MessageBoxIcon.Information);
         }
     }
     else
     {
         MessageBoxEx.Show("   Lütfen bilgileri eksiksiz girin!  ", "Dikkat", MessageBoxButtons.OK, MessageBoxIcon.Warning);
     }
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.txtInput = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.btnConfirm = new DevComponents.DotNetBar.ButtonX();
     this.btnCancel = new DevComponents.DotNetBar.ButtonX();
     this.SuspendLayout();
     //
     // txtInput
     //
     //
     //
     //
     this.txtInput.Border.Class = "TextBoxBorder";
     this.txtInput.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtInput.Location = new System.Drawing.Point(12, 12);
     this.txtInput.Name = "txtInput";
     this.txtInput.Size = new System.Drawing.Size(484, 25);
     this.txtInput.TabIndex = 0;
     //
     // btnConfirm
     //
     this.btnConfirm.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnConfirm.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnConfirm.Location = new System.Drawing.Point(421, 47);
     this.btnConfirm.Name = "btnConfirm";
     this.btnConfirm.Size = new System.Drawing.Size(75, 23);
     this.btnConfirm.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnConfirm.TabIndex = 1;
     this.btnConfirm.Text = "確定";
     this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
     //
     // btnCancel
     //
     this.btnCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnCancel.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(340, 47);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnCancel.TabIndex = 1;
     this.btnCancel.Text = "取消";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // InputBox
     //
     this.AcceptButton = this.btnConfirm;
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(504, 82);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnConfirm);
     this.Controls.Add(this.txtInput);
     this.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.Name = "InputBox";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "InputBox";
     this.ResumeLayout(false);
 }
Exemplo n.º 15
0
 public TagListControl()
 {
     InitializeComponent();
     FlowPanel = tagPanel;
     TextBox   = txtTag;
     _tags     = new HashSet <string>();
     Clear();
 }
Exemplo n.º 16
0
 /// <summary> 
 /// Método necesario para admitir el Diseñador. No se puede modificar 
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.labelX9 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX7 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.SuspendLayout();
     //
     // labelX9
     //
     //
     //
     //
     this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX9.Location = new System.Drawing.Point(23, 26);
     this.labelX9.Name = "labelX9";
     this.labelX9.Size = new System.Drawing.Size(121, 23);
     this.labelX9.TabIndex = 18;
     this.labelX9.Text = "Nombre Departamento :";
     //
     // textBoxX7
     //
     this.textBoxX7.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.textBoxX7.Border.Class = "TextBoxBorder";
     this.textBoxX7.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX7.ForeColor = System.Drawing.Color.Black;
     this.textBoxX7.Location = new System.Drawing.Point(150, 29);
     this.textBoxX7.Name = "textBoxX7";
     this.textBoxX7.Size = new System.Drawing.Size(200, 20);
     this.textBoxX7.TabIndex = 19;
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Location = new System.Drawing.Point(206, 55);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(125, 23);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 20;
     this.buttonX1.Text = "Agregar Departamento";
     //
     // Departamentos
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.buttonX1);
     this.Controls.Add(this.textBoxX7);
     this.Controls.Add(this.labelX9);
     this.Name = "Departamentos";
     this.Size = new System.Drawing.Size(391, 103);
     this.ResumeLayout(false);
 }
Exemplo n.º 17
0
 public static void Focus(DevComponents.DotNetBar.Controls.TextBoxX txt = null, TextBox txt2 = null)
 {
     if (txt == null)
     {
         txt2.BackColor = Color.White;
         txt2.ForeColor = Color.Black;
         return;
     }
     txt.BackColor = Color.White;
     txt.ForeColor = Color.Black;
 }
Exemplo n.º 18
0
        public void CariLikeAdi(DevComponents.DotNetBar.Controls.TextBoxX txt_cariadi, DevComponents.DotNetBar.Controls.DataGridViewX dGView_Cari)
        {
            baglanti.Open();
            adap = new SqlDataAdapter("SELECT * FROM CariList WHERE CariAdi LIKE '" + txt_cariadi.Text + "%'", baglanti);
            DataSet ds = new DataSet();

            adap.Fill(ds, "CariSuzme");
            dGView_Cari.DataSource = ds.Tables["CariSuzme"];
            adap.Dispose();
            baglanti.Close();
        }
Exemplo n.º 19
0
        private void txtbxXY_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (controlDown) // User is probably doing a command sequence; do not filter their keys.
            {
                return;
            }

            char key = e.KeyChar;

            DevComponents.DotNetBar.Controls.TextBoxX control = (sender as DevComponents.DotNetBar.Controls.TextBoxX);

            if (!Char.IsDigit(key) && !(key == (char)Keys.Back) && !(key == '.') && !(key == '-'))
            {
                // If the key is not a digit (0-9), backspace key, or period, ignore it.
                e.Handled = true;
            }
            else if (Char.IsDigit(key))
            {
                if ((control.SelectionStart == 0) && control.Text.Contains("-"))
                {
                    if (!(control.SelectionLength > 0))
                    {
                        e.Handled = true;
                    }
                }
            }
            else if (key == '.')
            {
                // If there is already one period, do not allow another.
                if (control.Text.Contains("."))
                {
                    e.Handled = true;
                }
                // If the user tries to put a period before the - sign, stop them.
                else if ((control.SelectionStart == 0) && control.Text.Contains("-"))
                {
                    if (!(control.SelectionLength > 0))
                    {
                        e.Handled = true;
                    }
                }
            }
            else if (key == '-')
            {
                // If the user tries to put a - sign anywhere except the beginning, stop them.
                if (!(control.SelectionStart == 0) || control.Text.Contains("-"))
                {
                    if (!(control.SelectionLength > 0))
                    {
                        e.Handled = true;
                    }
                }
            }
        }
Exemplo n.º 20
0
        public void StokAdiGetir(DevComponents.DotNetBar.Controls.TextBoxX txt_AraSA, DevComponents.DotNetBar.Controls.DataGridViewX dGView_Stok)
        {
            baglanti.Open();
            adap = new SqlDataAdapter("SELECT * FROM Stoklist WHERE StokAdi LIKE '" + txt_AraSA.Text + "%'", baglanti);
            DataTable dt = new DataTable("Bilgiler");

            adap.Fill(dt);
            dGView_Stok.DataSource = dt;
            adap.Dispose();
            baglanti.Close();
        }
Exemplo n.º 21
0
        public void KasaAdiAra(DevComponents.DotNetBar.Controls.TextBoxX txt_araKadi, DevComponents.DotNetBar.Controls.DataGridViewX dGView_Kasa)
        {
            baglanti.Open();
            adap = new SqlDataAdapter("SELECT * FROM KasaList WHERE KasaAdi LIKE '" + txt_araKadi.Text + "%'", baglanti);
            DataSet ds = new DataSet();

            adap.Fill(ds, "Veriler");
            dGView_Kasa.DataSource = ds.Tables["Veriler"];
            adap.Dispose();
            baglanti.Close();
        }
Exemplo n.º 22
0
 private void txtInputText_TextChanged(object sender, EventArgs e)
 {
     DevComponents.DotNetBar.Controls.TextBoxX vTxtbox = sender as DevComponents.DotNetBar.Controls.TextBoxX;
     if (m_bOnlyNumber == true)
     {
         vTxtbox.Text = Convert.ToDouble(vTxtbox.Text.Replace("&", ""))
                        + (vTxtbox.Text.Substring(vTxtbox.Text.Length - 1, 1) == "." &&
                           vTxtbox.Text.IndexOf(".") == vTxtbox.Text.Length - 1 ? "." : "");
         vTxtbox.SelectionStart = vTxtbox.MaxLength;
     }
 }
Exemplo n.º 23
0
        public void CariLikeID(DevComponents.DotNetBar.Controls.TextBoxX txt_carikod, DevComponents.DotNetBar.Controls.DataGridViewX dGView_Cari)
        {
            baglanti.Open();
            adap = new SqlDataAdapter("SELECT * FROM CariList WHERE CariID=@id;", baglanti);
            adap.SelectCommand.Parameters.Add("id", txt_carikod.Text);
            DataSet ds = new DataSet();

            adap.Fill(ds, "CariSuzme");
            dGView_Cari.DataSource = ds.Tables["CariSuzme"];
            adap.Dispose();
            baglanti.Close();
        }
Exemplo n.º 24
0
        public static void Follow(DevComponents.DotNetBar.Controls.TextBoxX txt = null, TextBox txt2 = null)
        {
            Color colour = ColorTranslator.FromHtml("#17212b");

            if (txt == null)
            {
                txt2.BackColor = colour;
                txt2.ForeColor = Color.White;
                return;
            }
            txt.BackColor = colour;
            txt.ForeColor = Color.White;
        }
Exemplo n.º 25
0
        private void txtbxXY_TextChanged(object sender, System.EventArgs e)
        {
            DevComponents.DotNetBar.Controls.TextBoxX control = (sender as DevComponents.DotNetBar.Controls.TextBoxX);

            if (control.Text.Contains("-"))
            {
                control.ForeColor = Color.Red;
            }
            else
            {
                control.ForeColor = Color.DarkBlue;
            }
        }
Exemplo n.º 26
0
        private void textBoxX_TextChanged(object sender, EventArgs e)
        {
            DevComponents.DotNetBar.Controls.TextBoxX textbox = sender as DevComponents.DotNetBar.Controls.TextBoxX;
            if (textbox == null)
            {
                return;
            }
            switch (textbox.Name)
            {
            case "textBoxXTime":
                int timeValue = 0;
                int.TryParse(textBoxXTime.Text, out timeValue);
                insulationParam.Time = timeValue;
                break;

            case "textBoxXCurrent":
                int currentValue = 10;
                int.TryParse(textBoxXCurrent.Text, out currentValue);
                insulationParam.Current = currentValue;
                break;

            case "textBoxXVoltage":
                int voltageValue = 2000;
                int.TryParse(textBoxXVoltage.Text, out voltageValue);
                if (insulationParam.InsulationType == StInsulationParam.EnumInsulationType.AnalogEarth)
                {
                    if (voltageValue > 2000)
                    {
                        textBoxXVoltage.Text = "2000";
                        voltageValue         = 2000;
                    }
                }
                else if (insulationParam.InsulationType == StInsulationParam.EnumInsulationType.DigitalEarth)
                {
                    if (voltageValue > 4000)
                    {
                        textBoxXVoltage.Text = "4000";
                        voltageValue         = 4000;
                    }
                }
                insulationParam.Voltage = voltageValue;
                break;

            case "textBoxXCurrentAll":
                int currentAllValue = 10;
                int.TryParse(textBoxXCurrentAll.Text, out currentAllValue);
                insulationParam.CurrentDevice = currentAllValue;
                break;
            }
        }
Exemplo n.º 27
0
        public void KAdiSifreGoster(DevComponents.DotNetBar.Controls.TextBoxX txt_KulAdi, DevComponents.DotNetBar.Controls.TextBoxX txt_Sifre, DevComponents.DotNetBar.Controls.TextBoxX txt_SifreT)
        {
            baglanti.Open();
            cmd = new SqlCommand("SELECT KullaniciAdi,Sifre FROM Kullanici", baglanti);
            SqlDataReader ds = cmd.ExecuteReader();

            while (ds.Read())
            {
                txt_KulAdi.Text = ds["KullaniciAdi"].ToString().TrimEnd();
                txt_Sifre.Text  = ds["Sifre"].ToString().TrimEnd();
            }
            ds.Close();
            cmd.Dispose();
            baglanti.Close();
        }
Exemplo n.º 28
0
        public void validaPunto(DevComponents.DotNetBar.Controls.TextBoxX txt)
        {
            int cont = 0;

            for (int x = 0; x <= txt.Text.Count() - 1; x++)
            {
                if (txt.Text.Substring(x, 1) == ".")
                {
                    cont++;
                }
            }

            if (cont > 1)
            {
                MessageBox.Show("el formato es incorrecto");
                txt.Text = String.Empty;
            }
        }
Exemplo n.º 29
0
 private void InitButton()
 {
     buttonEdit1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     // buttonEdit1
     //
     //this.buttonEdit1.Dock = System.Windows.Forms.DockStyle.Top;
     this.buttonEdit1.Anchor        = System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right;
     this.buttonEdit1.Location      = this.Location;
     this.buttonEdit1.Name          = "buttonEdit1";
     this.buttonEdit1.AutoSize      = false;
     this.buttonEdit1.WatermarkText = "过滤点位";
     this.buttonEdit1.Size          = new System.Drawing.Size(this.Width - 18, 22);
     this.buttonEdit1.TabIndex      = 3;
     this.buttonEdit1.TextChanged  += buttonEdit1_TextChanged;
     this.Controls.Add(buttonEdit1);
     buttonEdit1.BringToFront();
     buttonEdit1.Visible = false;
 }
Exemplo n.º 30
0
 internal static bool ValidarUsuario(DevComponents.DotNetBar.Controls.TextBoxX tb_nombre, DevComponents.DotNetBar.Controls.TextBoxX tb_ci, DevComponents.DotNetBar.Controls.ComboBoxEx cb_tipo, DevComponents.DotNetBar.Controls.TextBoxX tb_usuario, ErrorProvider errorIcono, facturacion.Vistas.VUsuario vUsuario)
 {
     if (tb_nombre.Text == string.Empty)
     {
         errorIcono.SetError(tb_nombre, "El nombre del usuario es necesario");
         ToastNotification.Show(vUsuario, "El nombre del usuario es necesario", global::facturacion.Properties.Resources.Warning_sign, 3000, (eToastGlowColor.Red), (eToastPosition.TopRight));
         return(false);
     }
     else
     {
         errorIcono.Clear();
     }
     if (tb_ci.Text == string.Empty)
     {
         errorIcono.SetError(tb_nombre, "El ci del usuario es necesario");
         ToastNotification.Show(vUsuario, "El ci del usuario es necesario", global::facturacion.Properties.Resources.Warning_sign, 3000, (eToastGlowColor.Red), (eToastPosition.TopRight));
         return(false);
     }
     else
     {
         errorIcono.Clear();
     }
     if (cb_tipo.Text == string.Empty)
     {
         errorIcono.SetError(tb_nombre, "El tipo de usuario es necesario");
         ToastNotification.Show(vUsuario, "El tipo de usuario es necesario", global::facturacion.Properties.Resources.Warning_sign, 3000, (eToastGlowColor.Red), (eToastPosition.TopRight));
         return(false);
     }
     else
     {
         errorIcono.Clear();
     }
     if (tb_usuario.Text == string.Empty)
     {
         errorIcono.SetError(tb_nombre, "El usuario es necesario");
         ToastNotification.Show(vUsuario, "El usuario es necesario", global::facturacion.Properties.Resources.Warning_sign, 3000, (eToastGlowColor.Red), (eToastPosition.TopRight));
         return(false);
     }
     else
     {
         errorIcono.Clear();
     }
     return(true);
 }
Exemplo n.º 31
0
 internal static bool ValidarEmpresa(DevComponents.DotNetBar.Controls.TextBoxX tb_nombre, DevComponents.DotNetBar.Controls.TextBoxX tb_nit, DevComponents.DotNetBar.Controls.TextBoxX tb_propietario, ErrorProvider errorIcono, facturacion.Vistas.Empresa empresa)
 {
     if (tb_nombre.Text == string.Empty)
     {
         errorIcono.SetError(tb_nombre, "El nombre de la empresa es necesario");
         ToastNotification.Show(empresa, "El nombre de la empresa es necesario", global::facturacion.Properties.Resources.Warning_sign, 3000, (eToastGlowColor.Red), (eToastPosition.TopRight));
         return(false);
     }
     else
     {
         errorIcono.Clear();
     }
     if (tb_nit.Text == string.Empty)
     {
         errorIcono.SetError(tb_nit, "Nro. de Identificacion tributaria es necesario");
         ToastNotification.Show(empresa, "Nro. de Identificacion tributaria es necesario", global::facturacion.Properties.Resources.Warning_sign, 3000, (eToastGlowColor.Red), (eToastPosition.TopRight));
         return(false);
     }
     else
     {
         errorIcono.Clear();
     }
     if (tb_nit.Text == string.Empty)
     {
         errorIcono.SetError(tb_nit, "Nro. de Identificacion tributaria es necesario");
         ToastNotification.Show(empresa, "Nro. de Identificacion tributaria es necesario", global::facturacion.Properties.Resources.Warning_sign, 3000, (eToastGlowColor.Red), (eToastPosition.TopRight));
         return(false);
     }
     else
     {
         errorIcono.Clear();
     }
     if (tb_propietario.Text == string.Empty)
     {
         errorIcono.SetError(tb_propietario, "Nombre del propietario es necesario");
         ToastNotification.Show(empresa, "Nombre del propietario es necesario", global::facturacion.Properties.Resources.Warning_sign, 3000, (eToastGlowColor.Red), (eToastPosition.TopRight));
         return(false);
     }
     else
     {
         errorIcono.Clear();
     }
     return(true);
 }
        void tb_TextChanged(object sender, EventArgs e)
        {
            int columnIndex = advTree1.SelectedNode.Cells.IndexOf(advTree1.SelectedNode.SelectedCell);
            int row         = advTree1.SelectedNode.Index;

            DevComponents.DotNetBar.Controls.TextBoxX tb = (DevComponents.DotNetBar.Controls.TextBoxX)sender;

            Entity entity = (Entity)advTree1.Columns[columnIndex].Tag;

            switch (row)
            {
            case 0:
                entity.Name = tb.Text;
                break;

            case 2:
                entity.DiscriminatorValue = tb.Text;
                break;
            }
        }
Exemplo n.º 33
0
        public void HienThi(DataGridView dg, BindingNavigator bn, DevComponents.DotNetBar.Controls.TextBoxX txtMaThietBi, DevComponents.DotNetBar.Controls.TextBoxX txtTenThietBi, DevComponents.DotNetBar.Controls.ComboBoxEx cmbMaLPhong, NumericUpDown numSoLuong)
        {
            BindingSource bs = new BindingSource();

            bs.DataSource    = data.LayMaThietBi();
            dg.DataSource    = bs;
            bn.BindingSource = bs;

            txtMaThietBi.DataBindings.Clear();
            txtMaThietBi.DataBindings.Add("Text", bs, "MaThietBi");

            txtTenThietBi.DataBindings.Clear();
            txtTenThietBi.DataBindings.Add("Text", bs, "TenThietBi");

            cmbMaLPhong.DataBindings.Clear();
            cmbMaLPhong.DataBindings.Add("SelectedValue", bs, "MaLoaiPhong");

            numSoLuong.DataBindings.Clear();
            numSoLuong.DataBindings.Add("Value", bs, "SoLuong");
        }
Exemplo n.º 34
0
 public void CariKaydet(DevComponents.DotNetBar.Controls.TextBoxX txt_cariadi, DevComponents.DotNetBar.Controls.TextBoxX txt_ilgikisi, DevComponents.DotNetBar.Controls.MaskedTextBoxAdv txt_TCno, DevComponents.DotNetBar.Controls.ComboBoxEx cmBox_İl, DevComponents.DotNetBar.Controls.TextBoxX txt_iskonto, DevComponents.DotNetBar.Controls.TextBoxX txt_alacak, DevComponents.DotNetBar.Controls.TextBoxX txt_verecek, DevComponents.DotNetBar.Controls.TextBoxX txt_risk, DevComponents.DotNetBar.Controls.TextBoxX txt_email, DevComponents.DotNetBar.Controls.TextBoxX txt_fax, DevComponents.DotNetBar.Controls.MaskedTextBoxAdv txt_tel, DevComponents.DotNetBar.Controls.TextBoxX txt_vdairesi, DevComponents.DotNetBar.Controls.TextBoxX txt_vergino, DevComponents.DotNetBar.Controls.ComboBoxEx cmBox_Parabirimi, RichTextBox txt_adres)
 {
     MessageBoxEx.EnableGlass         = false;
     MessageBoxEx.MessageBoxTextColor = System.Drawing.Color.Black;
     if (txt_cariadi.Text != "" && txt_ilgikisi.Text != "" && txt_TCno.Text.Length == 11 && cmBox_İl.SelectedItem != null && txt_alacak.Text != "" && txt_verecek.Text != "" && txt_risk.Text != "" && txt_email.Text != "" && txt_tel.Text.Length == 14 && txt_vdairesi.Text != "" && txt_vergino.Text != "" && cmBox_Parabirimi.SelectedItem != null)
     {
         baglanti.Open();
         cmd = new SqlCommand("INSERT INTO CariList(CariAdi,IlgiliKisi,TCno,Il,Iskonto,Tahsilat,Borc,Risk,Email,Fax,Telefon,VergiDa,VergiNo,ParaB,Adres) VALUES(@ad,@kisi,@tc,@il,@is,@alac,@verec,@r,@em,@fax,@tel,@vda,@vno,@pb,@adres)", baglanti);
         cmd.Parameters.Add("ad", txt_cariadi.Text);
         cmd.Parameters.Add("kisi", txt_ilgikisi.Text);
         cmd.Parameters.Add("tc", txt_TCno.Text);
         cmd.Parameters.Add("il", cmBox_İl.SelectedItem.ToString());
         cmd.Parameters.Add("is", Convert.ToDecimal(txt_iskonto.Text));
         cmd.Parameters.Add("alac", Convert.ToDecimal(txt_alacak.Text));
         cmd.Parameters.Add("verec", Convert.ToDecimal(txt_verecek.Text));
         cmd.Parameters.Add("r", Convert.ToDecimal(txt_risk.Text));
         cmd.Parameters.Add("em", txt_email.Text);
         cmd.Parameters.Add("fax", txt_fax.Text);
         cmd.Parameters.Add("tel", txt_tel.Text);
         cmd.Parameters.Add("vda", txt_vdairesi.Text);
         cmd.Parameters.Add("vno", txt_vergino.Text);
         cmd.Parameters.Add("pb", cmBox_Parabirimi.SelectedItem.ToString());
         cmd.Parameters.Add("adres", txt_adres.Text);
         cmd.ExecuteNonQuery();
         cmd.Dispose();
         cmd = new SqlCommand("INSERT INTO RehberList(KisiAdi,Telefon,Fax,Email,Adres) VALUES(@ka,@t,@f,@e,@a)", baglanti);
         cmd.Parameters.Add("ka", txt_ilgikisi.Text);
         cmd.Parameters.Add("t", txt_tel.Text);
         cmd.Parameters.Add("f", txt_fax.Text);
         cmd.Parameters.Add("e", txt_email.Text);
         cmd.Parameters.Add("a", txt_adres.Text);
         cmd.ExecuteNonQuery();
         cmd.Dispose();
         baglanti.Close();
         MessageBoxEx.Show("     İşlem başarılı.     ", "Bilgi", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
     else
     {
         MessageBoxEx.Show("    Eksik  veya  hatalı  veri  girişi!    ", "Dikkat", MessageBoxButtons.OK, MessageBoxIcon.Warning);
     }
 }
 /// <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>
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ImportClassV2));
     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.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;
     //
     // ImportClassV2
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(464, 323);
     this.Controls.Add(this.wizard1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "ImportClassV2";
     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.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();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnSearch = new DevComponents.DotNetBar.ButtonX();
     this.btnPlugin = new DevComponents.DotNetBar.ButtonItem();
     this.btnGadget = new DevComponents.DotNetBar.ButtonItem();
     this.btnUDM = new DevComponents.DotNetBar.ButtonItem();
     this.txtPattern = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.SuspendLayout();
     //
     // btnSearch
     //
     this.btnSearch.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSearch.AutoExpandOnClick = true;
     this.btnSearch.BackColor = System.Drawing.Color.Transparent;
     this.btnSearch.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnSearch.Location = new System.Drawing.Point(449, 60);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(65, 23);
     this.btnSearch.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnSearch.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnPlugin,
     this.btnGadget,
     this.btnUDM});
     this.btnSearch.TabIndex = 2;
     this.btnSearch.Text = "搜尋";
     //
     // btnPlugin
     //
     this.btnPlugin.GlobalItem = false;
     this.btnPlugin.Name = "btnPlugin";
     this.btnPlugin.Text = "Desktop Plugin";
     this.btnPlugin.Tooltip = "請使用類似:JHCore/app.xml 搜尋。";
     this.btnPlugin.Click += new System.EventHandler(this.btnPlugin_Click);
     //
     // btnGadget
     //
     this.btnGadget.GlobalItem = false;
     this.btnGadget.Name = "btnGadget";
     this.btnGadget.Text = "Web Gadget";
     this.btnGadget.Tooltip = "請使用 Gadget 的 ID,例:934e39d3-893f-4338-96d6-fd486497b930";
     this.btnGadget.Click += new System.EventHandler(this.btnGadget_Click);
     //
     // btnUDM
     //
     this.btnUDM.GlobalItem = false;
     this.btnUDM.Name = "btnUDM";
     this.btnUDM.Text = "UDM";
     this.btnUDM.Tooltip = "請使用 URL 的一部份,例:137815/AttendanceDiscipline/udm.xml";
     this.btnUDM.Click += new System.EventHandler(this.btnUDM_Click);
     //
     // txtPattern
     //
     this.txtPattern.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.txtPattern.Border.Class = "TextBoxBorder";
     this.txtPattern.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtPattern.Location = new System.Drawing.Point(12, 12);
     this.txtPattern.Name = "txtPattern";
     this.txtPattern.Size = new System.Drawing.Size(502, 25);
     this.txtPattern.TabIndex = 0;
     this.txtPattern.WatermarkText = "關鍵字,例:JHCore/app.xml";
     //
     // 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(12, 61);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(311, 21);
     this.labelX1.TabIndex = 1;
     this.labelX1.Text = "※ 搜尋後的結果會加入待處理(只會搜尋選擇的學校)";
     //
     // SearchForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(526, 94);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.txtPattern);
     this.Controls.Add(this.btnSearch);
     this.DoubleBuffered = true;
     this.Name = "SearchForm";
     this.Text = "進階搜尋";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 39
0
 /// <summary> 
 /// Método necesario para admitir el Diseñador. No se puede modificar 
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Tipo_Tarifa));
     this.dgvTipoTarifas = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.txtDescripcion = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtNombre = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.txtMontoAnual = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.superValidator1 = new DevComponents.DotNetBar.Validator.SuperValidator();
     this.requiredFieldValidator1 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Campo requerido.");
     this.requiredFieldValidator2 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Campo requerido.");
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.highlighter1 = new DevComponents.DotNetBar.Validator.Highlighter();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.cADINDataSet = new Sistema_De_Administracion_De_Servicios.CADINDataSet();
     this.tipo_TarifaBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.tipo_TarifaTableAdapter = new Sistema_De_Administracion_De_Servicios.CADINDataSetTableAdapters.Tipo_TarifaTableAdapter();
     this.tableAdapterManager = new Sistema_De_Administracion_De_Servicios.CADINDataSetTableAdapters.TableAdapterManager();
     ((System.ComponentModel.ISupportInitialize)(this.dgvTipoTarifas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cADINDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipo_TarifaBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // dgvTipoTarifas
     //
     this.dgvTipoTarifas.AllowUserToAddRows = false;
     this.dgvTipoTarifas.AllowUserToDeleteRows = false;
     this.dgvTipoTarifas.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgvTipoTarifas.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgvTipoTarifas.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dgvTipoTarifas.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.White;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgvTipoTarifas.DefaultCellStyle = dataGridViewCellStyle2;
     this.dgvTipoTarifas.EnableHeadersVisualStyles = false;
     this.dgvTipoTarifas.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgvTipoTarifas.Location = new System.Drawing.Point(35, 189);
     this.dgvTipoTarifas.MultiSelect = false;
     this.dgvTipoTarifas.Name = "dgvTipoTarifas";
     this.dgvTipoTarifas.ReadOnly = true;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgvTipoTarifas.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.dgvTipoTarifas.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvTipoTarifas.Size = new System.Drawing.Size(470, 150);
     this.dgvTipoTarifas.TabIndex = 1;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(35, 111);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 23);
     this.labelX2.TabIndex = 13;
     this.labelX2.Text = "Descripcion :";
     //
     // txtDescripcion
     //
     this.txtDescripcion.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtDescripcion.Border.Class = "TextBoxBorder";
     this.txtDescripcion.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtDescripcion.ForeColor = System.Drawing.Color.Black;
     this.txtDescripcion.Location = new System.Drawing.Point(116, 110);
     this.txtDescripcion.Multiline = true;
     this.txtDescripcion.Name = "txtDescripcion";
     this.txtDescripcion.ReadOnly = true;
     this.txtDescripcion.Size = new System.Drawing.Size(271, 64);
     this.txtDescripcion.TabIndex = 4;
     //
     // txtNombre
     //
     this.txtNombre.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtNombre.Border.Class = "TextBoxBorder";
     this.txtNombre.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtNombre.ForeColor = System.Drawing.Color.Black;
     this.txtNombre.Location = new System.Drawing.Point(116, 58);
     this.txtNombre.MaxLength = 50;
     this.txtNombre.Name = "txtNombre";
     this.txtNombre.ReadOnly = true;
     this.txtNombre.Size = new System.Drawing.Size(147, 20);
     this.txtNombre.TabIndex = 2;
     this.superValidator1.SetValidator1(this.txtNombre, this.requiredFieldValidator1);
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(35, 55);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
     this.labelX1.TabIndex = 10;
     this.labelX1.Text = "Nombre :";
     //
     // txtMontoAnual
     //
     this.txtMontoAnual.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtMontoAnual.Border.Class = "TextBoxBorder";
     this.txtMontoAnual.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtMontoAnual.ForeColor = System.Drawing.Color.Black;
     this.txtMontoAnual.Location = new System.Drawing.Point(116, 84);
     this.txtMontoAnual.MaxLength = 5;
     this.txtMontoAnual.Name = "txtMontoAnual";
     this.txtMontoAnual.ReadOnly = true;
     this.txtMontoAnual.Size = new System.Drawing.Size(79, 20);
     this.txtMontoAnual.TabIndex = 3;
     this.superValidator1.SetValidator1(this.txtMontoAnual, this.requiredFieldValidator2);
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(35, 81);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(75, 23);
     this.labelX3.Style = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
     this.labelX3.TabIndex = 15;
     this.labelX3.Text = "Monto Anual :";
     //
     // superValidator1
     //
     this.superValidator1.ContainerControl = this;
     this.superValidator1.ErrorProvider = this.errorProvider1;
     this.superValidator1.Highlighter = this.highlighter1;
     //
     // requiredFieldValidator1
     //
     this.requiredFieldValidator1.ErrorMessage = "Campo requerido.";
     this.requiredFieldValidator1.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // requiredFieldValidator2
     //
     this.requiredFieldValidator2.ErrorMessage = "Campo requerido.";
     this.requiredFieldValidator2.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // highlighter1
     //
     this.highlighter1.ContainerControl = this;
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX4.Location = new System.Drawing.Point(183, 17);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(175, 23);
     this.labelX4.TabIndex = 16;
     this.labelX4.Text = "TIPOS DE TARIFAS";
     //
     // cADINDataSet
     //
     this.cADINDataSet.DataSetName = "CADINDataSet";
     this.cADINDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // tipo_TarifaBindingSource
     //
     this.tipo_TarifaBindingSource.DataMember = "Tipo_Tarifa";
     this.tipo_TarifaBindingSource.DataSource = this.cADINDataSet;
     //
     // tipo_TarifaTableAdapter
     //
     this.tipo_TarifaTableAdapter.ClearBeforeFill = true;
     //
     // tableAdapterManager
     //
     this.tableAdapterManager.ActividadesTableAdapter = null;
     this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
     this.tableAdapterManager.CasoTableAdapter = null;
     this.tableAdapterManager.ComunicacionTableAdapter = null;
     this.tableAdapterManager.Contacto_EmpresaTableAdapter = null;
     this.tableAdapterManager.DepartamentosTableAdapter = null;
     this.tableAdapterManager.Empresa_AgrupacionTableAdapter = null;
     this.tableAdapterManager.EmpresaTableAdapter = null;
     this.tableAdapterManager.MensajeTableAdapter = null;
     this.tableAdapterManager.Pago_MembresiaTableAdapter = null;
     this.tableAdapterManager.ReciboTableAdapter = null;
     this.tableAdapterManager.SectoresTableAdapter = null;
     this.tableAdapterManager.Solicitud_ApoyoTableAdapter = null;
     this.tableAdapterManager.Tipo_ActividadTableAdapter = null;
     this.tableAdapterManager.Tipo_EmpresaTableAdapter = null;
     this.tableAdapterManager.Tipo_MembresiaTableAdapter = null;
     this.tableAdapterManager.Tipo_TarifaTableAdapter = this.tipo_TarifaTableAdapter;
     this.tableAdapterManager.UpdateOrder = Sistema_De_Administracion_De_Servicios.CADINDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
     this.tableAdapterManager.UsuarioTableAdapter = null;
     //
     // Tipo_Tarifa
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.labelX4);
     this.Controls.Add(this.txtMontoAnual);
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.dgvTipoTarifas);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.txtDescripcion);
     this.Controls.Add(this.txtNombre);
     this.Controls.Add(this.labelX1);
     this.Name = "Tipo_Tarifa";
     this.Size = new System.Drawing.Size(557, 684);
     this.Load += new System.EventHandler(this.Tipo_Tarifa_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgvTipoTarifas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cADINDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipo_TarifaBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 40
0
 /// <summary> 
 /// Método necesario para admitir el Diseñador. No se puede modificar 
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Tipo_Membresia));
     this.dataGridViewX1 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.superValidator1 = new DevComponents.DotNetBar.Validator.SuperValidator();
     this.requiredFieldValidator1 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Campo requerido");
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.highlighter1 = new DevComponents.DotNetBar.Validator.Highlighter();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // dataGridViewX1
     //
     this.dataGridViewX1.AllowUserToAddRows = false;
     this.dataGridViewX1.AllowUserToDeleteRows = false;
     this.dataGridViewX1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridViewX1.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewX1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.White;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewX1.DefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridViewX1.EnableHeadersVisualStyles = false;
     this.dataGridViewX1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
     this.dataGridViewX1.Location = new System.Drawing.Point(31, 203);
     this.dataGridViewX1.MultiSelect = false;
     this.dataGridViewX1.Name = "dataGridViewX1";
     this.dataGridViewX1.ReadOnly = true;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewX1.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.dataGridViewX1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridViewX1.Size = new System.Drawing.Size(431, 150);
     this.dataGridViewX1.TabIndex = 14;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(37, 95);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 23);
     this.labelX2.TabIndex = 13;
     this.labelX2.Text = "Descripcion :";
     //
     // textBoxX2
     //
     this.textBoxX2.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.textBoxX2.Border.Class = "TextBoxBorder";
     this.textBoxX2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX2.ForeColor = System.Drawing.Color.Black;
     this.textBoxX2.Location = new System.Drawing.Point(118, 94);
     this.textBoxX2.MaxLength = 3000;
     this.textBoxX2.Multiline = true;
     this.textBoxX2.Name = "textBoxX2";
     this.textBoxX2.ReadOnly = true;
     this.textBoxX2.Size = new System.Drawing.Size(271, 91);
     this.textBoxX2.TabIndex = 12;
     //
     // textBoxX1
     //
     this.textBoxX1.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.textBoxX1.Border.Class = "TextBoxBorder";
     this.textBoxX1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX1.ForeColor = System.Drawing.Color.Black;
     this.textBoxX1.Location = new System.Drawing.Point(118, 68);
     this.textBoxX1.MaxLength = 50;
     this.textBoxX1.Name = "textBoxX1";
     this.textBoxX1.ReadOnly = true;
     this.textBoxX1.Size = new System.Drawing.Size(141, 20);
     this.textBoxX1.TabIndex = 11;
     this.superValidator1.SetValidator1(this.textBoxX1, this.requiredFieldValidator1);
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(37, 65);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
     this.labelX1.TabIndex = 10;
     this.labelX1.Text = "Nombre :";
     //
     // superValidator1
     //
     this.superValidator1.ContainerControl = this;
     this.superValidator1.ErrorProvider = this.errorProvider1;
     this.superValidator1.Highlighter = this.highlighter1;
     //
     // requiredFieldValidator1
     //
     this.requiredFieldValidator1.ErrorMessage = "Campo requerido";
     this.requiredFieldValidator1.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // highlighter1
     //
     this.highlighter1.ContainerControl = this;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX3.Location = new System.Drawing.Point(162, 23);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(189, 23);
     this.labelX3.TabIndex = 15;
     this.labelX3.Text = "TIPOS DE MEMBRESIA";
     //
     // Tipo_Membresia
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.dataGridViewX1);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.textBoxX2);
     this.Controls.Add(this.textBoxX1);
     this.Controls.Add(this.labelX1);
     this.Name = "Tipo_Membresia";
     this.Size = new System.Drawing.Size(497, 380);
     this.Load += new System.EventHandler(this.Tipo_Membresia_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     this.groupPanel3 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.btnoktk = new DevComponents.DotNetBar.ButtonX();
     this.btnsuatk = new DevComponents.DotNetBar.ButtonX();
     this.btnhuy = new DevComponents.DotNetBar.ButtonX();
     this.txttienkham = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.groupPanel4 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.btnsuasobn = new DevComponents.DotNetBar.ButtonX();
     this.btnhuybn = new DevComponents.DotNetBar.ButtonX();
     this.btnok = new DevComponents.DotNetBar.ButtonX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.txtsobn = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.btnhuysobn = new DevComponents.DotNetBar.ButtonX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.btnsuasbn = new DevComponents.DotNetBar.ButtonX();
     this.txtsobntoida = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.groupPanel1.SuspendLayout();
     this.groupPanel3.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.groupPanel4.SuspendLayout();
     this.SuspendLayout();
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.panelEx1);
     this.groupPanel1.Controls.Add(this.panelEx2);
     this.groupPanel1.Controls.Add(this.groupPanel3);
     this.groupPanel1.Controls.Add(this.groupPanel2);
     this.groupPanel1.Location = new System.Drawing.Point(0, 0);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(332, 340);
     //
     //
     //
     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.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel1.TabIndex = 3;
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panelEx1.Location = new System.Drawing.Point(22, 173);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(269, 33);
     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.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 2;
     this.panelEx1.Text = "Tiền khám";
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panelEx2.Location = new System.Drawing.Point(21, 6);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Size = new System.Drawing.Size(270, 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.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.panelEx2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 4;
     this.panelEx2.Text = "Số bệnh nhân tối đa";
     //
     // groupPanel3
     //
     this.groupPanel3.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel3.Controls.Add(this.btnoktk);
     this.groupPanel3.Controls.Add(this.btnsuatk);
     this.groupPanel3.Controls.Add(this.btnhuy);
     this.groupPanel3.Controls.Add(this.txttienkham);
     this.groupPanel3.Controls.Add(this.labelX2);
     this.groupPanel3.Location = new System.Drawing.Point(11, 182);
     this.groupPanel3.Name = "groupPanel3";
     this.groupPanel3.Size = new System.Drawing.Size(308, 143);
     //
     //
     //
     this.groupPanel3.Style.BackColor = System.Drawing.Color.White;
     this.groupPanel3.Style.BackColor2 = System.Drawing.Color.White;
     this.groupPanel3.Style.BackColorGradientAngle = 90;
     this.groupPanel3.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderBottomWidth = 2;
     this.groupPanel3.Style.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
     this.groupPanel3.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderLeftWidth = 2;
     this.groupPanel3.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderRightWidth = 2;
     this.groupPanel3.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderTopWidth = 2;
     this.groupPanel3.Style.CornerDiameter = 4;
     this.groupPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel3.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel3.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel3.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel3.TabIndex = 4;
     //
     // btnoktk
     //
     this.btnoktk.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnoktk.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnoktk.Location = new System.Drawing.Point(93, 88);
     this.btnoktk.Name = "btnoktk";
     this.btnoktk.Size = new System.Drawing.Size(75, 23);
     this.btnoktk.TabIndex = 5;
     this.btnoktk.Text = "OK";
     this.btnoktk.Visible = false;
     this.btnoktk.Click += new System.EventHandler(this.btnoktk_Click);
     //
     // btnsuatk
     //
     this.btnsuatk.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnsuatk.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnsuatk.Location = new System.Drawing.Point(215, 42);
     this.btnsuatk.Name = "btnsuatk";
     this.btnsuatk.Size = new System.Drawing.Size(75, 23);
     this.btnsuatk.TabIndex = 4;
     this.btnsuatk.Text = "Sửa";
     this.btnsuatk.Click += new System.EventHandler(this.btnsuatk_Click);
     //
     // btnhuy
     //
     this.btnhuy.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnhuy.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnhuy.Location = new System.Drawing.Point(174, 88);
     this.btnhuy.Name = "btnhuy";
     this.btnhuy.Size = new System.Drawing.Size(75, 23);
     this.btnhuy.TabIndex = 2;
     this.btnhuy.Text = "Hủy";
     this.btnhuy.Visible = false;
     this.btnhuy.Click += new System.EventHandler(this.btnhuy_Click);
     //
     // txttienkham
     //
     //
     //
     //
     this.txttienkham.Border.Class = "TextBoxBorder";
     this.txttienkham.Enabled = false;
     this.txttienkham.Location = new System.Drawing.Point(121, 45);
     this.txttienkham.Name = "txttienkham";
     this.txttienkham.Size = new System.Drawing.Size(88, 20);
     this.txttienkham.TabIndex = 1;
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     this.labelX2.Location = new System.Drawing.Point(43, 42);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(62, 23);
     this.labelX2.TabIndex = 3;
     this.labelX2.Text = "Tiền khám :";
     //
     // groupPanel2
     //
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.groupPanel4);
     this.groupPanel2.Controls.Add(this.btnhuysobn);
     this.groupPanel2.Controls.Add(this.labelX1);
     this.groupPanel2.Controls.Add(this.btnsuasbn);
     this.groupPanel2.Controls.Add(this.txtsobntoida);
     this.groupPanel2.Location = new System.Drawing.Point(11, 12);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(308, 147);
     //
     //
     //
     this.groupPanel2.Style.BackColor = System.Drawing.Color.White;
     this.groupPanel2.Style.BackColor2 = System.Drawing.Color.White;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 2;
     this.groupPanel2.Style.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 2;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 2;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 2;
     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 = 3;
     //
     // groupPanel4
     //
     this.groupPanel4.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel4.Controls.Add(this.btnsuasobn);
     this.groupPanel4.Controls.Add(this.btnhuybn);
     this.groupPanel4.Controls.Add(this.btnok);
     this.groupPanel4.Controls.Add(this.labelX3);
     this.groupPanel4.Controls.Add(this.txtsobn);
     this.groupPanel4.Location = new System.Drawing.Point(-3, -3);
     this.groupPanel4.Name = "groupPanel4";
     this.groupPanel4.Size = new System.Drawing.Size(308, 147);
     //
     //
     //
     this.groupPanel4.Style.BackColor = System.Drawing.Color.White;
     this.groupPanel4.Style.BackColor2 = System.Drawing.Color.White;
     this.groupPanel4.Style.BackColorGradientAngle = 90;
     this.groupPanel4.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderBottomWidth = 2;
     this.groupPanel4.Style.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
     this.groupPanel4.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderLeftWidth = 2;
     this.groupPanel4.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderRightWidth = 2;
     this.groupPanel4.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderTopWidth = 2;
     this.groupPanel4.Style.CornerDiameter = 4;
     this.groupPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel4.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel4.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel4.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel4.TabIndex = 4;
     //
     // btnsuasobn
     //
     this.btnsuasobn.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnsuasobn.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnsuasobn.Location = new System.Drawing.Point(215, 51);
     this.btnsuasobn.Name = "btnsuasobn";
     this.btnsuasobn.Size = new System.Drawing.Size(75, 23);
     this.btnsuasobn.TabIndex = 7;
     this.btnsuasobn.Text = "Sửa";
     this.btnsuasobn.Click += new System.EventHandler(this.buttonX1_Click_1);
     //
     // btnhuybn
     //
     this.btnhuybn.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnhuybn.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnhuybn.Location = new System.Drawing.Point(174, 93);
     this.btnhuybn.Name = "btnhuybn";
     this.btnhuybn.Size = new System.Drawing.Size(75, 23);
     this.btnhuybn.TabIndex = 5;
     this.btnhuybn.Text = "Hủy";
     this.btnhuybn.Visible = false;
     this.btnhuybn.Click += new System.EventHandler(this.btnhuybn_Click);
     //
     // btnok
     //
     this.btnok.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnok.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnok.Location = new System.Drawing.Point(93, 93);
     this.btnok.Name = "btnok";
     this.btnok.Size = new System.Drawing.Size(75, 23);
     this.btnok.TabIndex = 3;
     this.btnok.Text = "OK";
     this.btnok.Visible = false;
     this.btnok.Click += new System.EventHandler(this.btnok_Click);
     //
     // labelX3
     //
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     this.labelX3.Location = new System.Drawing.Point(13, 50);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(105, 23);
     this.labelX3.TabIndex = 2;
     this.labelX3.Text = "Số bệnh nhân tối đa :";
     //
     // txtsobn
     //
     //
     //
     //
     this.txtsobn.Border.Class = "TextBoxBorder";
     this.txtsobn.Enabled = false;
     this.txtsobn.Location = new System.Drawing.Point(121, 53);
     this.txtsobn.Name = "txtsobn";
     this.txtsobn.Size = new System.Drawing.Size(88, 20);
     this.txtsobn.TabIndex = 0;
     this.txtsobn.TextChanged += new System.EventHandler(this.txtsobn_TextChanged);
     //
     // btnhuysobn
     //
     this.btnhuysobn.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnhuysobn.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnhuysobn.Location = new System.Drawing.Point(174, 96);
     this.btnhuysobn.Name = "btnhuysobn";
     this.btnhuysobn.Size = new System.Drawing.Size(75, 23);
     this.btnhuysobn.TabIndex = 1;
     this.btnhuysobn.Text = "Hủy";
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     this.labelX1.Location = new System.Drawing.Point(25, 53);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(105, 23);
     this.labelX1.TabIndex = 2;
     this.labelX1.Text = "Số bệnh nhân tối đa :";
     //
     // btnsuasbn
     //
     this.btnsuasbn.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnsuasbn.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnsuasbn.Location = new System.Drawing.Point(81, 96);
     this.btnsuasbn.Name = "btnsuasbn";
     this.btnsuasbn.Size = new System.Drawing.Size(75, 23);
     this.btnsuasbn.TabIndex = 0;
     this.btnsuasbn.Text = "Sửa";
     //
     // txtsobntoida
     //
     //
     //
     //
     this.txtsobntoida.Border.Class = "TextBoxBorder";
     this.txtsobntoida.Enabled = false;
     this.txtsobntoida.Location = new System.Drawing.Point(136, 56);
     this.txtsobntoida.Name = "txtsobntoida";
     this.txtsobntoida.Size = new System.Drawing.Size(113, 20);
     this.txtsobntoida.TabIndex = 0;
     //
     // frmthaydoiquidinh
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(332, 340);
     this.Controls.Add(this.groupPanel1);
     this.MaximizeBox = false;
     this.Name = "frmthaydoiquidinh";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Thay đổi qui định";
     this.Load += new System.EventHandler(this.frmthaydoiquidinh_Load);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel3.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel4.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.panel1 = new System.Windows.Forms.Panel();
     this.txtSearch = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.panel2 = new System.Windows.Forms.Panel();
     this.btnSchoolYearSemester = new DevComponents.DotNetBar.ButtonX();
     this.panel3 = new System.Windows.Forms.Panel();
     this.treeWho = new DevComponents.AdvTree.AdvTree();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.menuOpenNewLPView = new System.Windows.Forms.ToolStripMenuItem();
     this.menuExpand = new System.Windows.Forms.ToolStripMenuItem();
     this.menuCollapse = new System.Windows.Forms.ToolStripMenuItem();
     this.node1 = new DevComponents.AdvTree.Node();
     this.nodeConnector1 = new DevComponents.AdvTree.NodeConnector();
     this.elementStyle1 = new DevComponents.DotNetBar.ElementStyle();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeWho)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Transparent;
     this.panel1.Controls.Add(this.txtSearch);
     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(200, 25);
     this.panel1.TabIndex = 2;
     //
     // txtSearch
     //
     this.txtSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.txtSearch.Border.Class = "TextBoxBorder";
     this.txtSearch.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtSearch.Location = new System.Drawing.Point(11, 3);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(177, 22);
     this.txtSearch.TabIndex = 2;
     this.txtSearch.WatermarkText = "依教師姓名搜尋";
     this.txtSearch.TextChanged += new System.EventHandler(this.txtSearch_TextChanged);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.btnSchoolYearSemester);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel2.Location = new System.Drawing.Point(0, 482);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(200, 18);
     this.panel2.TabIndex = 3;
     //
     // btnSchoolYearSemester
     //
     this.btnSchoolYearSemester.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnSchoolYearSemester.AutoExpandOnClick = true;
     this.btnSchoolYearSemester.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnSchoolYearSemester.Dock = System.Windows.Forms.DockStyle.Fill;
     this.btnSchoolYearSemester.Location = new System.Drawing.Point(0, 0);
     this.btnSchoolYearSemester.Name = "btnSchoolYearSemester";
     this.btnSchoolYearSemester.Size = new System.Drawing.Size(200, 18);
     this.btnSchoolYearSemester.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnSchoolYearSemester.TabIndex = 0;
     this.btnSchoolYearSemester.Text = "buttonX1";
     //
     // panel3
     //
     this.panel3.Controls.Add(this.treeWho);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 25);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(200, 457);
     this.panel3.TabIndex = 4;
     //
     // treeWho
     //
     this.treeWho.AccessibleRole = System.Windows.Forms.AccessibleRole.Outline;
     this.treeWho.AllowDrop = true;
     this.treeWho.BackColor = System.Drawing.SystemColors.Window;
     //
     //
     //
     this.treeWho.BackgroundStyle.Class = "TreeBorderKey";
     this.treeWho.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.treeWho.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeWho.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.treeWho.Location = new System.Drawing.Point(0, 0);
     this.treeWho.Name = "treeWho";
     this.treeWho.Nodes.AddRange(new DevComponents.AdvTree.Node[] {
     this.node1});
     this.treeWho.NodesConnector = this.nodeConnector1;
     this.treeWho.NodeStyle = this.elementStyle1;
     this.treeWho.PathSeparator = ";";
     this.treeWho.Size = new System.Drawing.Size(200, 457);
     this.treeWho.Styles.Add(this.elementStyle1);
     this.treeWho.TabIndex = 0;
     this.treeWho.Text = "advTree1";
     this.treeWho.AfterNodeSelect += new DevComponents.AdvTree.AdvTreeNodeEventHandler(this.treeWho_AfterNodeSelect);
     this.treeWho.NodeMouseDown += new DevComponents.AdvTree.TreeNodeMouseEventHandler(this.treeWho_NodeMouseDown);
     this.treeWho.NodeClick += new DevComponents.AdvTree.TreeNodeMouseEventHandler(this.treeWho_NodeClick);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.menuOpenNewLPView,
     this.menuExpand,
     this.menuCollapse});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(131, 70);
     //
     // menuOpenNewLPView
     //
     this.menuOpenNewLPView.Name = "menuOpenNewLPView";
     this.menuOpenNewLPView.Size = new System.Drawing.Size(130, 22);
     this.menuOpenNewLPView.Text = "開新功課表";
     //
     // menuExpand
     //
     this.menuExpand.Name = "menuExpand";
     this.menuExpand.Size = new System.Drawing.Size(130, 22);
     this.menuExpand.Text = "展開";
     //
     // menuCollapse
     //
     this.menuCollapse.Name = "menuCollapse";
     this.menuCollapse.Size = new System.Drawing.Size(130, 22);
     this.menuCollapse.Text = "收合";
     //
     // node1
     //
     this.node1.Expanded = true;
     this.node1.Name = "node1";
     this.node1.Text = "node1";
     //
     // nodeConnector1
     //
     this.nodeConnector1.LineColor = System.Drawing.SystemColors.ControlText;
     //
     // elementStyle1
     //
     this.elementStyle1.Class = "";
     this.elementStyle1.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.elementStyle1.Name = "elementStyle1";
     this.elementStyle1.TextColor = System.Drawing.SystemColors.ControlText;
     //
     // usrTeacherList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Name = "usrTeacherList";
     this.Size = new System.Drawing.Size(200, 500);
     this.Load += new System.EventHandler(this.usrTeacherList_Load);
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeWho)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     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();
     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);
 }
Exemplo n.º 45
0
 /// <summary> 
 /// Método necesario para admitir el Diseñador. No se puede modificar 
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Tipo_Empresa));
     this.dgvTipoEmpresa = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.txtDescripcion = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtNombre = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.superValidator1 = new DevComponents.DotNetBar.Validator.SuperValidator();
     this.requiredFieldValidator1 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Campo requerido");
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.highlighter1 = new DevComponents.DotNetBar.Validator.Highlighter();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     ((System.ComponentModel.ISupportInitialize)(this.dgvTipoEmpresa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // dgvTipoEmpresa
     //
     this.dgvTipoEmpresa.AllowUserToAddRows = false;
     this.dgvTipoEmpresa.AllowUserToDeleteRows = false;
     this.dgvTipoEmpresa.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgvTipoEmpresa.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgvTipoEmpresa.DefaultCellStyle = dataGridViewCellStyle1;
     this.dgvTipoEmpresa.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
     this.dgvTipoEmpresa.Location = new System.Drawing.Point(29, 179);
     this.dgvTipoEmpresa.MultiSelect = false;
     this.dgvTipoEmpresa.Name = "dgvTipoEmpresa";
     this.dgvTipoEmpresa.ReadOnly = true;
     this.dgvTipoEmpresa.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvTipoEmpresa.Size = new System.Drawing.Size(473, 150);
     this.dgvTipoEmpresa.TabIndex = 1;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(29, 86);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 23);
     this.labelX2.TabIndex = 13;
     this.labelX2.Text = "Descripcion :";
     //
     // txtDescripcion
     //
     this.txtDescripcion.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtDescripcion.Border.Class = "TextBoxBorder";
     this.txtDescripcion.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtDescripcion.ForeColor = System.Drawing.Color.Black;
     this.txtDescripcion.Location = new System.Drawing.Point(110, 85);
     this.txtDescripcion.Multiline = true;
     this.txtDescripcion.Name = "txtDescripcion";
     this.txtDescripcion.ReadOnly = true;
     this.txtDescripcion.Size = new System.Drawing.Size(271, 81);
     this.txtDescripcion.TabIndex = 3;
     //
     // txtNombre
     //
     this.txtNombre.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtNombre.Border.Class = "TextBoxBorder";
     this.txtNombre.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtNombre.ForeColor = System.Drawing.Color.Black;
     this.txtNombre.Location = new System.Drawing.Point(110, 59);
     this.txtNombre.MaxLength = 50;
     this.txtNombre.Name = "txtNombre";
     this.txtNombre.ReadOnly = true;
     this.txtNombre.Size = new System.Drawing.Size(134, 20);
     this.txtNombre.TabIndex = 2;
     this.superValidator1.SetValidator1(this.txtNombre, this.requiredFieldValidator1);
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(29, 56);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
     this.labelX1.TabIndex = 10;
     this.labelX1.Text = "Nombre :";
     //
     // superValidator1
     //
     this.superValidator1.ContainerControl = this;
     this.superValidator1.ErrorProvider = this.errorProvider1;
     this.superValidator1.Highlighter = this.highlighter1;
     //
     // requiredFieldValidator1
     //
     this.requiredFieldValidator1.ErrorMessage = "Campo requerido";
     this.requiredFieldValidator1.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // highlighter1
     //
     this.highlighter1.ContainerControl = this;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX3.Location = new System.Drawing.Point(185, 17);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(182, 23);
     this.labelX3.TabIndex = 15;
     this.labelX3.Text = "TIPOS DE EMPRESA";
     //
     // Tipo_Empresa
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.dgvTipoEmpresa);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.txtDescripcion);
     this.Controls.Add(this.txtNombre);
     this.Controls.Add(this.labelX1);
     this.Name = "Tipo_Empresa";
     this.Size = new System.Drawing.Size(529, 343);
     this.Load += new System.EventHandler(this.Tipo_Empresa_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgvTipoEmpresa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 46
0
 /// <summary> 
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     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.tabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.contextMenuStripDelete = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.errGradeYear = 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.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colSubject = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colLevel = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.lblName = new DevComponents.DotNetBar.LabelX();
     this.txtNote = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.txtClassCode = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.txtGradeYear = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.lblClassroomDesc = new DevComponents.DotNetBar.LabelX();
     this.contextMenuBusy.SuspendLayout();
     this.contextMenuStripDelete.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errGradeYear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).BeginInit();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // 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 = "取消設定";
     //
     // tabItem2
     //
     this.tabItem2.Name = "tabItem2";
     this.tabItem2.Text = "tabItem2";
     //
     // tabItem1
     //
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "tabItem1";
     //
     // 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(70, 26);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(69, 22);
     this.toolStripMenuItem2.Text = "刪除";
     this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItemDelete_Click);
     //
     // errGradeYear
     //
     this.errGradeYear.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.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.dataGridViewTextBoxColumn1.ToolTipText = "只能輸入1到7";
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn2.HeaderText = "開始時間";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     this.dataGridViewTextBoxColumn2.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn3.HeaderText = "結束時間";
     this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
     this.dataGridViewTextBoxColumn3.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dataGridViewTextBoxColumn4
     //
     this.dataGridViewTextBoxColumn4.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.dataGridViewTextBoxColumn4.HeaderText = "不排課描述";
     this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
     //
     // dataGridViewTextBoxColumn5
     //
     this.dataGridViewTextBoxColumn5.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn5.HeaderText = "星期";
     this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
     this.dataGridViewTextBoxColumn5.ReadOnly = true;
     this.dataGridViewTextBoxColumn5.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn5.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.dataGridViewTextBoxColumn5.ToolTipText = "只能輸入1到7";
     //
     // dataGridViewTextBoxColumn6
     //
     this.dataGridViewTextBoxColumn6.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn6.HeaderText = "開始時間";
     this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
     this.dataGridViewTextBoxColumn6.ReadOnly = true;
     this.dataGridViewTextBoxColumn6.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn6.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dataGridViewTextBoxColumn7
     //
     this.dataGridViewTextBoxColumn7.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn7.HeaderText = "結束時間";
     this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
     this.dataGridViewTextBoxColumn7.ReadOnly = true;
     this.dataGridViewTextBoxColumn7.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn7.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dataGridViewTextBoxColumn8
     //
     this.dataGridViewTextBoxColumn8.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.dataGridViewTextBoxColumn8.HeaderText = "不排課描述";
     this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
     this.dataGridViewTextBoxColumn8.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";
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.lblName);
     this.panelEx1.Controls.Add(this.txtNote);
     this.panelEx1.Controls.Add(this.labelX6);
     this.panelEx1.Controls.Add(this.txtClassCode);
     this.panelEx1.Controls.Add(this.labelX5);
     this.panelEx1.Controls.Add(this.txtGradeYear);
     this.panelEx1.Controls.Add(this.lblClassroomDesc);
     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(640, 428);
     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 = 2;
     //
     // lblName
     //
     this.lblName.AutoSize = true;
     //
     //
     //
     this.lblName.BackgroundStyle.Class = "";
     this.lblName.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblName.Font = new System.Drawing.Font("微軟正黑體", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.lblName.Location = new System.Drawing.Point(13, 12);
     this.lblName.Name = "lblName";
     this.lblName.Size = new System.Drawing.Size(87, 32);
     this.lblName.TabIndex = 29;
     this.lblName.Text = "班級名稱";
     //
     // txtNote
     //
     //
     //
     //
     this.txtNote.Border.Class = "TextBoxBorder";
     this.txtNote.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtNote.Location = new System.Drawing.Point(60, 139);
     this.txtNote.Multiline = true;
     this.txtNote.Name = "txtNote";
     this.txtNote.Size = new System.Drawing.Size(211, 202);
     this.txtNote.TabIndex = 28;
     //
     // labelX6
     //
     this.labelX6.AutoSize = true;
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Location = new System.Drawing.Point(14, 139);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(34, 21);
     this.labelX6.TabIndex = 27;
     this.labelX6.Text = "註記";
     //
     // txtClassCode
     //
     //
     //
     //
     this.txtClassCode.Border.Class = "TextBoxBorder";
     this.txtClassCode.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtClassCode.Location = new System.Drawing.Point(59, 93);
     this.txtClassCode.Name = "txtClassCode";
     this.txtClassCode.Size = new System.Drawing.Size(107, 25);
     this.txtClassCode.TabIndex = 26;
     //
     // labelX5
     //
     this.labelX5.AutoSize = true;
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Location = new System.Drawing.Point(14, 92);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(34, 21);
     this.labelX5.TabIndex = 25;
     this.labelX5.Text = "代碼";
     //
     // txtGradeYear
     //
     //
     //
     //
     this.txtGradeYear.Border.Class = "TextBoxBorder";
     this.txtGradeYear.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtGradeYear.Location = new System.Drawing.Point(59, 50);
     this.txtGradeYear.Name = "txtGradeYear";
     this.txtGradeYear.Size = new System.Drawing.Size(107, 25);
     this.txtGradeYear.TabIndex = 24;
     //
     // lblClassroomDesc
     //
     this.lblClassroomDesc.AutoSize = true;
     //
     //
     //
     this.lblClassroomDesc.BackgroundStyle.Class = "";
     this.lblClassroomDesc.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblClassroomDesc.Location = new System.Drawing.Point(14, 52);
     this.lblClassroomDesc.Name = "lblClassroomDesc";
     this.lblClassroomDesc.Size = new System.Drawing.Size(34, 21);
     this.lblClassroomDesc.TabIndex = 23;
     this.lblClassroomDesc.Text = "年級";
     //
     // ClassEditor
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.Controls.Add(this.panelEx1);
     this.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.Name = "ClassEditor";
     this.Size = new System.Drawing.Size(640, 428);
     this.contextMenuBusy.ResumeLayout(false);
     this.contextMenuStripDelete.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.errGradeYear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).EndInit();
     this.panelEx1.ResumeLayout(false);
     this.panelEx1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(add_sys_user));
     this.formFrameSkinner1 = new Elegant.Ui.FormFrameSkinner();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBoxX3 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.buttonX2 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.maskedTextBox1 = new System.Windows.Forms.MaskedTextBox();
     this.textBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.switchButton1 = new DevComponents.DotNetBar.Controls.SwitchButton();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.groupPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // formFrameSkinner1
     //
     this.formFrameSkinner1.Form = this;
     //
     // groupPanel1
     //
     this.groupPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.textBoxX3);
     this.groupPanel1.Controls.Add(this.labelX5);
     this.groupPanel1.Controls.Add(this.buttonX2);
     this.groupPanel1.Controls.Add(this.buttonX1);
     this.groupPanel1.Controls.Add(this.maskedTextBox1);
     this.groupPanel1.Controls.Add(this.textBoxX2);
     this.groupPanel1.Controls.Add(this.textBoxX1);
     this.groupPanel1.Controls.Add(this.switchButton1);
     this.groupPanel1.Controls.Add(this.labelX4);
     this.groupPanel1.Controls.Add(this.labelX3);
     this.groupPanel1.Controls.Add(this.labelX2);
     this.groupPanel1.Controls.Add(this.labelX1);
     this.groupPanel1.Controls.Add(this.pictureBox1);
     this.groupPanel1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel1.Location = new System.Drawing.Point(12, 7);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(333, 435);
     //
     //
     //
     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 = 2;
     this.groupPanel1.Text = "إضافه مستخدم";
     //
     // textBoxX3
     //
     //
     //
     //
     this.textBoxX3.Border.Class = "TextBoxBorder";
     this.textBoxX3.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX3.Location = new System.Drawing.Point(14, 240);
     this.textBoxX3.Name = "textBoxX3";
     this.textBoxX3.Size = new System.Drawing.Size(213, 22);
     this.textBoxX3.TabIndex = 12;
     //
     // 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(227, 239);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(98, 20);
     this.labelX5.TabIndex = 11;
     this.labelX5.Text = " تاكيد كلمة المرور :";
     //
     // buttonX2
     //
     this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX2.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX2.Location = new System.Drawing.Point(15, 366);
     this.buttonX2.Name = "buttonX2";
     this.buttonX2.Size = new System.Drawing.Size(123, 23);
     this.buttonX2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX2.TabIndex = 10;
     this.buttonX2.Text = "صلاحيات المستخدم";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Image = ((System.Drawing.Image)(resources.GetObject("buttonX1.Image")));
     this.buttonX1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Right;
     this.buttonX1.Location = new System.Drawing.Point(152, 366);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(75, 23);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 9;
     this.buttonX1.Text = "إضافه";
     //
     // maskedTextBox1
     //
     this.maskedTextBox1.Location = new System.Drawing.Point(15, 277);
     this.maskedTextBox1.Mask = "000-0-000-000";
     this.maskedTextBox1.Name = "maskedTextBox1";
     this.maskedTextBox1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.maskedTextBox1.Size = new System.Drawing.Size(212, 22);
     this.maskedTextBox1.TabIndex = 8;
     //
     // textBoxX2
     //
     //
     //
     //
     this.textBoxX2.Border.Class = "TextBoxBorder";
     this.textBoxX2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX2.Location = new System.Drawing.Point(15, 202);
     this.textBoxX2.Name = "textBoxX2";
     this.textBoxX2.Size = new System.Drawing.Size(212, 22);
     this.textBoxX2.TabIndex = 7;
     //
     // textBoxX1
     //
     //
     //
     //
     this.textBoxX1.Border.Class = "TextBoxBorder";
     this.textBoxX1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX1.Location = new System.Drawing.Point(15, 164);
     this.textBoxX1.Name = "textBoxX1";
     this.textBoxX1.Size = new System.Drawing.Size(212, 22);
     this.textBoxX1.TabIndex = 6;
     //
     // switchButton1
     //
     //
     //
     //
     this.switchButton1.BackgroundStyle.Class = "";
     this.switchButton1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.switchButton1.Location = new System.Drawing.Point(15, 317);
     this.switchButton1.Name = "switchButton1";
     this.switchButton1.OffText = "لا يعمل";
     this.switchButton1.OnText = "يعمل";
     this.switchButton1.Size = new System.Drawing.Size(212, 22);
     this.switchButton1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.switchButton1.TabIndex = 5;
     //
     // labelX4
     //
     this.labelX4.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(234, 317);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(92, 22);
     this.labelX4.TabIndex = 4;
     this.labelX4.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(234, 276);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(92, 21);
     this.labelX3.TabIndex = 3;
     this.labelX3.Text = "الجوال :";
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(234, 201);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(92, 20);
     this.labelX2.TabIndex = 2;
     this.labelX2.Text = "كلمة المرور :";
     //
     // 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(233, 160);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(92, 25);
     this.labelX1.TabIndex = 1;
     this.labelX1.Text = "اسم المستخدم :";
     //
     // 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(97, 13);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(144, 132);
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // add_sys_user
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(363, 454);
     this.Controls.Add(this.groupPanel1);
     this.Name = "add_sys_user";
     this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.RightToLeftLayout = true;
     this.Text = "إضافه مستخدم";
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 48
0
        /// <summary>
        /// Fills the debug parameters grid with values.
        /// </summary>
        private void PopulateDebugParameters()
        {
            treeDebugParams.Nodes.Clear();
            ParametersToPass = new object[CurrentFunction.Parameters.Count];
            bool parametersMatch = false;
            List<object> parameterObjects = null;
            ValuesThatHaveBeenSet = new bool[CurrentFunction.Parameters.Count];

            if (FunctionRunner.CachedParameters.ContainsKey(CurrentFunction))
            {
                parameterObjects = FunctionRunner.CachedParameters[CurrentFunction];
                parametersMatch = CurrentFunction.Parameters.Count == parameterObjects.Count;

                if (parametersMatch)
                {
                    for (int i = 0; i < CurrentFunction.Parameters.Count; i++)
                    {
                        if (parameterObjects[i] == null || !CurrentFunction.Parameters[i].DataType.IsInstanceOfType(parameterObjects[i]))
                        {
                            parametersMatch = false;
                        }
                    }
                }
            }
            for (int i = 0; i < CurrentFunction.Parameters.Count; i++)
            {
                if (parametersMatch)
                {
                    ParametersToPass[i] = parameterObjects[i];
                    ValuesThatHaveBeenSet[i] = true;
                }
            }
            for (int i = 0; i < CurrentFunction.Parameters.Count; i++)
            {
                ParamInfo param = CurrentFunction.Parameters[i];
                string displayName = param.Name;
                //string displayName = string.Format("{2}. {0} ({1}):", param.Name, param.DataType, i + 1);
                string displayValue = "";
                DevComponents.AdvTree.Node node = new DevComponents.AdvTree.Node();
                node.Cells[0].StyleNormal = treeDebugParams.Styles["elementStyle1"];
                node.Tag = param;
                Control editControl = null;
                object existingParamObject = null;
                bool isBasicType = true;

                switch (param.DataType.Name.ToLower())
                {
                    case "bool":
                    case "boolean":
                        editControl = new DevComponents.DotNetBar.Controls.CheckBoxX();
                        ((DevComponents.DotNetBar.Controls.CheckBoxX)editControl).Checked = ValuesThatHaveBeenSet[i] ? (bool)ParametersToPass[i] : false;
                        ((DevComponents.DotNetBar.Controls.CheckBoxX)editControl).CheckedChangedEx += DebugParamChanged_CheckboxX;
                        break;
                    case "int":
                    case "int32":
                        editControl = new DevComponents.Editors.IntegerInput();
                        ((DevComponents.Editors.IntegerInput)editControl).Value = ValuesThatHaveBeenSet[i] ? (int)ParametersToPass[i] : 0;
                        ((DevComponents.Editors.IntegerInput)editControl).ValueChanged += DebugParamChanged_IntegerInput;
                        break;
                    case "double":
                        editControl = new DevComponents.Editors.DoubleInput();
                        ((DevComponents.Editors.DoubleInput)editControl).Value = ValuesThatHaveBeenSet[i] ? (double)ParametersToPass[i] : 0;
                        ((DevComponents.Editors.DoubleInput)editControl).ValueChanged += DebugParamChanged_DoubleInput;
                        break;
                    case "string":
                        editControl = new DevComponents.DotNetBar.Controls.TextBoxX();
                        editControl.Text = ValuesThatHaveBeenSet[i] ? (string)ParametersToPass[i] : "";
                        editControl.TextChanged += DebugParamChanged_TextBoxX;
                        break;
                    default:
                        //MessageBox.Show(string.Format("Parameter-type not handled yet: {0}.\n\nPlease contact [email protected]", param.DataType.Name), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                        //return;
                        isBasicType = false;
                        break;
                }
                if (isBasicType)
                {
                    node.Text = string.Format("{0} ({1})", param.Name, param.DataType);
                }
                //if (param.DataType.GetInterface("ArchAngel.Interfaces.IScriptBaseObject") != null)
                if (!isBasicType)
                {
                    if (ParametersToPass[i] != null)
                    {
                        displayValue = ProviderInfo.GetDisplayName(ParametersToPass[i]);
                    }
                    else
                    {
                        // Let's check whether another function has previously set a value for this kind of object...
                        foreach (List<object> paramList in FunctionRunner.CachedParameters.Values)
                        {
                            foreach (object existingParam in paramList)
                            {
                                if (param.DataType.IsInstanceOfType(existingParam))
                                {
                                    existingParamObject = existingParam;
                                    ValuesThatHaveBeenSet[i] = true;
                                    ParametersToPass[i] = existingParamObject;
                                    displayValue = ProviderInfo.GetDisplayName(existingParam);
                                }
                            }
                        }
                        if (existingParamObject == null)
                        {
                            //node.Cells[0].StyleNormal = treeDebugParams.Styles["elementStyleMissing"];
                            node.ImageIndex = 1;
                            displayValue = "Click to set";
                        }
                    }
                    //editControl = new DevComponents.DotNetBar.Controls.ComboTree();
                    editControl = new ButtonX();
                    editControl.Text = editControl.Text = ValuesThatHaveBeenSet[i] ? displayValue : "Click to set";
                    editControl.Text = string.Format("<u>{0}</u>", editControl.Text);
                    editControl.Tag = existingParamObject;
                    ((ButtonX)editControl).ColorTable = eButtonColor.Flat;
                    ((ButtonX)editControl).Style = eDotNetBarStyle.OfficeXP;
                    ((ButtonX)editControl).FocusCuesEnabled = false;
                    editControl.Cursor = Cursors.Hand;
                    editControl.Click += DebugParamChanged_ButtonX;

                    //string[] prevSelections = new string[] { "red", "blue", "green"};

                    //foreach (string prevSelection in prevSelections)
                    //{
                    //    DevComponents.AdvTree.Node prevSelNode = new DevComponents.AdvTree.Node();
                    //    prevSelNode.Text = prevSelection;
                    //    //((DevComponents.DotNetBar.Controls.ComboTree)editControl).Nodes.Add(prevSelNode);
                    //    //((ComboBox)editControl).Items.Add(prevSelection);
                    //    //((DevComponents.DotNetBar.Controls.ComboTree)editControl).Dock = DockStyle.Fill;
                    //    //((DevComponents.DotNetBar.Controls.ComboTree)editControl).SelectedIndex = 0;
                    //}
                    node.Text = displayName;
                    //node.he
                }
                DevComponents.AdvTree.Cell cell = new DevComponents.AdvTree.Cell();
                cell.HostedControl = editControl;
                cell.StyleNormal = treeDebugParams.Styles["elementStyle1"];
                node.Cells.Add(cell);
                treeDebugParams.Nodes.Add(node);
            }
            SetCachedParameters();
        }
Exemplo n.º 49
0
 /// <summary> 
 /// Método necesario para admitir el Diseñador. No se puede modificar 
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Agrupaciones));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.txtNombre = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtDescripcion = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.superValidator2 = new DevComponents.DotNetBar.Validator.SuperValidator();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.highlighter1 = new DevComponents.DotNetBar.Validator.Highlighter();
     this.dgAgrupaciones = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.requiredFieldValidator2 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Your error message here.");
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgAgrupaciones)).BeginInit();
     this.SuspendLayout();
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(29, 57);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "Nombre :";
     //
     // txtNombre
     //
     this.txtNombre.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtNombre.Border.Class = "TextBoxBorder";
     this.txtNombre.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtNombre.ForeColor = System.Drawing.Color.Black;
     this.txtNombre.Location = new System.Drawing.Point(110, 60);
     this.txtNombre.MaxLength = 50;
     this.txtNombre.Name = "txtNombre";
     this.txtNombre.ReadOnly = true;
     this.txtNombre.Size = new System.Drawing.Size(137, 20);
     this.txtNombre.TabIndex = 1;
     this.superValidator2.SetValidator1(this.txtNombre, this.requiredFieldValidator2);
     //
     // txtDescripcion
     //
     this.txtDescripcion.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtDescripcion.Border.Class = "TextBoxBorder";
     this.txtDescripcion.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtDescripcion.ForeColor = System.Drawing.Color.Black;
     this.txtDescripcion.Location = new System.Drawing.Point(110, 86);
     this.txtDescripcion.MaxLength = 3000;
     this.txtDescripcion.Multiline = true;
     this.txtDescripcion.Name = "txtDescripcion";
     this.txtDescripcion.ReadOnly = true;
     this.txtDescripcion.Size = new System.Drawing.Size(271, 60);
     this.txtDescripcion.TabIndex = 2;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(29, 87);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 23);
     this.labelX2.TabIndex = 3;
     this.labelX2.Text = "Descripcion :";
     //
     // superValidator2
     //
     this.superValidator2.ContainerControl = this;
     this.superValidator2.ErrorProvider = this.errorProvider1;
     this.superValidator2.Highlighter = this.highlighter1;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // highlighter1
     //
     this.highlighter1.ContainerControl = this;
     //
     // dgAgrupaciones
     //
     this.dgAgrupaciones.AllowUserToAddRows = false;
     this.dgAgrupaciones.AllowUserToDeleteRows = false;
     this.dgAgrupaciones.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgAgrupaciones.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgAgrupaciones.DefaultCellStyle = dataGridViewCellStyle2;
     this.dgAgrupaciones.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(241)))), ((int)(((byte)(250)))));
     this.dgAgrupaciones.Location = new System.Drawing.Point(29, 161);
     this.dgAgrupaciones.Name = "dgAgrupaciones";
     this.dgAgrupaciones.ReadOnly = true;
     this.dgAgrupaciones.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgAgrupaciones.Size = new System.Drawing.Size(466, 150);
     this.dgAgrupaciones.TabIndex = 4;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX3.Location = new System.Drawing.Point(146, 17);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(249, 23);
     this.labelX3.TabIndex = 5;
     this.labelX3.Text = "Agrupaciónes / Gremios";
     this.labelX3.Click += new System.EventHandler(this.labelX3_Click);
     //
     // requiredFieldValidator2
     //
     this.requiredFieldValidator2.ErrorMessage = "Your error message here.";
     this.requiredFieldValidator2.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // Agrupaciones
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.dgAgrupaciones);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.txtDescripcion);
     this.Controls.Add(this.txtNombre);
     this.Controls.Add(this.labelX1);
     this.Name = "Agrupaciones";
     this.Size = new System.Drawing.Size(523, 329);
     this.Load += new System.EventHandler(this.Solicitud_Apoyo_Load);
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgAgrupaciones)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle 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>
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </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);
 }
Exemplo n.º 52
0
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.textBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX3 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX4 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX5 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX6 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX7 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX8 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX9 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX10 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX11 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX12 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX13 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX14 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX15 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX16 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX17 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX18 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX19 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX20 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX21 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX22 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX23 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX24 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX26 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX27 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX28 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
            this.textBoxX29 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX30 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX31 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX25 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX32 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX33 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.SuspendLayout();
            //
            // textBoxX1
            //
            this.textBoxX1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX1.Border.Class = "TextBoxBorder";
            this.textBoxX1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX1.Location = new System.Drawing.Point(0, 0);
            this.textBoxX1.Name = "textBoxX1";
            this.textBoxX1.Size = new System.Drawing.Size(180, 21);
            this.textBoxX1.TabIndex = 0;
            //
            // textBoxX2
            //
            this.textBoxX2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX2.Border.Class = "TextBoxBorder";
            this.textBoxX2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX2.Location = new System.Drawing.Point(180, 0);
            this.textBoxX2.Name = "textBoxX2";
            this.textBoxX2.Size = new System.Drawing.Size(180, 21);
            this.textBoxX2.TabIndex = 1;
            this.textBoxX2.Text = "共用模板块数";
            this.textBoxX2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;

            //
            // textBoxX3
            //
            this.textBoxX3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX3.Border.Class = "TextBoxBorder";
            this.textBoxX3.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX3.Location = new System.Drawing.Point(360, 0);
            this.textBoxX3.Name = "textBoxX3";
            this.textBoxX3.Size = new System.Drawing.Size(180, 21);
            this.textBoxX3.TabIndex = 2;
            this.textBoxX3.Text = "共用模板种类";
            this.textBoxX3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            //
            // textBoxX4
            //
            this.textBoxX4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX4.Border.Class = "TextBoxBorder";
            this.textBoxX4.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX4.Location = new System.Drawing.Point(540, 0);
            this.textBoxX4.Name = "textBoxX4";
            this.textBoxX4.Size = new System.Drawing.Size(180, 21);
            this.textBoxX4.TabIndex = 3;
            this.textBoxX4.Text = "所需镶木面积";
            this.textBoxX4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            //
            // textBoxX5
            //
            this.textBoxX5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX5.Border.Class = "TextBoxBorder";
            this.textBoxX5.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX5.Location = new System.Drawing.Point(0, 21);
            this.textBoxX5.Name = "textBoxX5";
            this.textBoxX5.Size = new System.Drawing.Size(60, 21);
            this.textBoxX5.TabIndex = 4;
            this.textBoxX5.Text = "全部横向";
            //
            // textBoxX6
            //
            this.textBoxX6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX6.Border.Class = "TextBoxBorder";
            this.textBoxX6.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX6.Location = new System.Drawing.Point(60, 21);
            this.textBoxX6.Name = "textBoxX6";
            this.textBoxX6.Size = new System.Drawing.Size(60, 21);
            this.textBoxX6.TabIndex = 5;
            this.textBoxX6.Text = "长度方向";
            //
            // textBoxX7
            //
            this.textBoxX7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX7.Border.Class = "TextBoxBorder";
            this.textBoxX7.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX7.Location = new System.Drawing.Point(120, 21);
            this.textBoxX7.Name = "textBoxX7";
            this.textBoxX7.Size = new System.Drawing.Size(60, 21);
            this.textBoxX7.TabIndex = 6;
            this.textBoxX7.Text = "宽度方向";
            //
            // textBoxX8
            //
            this.textBoxX8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX8.Border.Class = "TextBoxBorder";
            this.textBoxX8.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX8.Location = new System.Drawing.Point(180, 21);
            this.textBoxX8.Name = "textBoxX8";
            this.textBoxX8.Size = new System.Drawing.Size(180, 21);
            this.textBoxX8.TabIndex = 7;
            //
            // textBoxX9
            //
            this.textBoxX9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX9.Border.Class = "TextBoxBorder";
            this.textBoxX9.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX9.Location = new System.Drawing.Point(360, 21);
            this.textBoxX9.Name = "textBoxX9";
            this.textBoxX9.Size = new System.Drawing.Size(180, 21);
            this.textBoxX9.TabIndex = 8;
            //
            // textBoxX10
            //
            this.textBoxX10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX10.Border.Class = "TextBoxBorder";
            this.textBoxX10.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX10.Location = new System.Drawing.Point(540, 21);
            this.textBoxX10.Name = "textBoxX10";
            this.textBoxX10.Size = new System.Drawing.Size(180, 21);
            this.textBoxX10.TabIndex = 9;
            //
            // textBoxX11
            //
            this.textBoxX11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX11.Border.Class = "TextBoxBorder";
            this.textBoxX11.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX11.Location = new System.Drawing.Point(0, 42);
            this.textBoxX11.Name = "textBoxX11";
            this.textBoxX11.Size = new System.Drawing.Size(60, 21);
            this.textBoxX11.TabIndex = 10;
            this.textBoxX11.Text = "全部纵向";
            //
            // textBoxX12
            //
            this.textBoxX12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX12.Border.Class = "TextBoxBorder";
            this.textBoxX12.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX12.Location = new System.Drawing.Point(60, 42);
            this.textBoxX12.Name = "textBoxX12";
            this.textBoxX12.Size = new System.Drawing.Size(60, 21);
            this.textBoxX12.TabIndex = 11;
            this.textBoxX12.Text = "宽度方向";
            //
            // textBoxX13
            //
            this.textBoxX13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX13.Border.Class = "TextBoxBorder";
            this.textBoxX13.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX13.Location = new System.Drawing.Point(120, 42);
            this.textBoxX13.Name = "textBoxX13";
            this.textBoxX13.Size = new System.Drawing.Size(60, 21);
            this.textBoxX13.TabIndex = 12;
            this.textBoxX13.Text = "长度方向";
            //
            // textBoxX14
            //
            this.textBoxX14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX14.Border.Class = "TextBoxBorder";
            this.textBoxX14.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX14.Location = new System.Drawing.Point(0, 63);
            this.textBoxX14.Name = "textBoxX14";
            this.textBoxX14.Size = new System.Drawing.Size(60, 21);
            this.textBoxX14.TabIndex = 13;
            this.textBoxX14.Text = "横竖混合";
            //
            // textBoxX15
            //
            this.textBoxX15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX15.Border.Class = "TextBoxBorder";
            this.textBoxX15.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX15.Location = new System.Drawing.Point(60, 63);
            this.textBoxX15.Name = "textBoxX15";
            this.textBoxX15.Size = new System.Drawing.Size(60, 21);
            this.textBoxX15.TabIndex = 14;
            this.textBoxX15.Text = "长度方向";
            //
            // textBoxX16
            //
            this.textBoxX16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX16.Border.Class = "TextBoxBorder";
            this.textBoxX16.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX16.Location = new System.Drawing.Point(120, 63);
            this.textBoxX16.Name = "textBoxX16";
            this.textBoxX16.Size = new System.Drawing.Size(60, 21);
            this.textBoxX16.TabIndex = 15;
            this.textBoxX16.Text = "宽度方向";
            //
            // textBoxX17
            //
            this.textBoxX17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX17.Border.Class = "TextBoxBorder";
            this.textBoxX17.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX17.Location = new System.Drawing.Point(0, 84);
            this.textBoxX17.Name = "textBoxX17";
            this.textBoxX17.Size = new System.Drawing.Size(60, 21);
            this.textBoxX17.TabIndex = 16;
            this.textBoxX17.Text = "竖横混合";
            //
            // textBoxX18
            //
            this.textBoxX18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX18.Border.Class = "TextBoxBorder";
            this.textBoxX18.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX18.Location = new System.Drawing.Point(60, 84);
            this.textBoxX18.Name = "textBoxX18";
            this.textBoxX18.Size = new System.Drawing.Size(60, 21);
            this.textBoxX18.TabIndex = 17;
            this.textBoxX18.Text = "宽度方向";
            //
            // textBoxX19
            //
            this.textBoxX19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX19.Border.Class = "TextBoxBorder";
            this.textBoxX19.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX19.Location = new System.Drawing.Point(120, 84);
            this.textBoxX19.Name = "textBoxX19";
            this.textBoxX19.Size = new System.Drawing.Size(60, 21);
            this.textBoxX19.TabIndex = 18;
            this.textBoxX19.Text = "长度方向";
            //
            // textBoxX20
            //
            this.textBoxX20.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX20.Border.Class = "TextBoxBorder";
            this.textBoxX20.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX20.Location = new System.Drawing.Point(180, 42);
            this.textBoxX20.Name = "textBoxX20";
            this.textBoxX20.Size = new System.Drawing.Size(180, 21);
            this.textBoxX20.TabIndex = 19;
            //
            // textBoxX21
            //
            this.textBoxX21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX21.Border.Class = "TextBoxBorder";
            this.textBoxX21.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX21.Location = new System.Drawing.Point(360, 42);
            this.textBoxX21.Name = "textBoxX21";
            this.textBoxX21.Size = new System.Drawing.Size(180, 21);
            this.textBoxX21.TabIndex = 20;
            //
            // textBoxX22
            //
            this.textBoxX22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX22.Border.Class = "TextBoxBorder";
            this.textBoxX22.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX22.ForeColor = System.Drawing.SystemColors.WindowText;
            this.textBoxX22.Location = new System.Drawing.Point(540, 42);
            this.textBoxX22.Name = "textBoxX22";
            this.textBoxX22.Size = new System.Drawing.Size(180, 21);
            this.textBoxX22.TabIndex = 21;
            //
            // textBoxX23
            //
            this.textBoxX23.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX23.Border.Class = "TextBoxBorder";
            this.textBoxX23.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX23.Location = new System.Drawing.Point(180, 63);
            this.textBoxX23.Name = "textBoxX23";
            this.textBoxX23.Size = new System.Drawing.Size(180, 21);
            this.textBoxX23.TabIndex = 22;
            //
            // textBoxX24
            //
            this.textBoxX24.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX24.Border.Class = "TextBoxBorder";
            this.textBoxX24.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX24.Location = new System.Drawing.Point(360, 63);
            this.textBoxX24.Name = "textBoxX24";
            this.textBoxX24.Size = new System.Drawing.Size(180, 21);
            this.textBoxX24.TabIndex = 23;
            //
            // textBoxX26
            //
            this.textBoxX26.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX26.Border.Class = "TextBoxBorder";
            this.textBoxX26.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX26.Location = new System.Drawing.Point(180, 84);
            this.textBoxX26.Name = "textBoxX26";
            this.textBoxX26.Size = new System.Drawing.Size(180, 21);
            this.textBoxX26.TabIndex = 25;
            //
            // textBoxX27
            //
            this.textBoxX27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX27.Border.Class = "TextBoxBorder";
            this.textBoxX27.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX27.Location = new System.Drawing.Point(360, 84);
            this.textBoxX27.Name = "textBoxX27";
            this.textBoxX27.Size = new System.Drawing.Size(180, 21);
            this.textBoxX27.TabIndex = 26;
            //
            // textBoxX28
            //
            this.textBoxX28.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX28.Border.Class = "TextBoxBorder";
            this.textBoxX28.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX28.Location = new System.Drawing.Point(540, 84);
            this.textBoxX28.Name = "textBoxX28";
            this.textBoxX28.Size = new System.Drawing.Size(180, 21);
            this.textBoxX28.TabIndex = 27;
            //
            // buttonX1
            //
            this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX1.Location = new System.Drawing.Point(755, 131);
            this.buttonX1.Name = "buttonX1";
            this.buttonX1.Size = new System.Drawing.Size(75, 23);
            this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX1.TabIndex = 28;
            this.buttonX1.Text = "优化计算";
            this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
            //
            // textBoxX29
            //
            this.textBoxX29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX29.Border.Class = "TextBoxBorder";
            this.textBoxX29.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX29.Location = new System.Drawing.Point(717, 0);
            this.textBoxX29.Name = "textBoxX29";
            this.textBoxX29.Size = new System.Drawing.Size(113, 21);
            this.textBoxX29.TabIndex = 29;
            this.textBoxX29.Text = "排列";
            this.textBoxX29.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            //
            // textBoxX30
            //
            this.textBoxX30.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX30.Border.Class = "TextBoxBorder";
            this.textBoxX30.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX30.Location = new System.Drawing.Point(717, 21);
            this.textBoxX30.Name = "textBoxX30";
            this.textBoxX30.Size = new System.Drawing.Size(113, 21);
            this.textBoxX30.TabIndex = 30;
            this.textBoxX30.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;

            //
            // textBoxX31
            //
            this.textBoxX31.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX31.Border.Class = "TextBoxBorder";
            this.textBoxX31.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX31.Location = new System.Drawing.Point(717, 42);
            this.textBoxX31.Name = "textBoxX31";
            this.textBoxX31.Size = new System.Drawing.Size(113, 21);
            this.textBoxX31.TabIndex = 31;
            this.textBoxX31.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;

            //
            // textBoxX25
            //
            this.textBoxX25.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX25.Border.Class = "TextBoxBorder";
            this.textBoxX25.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX25.Location = new System.Drawing.Point(540, 63);
            this.textBoxX25.Name = "textBoxX25";
            this.textBoxX25.Size = new System.Drawing.Size(180, 21);
            this.textBoxX25.TabIndex = 33;
            //
            // textBoxX32
            //
            this.textBoxX32.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX32.Border.Class = "TextBoxBorder";
            this.textBoxX32.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX32.Location = new System.Drawing.Point(717, 63);
            this.textBoxX32.Name = "textBoxX32";
            this.textBoxX32.Size = new System.Drawing.Size(113, 21);
            this.textBoxX32.TabIndex = 34;
            this.textBoxX32.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;

            //
            // textBoxX33
            //
            this.textBoxX33.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
            //
            //
            //
            this.textBoxX33.Border.Class = "TextBoxBorder";
            this.textBoxX33.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX33.Location = new System.Drawing.Point(717, 84);
            this.textBoxX33.Name = "textBoxX33";
            this.textBoxX33.Size = new System.Drawing.Size(113, 21);
            this.textBoxX33.TabIndex = 35;
            this.textBoxX33.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            //
            // FemSelect
            //
            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(862, 166);
            this.Controls.Add(this.textBoxX33);
            this.Controls.Add(this.textBoxX32);
            this.Controls.Add(this.textBoxX25);
            this.Controls.Add(this.textBoxX31);
            this.Controls.Add(this.textBoxX30);
            this.Controls.Add(this.textBoxX29);
            this.Controls.Add(this.buttonX1);
            this.Controls.Add(this.textBoxX28);
            this.Controls.Add(this.textBoxX27);
            this.Controls.Add(this.textBoxX26);
            this.Controls.Add(this.textBoxX24);
            this.Controls.Add(this.textBoxX23);
            this.Controls.Add(this.textBoxX22);
            this.Controls.Add(this.textBoxX21);
            this.Controls.Add(this.textBoxX20);
            this.Controls.Add(this.textBoxX19);
            this.Controls.Add(this.textBoxX18);
            this.Controls.Add(this.textBoxX17);
            this.Controls.Add(this.textBoxX16);
            this.Controls.Add(this.textBoxX15);
            this.Controls.Add(this.textBoxX14);
            this.Controls.Add(this.textBoxX13);
            this.Controls.Add(this.textBoxX12);
            this.Controls.Add(this.textBoxX11);
            this.Controls.Add(this.textBoxX10);
            this.Controls.Add(this.textBoxX9);
            this.Controls.Add(this.textBoxX8);
            this.Controls.Add(this.textBoxX7);
            this.Controls.Add(this.textBoxX6);
            this.Controls.Add(this.textBoxX5);
            this.Controls.Add(this.textBoxX4);
            this.Controls.Add(this.textBoxX3);
            this.Controls.Add(this.textBoxX2);
            this.Controls.Add(this.textBoxX1);
            this.DoubleBuffered = true;
            this.Name = "FemSelect";
            this.Load += new System.EventHandler(this.FemSelect_Load);
            this.ResumeLayout(false);
        }
Exemplo n.º 53
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.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);
 }
Exemplo n.º 54
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>
 /// 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()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.label7 = new System.Windows.Forms.Label();
     this.txtBirthday = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.label4 = new System.Windows.Forms.Label();
     this.txtOtherPhone = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.label2 = new System.Windows.Forms.Label();
     this.txtMobil = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.label3 = new System.Windows.Forms.Label();
     this.txtResearch = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.label5 = new System.Windows.Forms.Label();
     this.txtPhone = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.label6 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.txtMajorWorkPlace = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.label10 = new System.Windows.Forms.Label();
     this.txtAddress = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtWebSiteUrl = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtMemo = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtEnglishName = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.label9 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.txtEmployeeNo = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtNtuSystemNo = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(28, 206);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(60, 17);
     this.label1.TabIndex = 0;
     this.label1.Text = "個人網址";
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.Location = new System.Drawing.Point(469, 206);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(34, 17);
     this.linkLabel1.TabIndex = 2;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "開啟";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(28, 110);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(60, 17);
     this.label7.TabIndex = 17;
     this.label7.Text = "生  日";
     //
     // txtBirthday
     //
     //
     //
     //
     this.txtBirthday.Border.Class = "TextBoxBorder";
     this.txtBirthday.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtBirthday.Location = new System.Drawing.Point(106, 110);
     this.txtBirthday.Name = "txtBirthday";
     this.txtBirthday.Size = new System.Drawing.Size(140, 25);
     this.txtBirthday.TabIndex = 7;
     this.txtBirthday.WatermarkText = "範例:1970/8/24";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(28, 143);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(60, 17);
     this.label4.TabIndex = 15;
     this.label4.Text = "戶籍地址";
     //
     // txtOtherPhone
     //
     //
     //
     //
     this.txtOtherPhone.Border.Class = "TextBoxBorder";
     this.txtOtherPhone.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtOtherPhone.Location = new System.Drawing.Point(363, 79);
     this.txtOtherPhone.Name = "txtOtherPhone";
     this.txtOtherPhone.Size = new System.Drawing.Size(140, 25);
     this.txtOtherPhone.TabIndex = 4;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(28, 47);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(60, 17);
     this.label2.TabIndex = 21;
     this.label2.Text = "手  機";
     //
     // txtMobil
     //
     //
     //
     //
     this.txtMobil.Border.Class = "TextBoxBorder";
     this.txtMobil.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtMobil.Location = new System.Drawing.Point(106, 47);
     this.txtMobil.Name = "txtMobil";
     this.txtMobil.Size = new System.Drawing.Size(140, 25);
     this.txtMobil.TabIndex = 3;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(272, 79);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(73, 17);
     this.label3.TabIndex = 19;
     this.label3.Text = "研究室電話";
     //
     // txtResearch
     //
     //
     //
     //
     this.txtResearch.Border.Class = "TextBoxBorder";
     this.txtResearch.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtResearch.Location = new System.Drawing.Point(363, 111);
     this.txtResearch.Name = "txtResearch";
     this.txtResearch.Size = new System.Drawing.Size(140, 25);
     this.txtResearch.TabIndex = 6;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(28, 79);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(60, 17);
     this.label5.TabIndex = 25;
     this.label5.Text = "電  話";
     //
     // txtPhone
     //
     //
     //
     //
     this.txtPhone.Border.Class = "TextBoxBorder";
     this.txtPhone.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtPhone.Location = new System.Drawing.Point(106, 79);
     this.txtPhone.Name = "txtPhone";
     this.txtPhone.Size = new System.Drawing.Size(140, 25);
     this.txtPhone.TabIndex = 5;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(285, 111);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(59, 17);
     this.label6.TabIndex = 23;
     this.label6.Text = "研  究  室";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(28, 172);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(60, 17);
     this.label8.TabIndex = 29;
     this.label8.Text = "所屬單位";
     //
     // txtMajorWorkPlace
     //
     //
     //
     //
     this.txtMajorWorkPlace.Border.Class = "TextBoxBorder";
     this.txtMajorWorkPlace.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtMajorWorkPlace.Location = new System.Drawing.Point(106, 172);
     this.txtMajorWorkPlace.Name = "txtMajorWorkPlace";
     this.txtMajorWorkPlace.Size = new System.Drawing.Size(397, 25);
     this.txtMajorWorkPlace.TabIndex = 9;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(28, 237);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(60, 17);
     this.label10.TabIndex = 30;
     this.label10.Text = "備  註";
     //
     // txtAddress
     //
     //
     //
     //
     this.txtAddress.Border.Class = "TextBoxBorder";
     this.txtAddress.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtAddress.Location = new System.Drawing.Point(106, 141);
     this.txtAddress.Name = "txtAddress";
     this.txtAddress.Size = new System.Drawing.Size(397, 25);
     this.txtAddress.TabIndex = 8;
     //
     // txtWebSiteUrl
     //
     //
     //
     //
     this.txtWebSiteUrl.Border.Class = "TextBoxBorder";
     this.txtWebSiteUrl.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtWebSiteUrl.Location = new System.Drawing.Point(106, 203);
     this.txtWebSiteUrl.Name = "txtWebSiteUrl";
     this.txtWebSiteUrl.Size = new System.Drawing.Size(357, 25);
     this.txtWebSiteUrl.TabIndex = 10;
     //
     // txtMemo
     //
     //
     //
     //
     this.txtMemo.Border.Class = "TextBoxBorder";
     this.txtMemo.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtMemo.Location = new System.Drawing.Point(106, 234);
     this.txtMemo.Multiline = true;
     this.txtMemo.Name = "txtMemo";
     this.txtMemo.Size = new System.Drawing.Size(397, 106);
     this.txtMemo.TabIndex = 11;
     //
     // txtEnglishName
     //
     //
     //
     //
     this.txtEnglishName.Border.Class = "TextBoxBorder";
     this.txtEnglishName.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtEnglishName.Location = new System.Drawing.Point(106, 16);
     this.txtEnglishName.Name = "txtEnglishName";
     this.txtEnglishName.Size = new System.Drawing.Size(140, 25);
     this.txtEnglishName.TabIndex = 1;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(27, 20);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(60, 17);
     this.label9.TabIndex = 36;
     this.label9.Text = "英文姓名";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(286, 19);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(60, 17);
     this.label11.TabIndex = 38;
     this.label11.Text = "教師编號";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(286, 50);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(60, 17);
     this.label12.TabIndex = 40;
     this.label12.Text = "人事编號";
     //
     // txtEmployeeNo
     //
     //
     //
     //
     this.txtEmployeeNo.Border.Class = "TextBoxBorder";
     this.txtEmployeeNo.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtEmployeeNo.Location = new System.Drawing.Point(363, 47);
     this.txtEmployeeNo.Name = "txtEmployeeNo";
     this.txtEmployeeNo.Size = new System.Drawing.Size(140, 25);
     this.txtEmployeeNo.TabIndex = 39;
     //
     // txtNtuSystemNo
     //
     //
     //
     //
     this.txtNtuSystemNo.Border.Class = "TextBoxBorder";
     this.txtNtuSystemNo.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtNtuSystemNo.Location = new System.Drawing.Point(363, 16);
     this.txtNtuSystemNo.Name = "txtNtuSystemNo";
     this.txtNtuSystemNo.Size = new System.Drawing.Size(140, 25);
     this.txtNtuSystemNo.TabIndex = 41;
     //
     // TeacherExtDetail
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.txtNtuSystemNo);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.txtEmployeeNo);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.txtEnglishName);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.txtMemo);
     this.Controls.Add(this.txtWebSiteUrl);
     this.Controls.Add(this.txtAddress);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.txtMajorWorkPlace);
     this.Controls.Add(this.txtResearch);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.txtPhone);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.txtOtherPhone);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.txtMobil);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.txtBirthday);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.linkLabel1);
     this.Controls.Add(this.label1);
     this.Group = "教師其他資訊";
     this.Name = "TeacherExtDetail";
     this.Size = new System.Drawing.Size(550, 355);
     this.Load += new System.EventHandler(this.TeacherExtDetail_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 57
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     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>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnExit = new DevComponents.DotNetBar.ButtonX();
     this.btnUpload = new DevComponents.DotNetBar.ButtonX();
     this.cbxByStudentNum = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.cbxByStudentIDNumber = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.cbxByClassNameSeatNo = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.cbxEnroll = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.cbxGraduate = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.btnBrowse = new DevComponents.DotNetBar.ButtonX();
     this.txtFilePath = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel2.SuspendLayout();
     this.groupPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // btnExit
     //
     this.btnExit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExit.AutoSize = true;
     this.btnExit.BackColor = System.Drawing.Color.Transparent;
     this.btnExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnExit.Location = new System.Drawing.Point(201, 169);
     this.btnExit.Margin = new System.Windows.Forms.Padding(2);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(51, 25);
     this.btnExit.TabIndex = 6;
     this.btnExit.Text = "離開";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnUpload
     //
     this.btnUpload.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnUpload.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnUpload.AutoSize = true;
     this.btnUpload.BackColor = System.Drawing.Color.Transparent;
     this.btnUpload.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnUpload.Location = new System.Drawing.Point(142, 169);
     this.btnUpload.Margin = new System.Windows.Forms.Padding(2);
     this.btnUpload.Name = "btnUpload";
     this.btnUpload.Size = new System.Drawing.Size(51, 25);
     this.btnUpload.TabIndex = 5;
     this.btnUpload.Text = "匯入";
     this.btnUpload.Click += new System.EventHandler(this.btnUpload_Click);
     //
     // cbxByStudentNum
     //
     this.cbxByStudentNum.AutoSize = true;
     //
     //
     //
     this.cbxByStudentNum.BackgroundStyle.Class = "";
     this.cbxByStudentNum.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.cbxByStudentNum.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.cbxByStudentNum.Checked = true;
     this.cbxByStudentNum.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbxByStudentNum.CheckValue = "Y";
     this.cbxByStudentNum.Enabled = false;
     this.cbxByStudentNum.Location = new System.Drawing.Point(11, 5);
     this.cbxByStudentNum.Margin = new System.Windows.Forms.Padding(2);
     this.cbxByStudentNum.Name = "cbxByStudentNum";
     this.cbxByStudentNum.Size = new System.Drawing.Size(54, 21);
     this.cbxByStudentNum.TabIndex = 1;
     this.cbxByStudentNum.Text = "學號";
     //
     // cbxByStudentIDNumber
     //
     this.cbxByStudentIDNumber.AutoSize = true;
     //
     //
     //
     this.cbxByStudentIDNumber.BackgroundStyle.Class = "";
     this.cbxByStudentIDNumber.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.cbxByStudentIDNumber.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.cbxByStudentIDNumber.Location = new System.Drawing.Point(97, 5);
     this.cbxByStudentIDNumber.Margin = new System.Windows.Forms.Padding(2);
     this.cbxByStudentIDNumber.Name = "cbxByStudentIDNumber";
     this.cbxByStudentIDNumber.Size = new System.Drawing.Size(80, 21);
     this.cbxByStudentIDNumber.TabIndex = 2;
     this.cbxByStudentIDNumber.Text = "身分證號";
     this.cbxByStudentIDNumber.Visible = false;
     //
     // cbxByClassNameSeatNo
     //
     this.cbxByClassNameSeatNo.AutoSize = true;
     this.cbxByClassNameSeatNo.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.cbxByClassNameSeatNo.BackgroundStyle.Class = "";
     this.cbxByClassNameSeatNo.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.cbxByClassNameSeatNo.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.cbxByClassNameSeatNo.Location = new System.Drawing.Point(23, 173);
     this.cbxByClassNameSeatNo.Margin = new System.Windows.Forms.Padding(2);
     this.cbxByClassNameSeatNo.Name = "cbxByClassNameSeatNo";
     this.cbxByClassNameSeatNo.Size = new System.Drawing.Size(80, 21);
     this.cbxByClassNameSeatNo.TabIndex = 3;
     this.cbxByClassNameSeatNo.Text = "班級姓名";
     this.cbxByClassNameSeatNo.Visible = false;
     //
     // groupPanel2
     //
     this.groupPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     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.cbxByStudentIDNumber);
     this.groupPanel2.Controls.Add(this.cbxByStudentNum);
     this.groupPanel2.Location = new System.Drawing.Point(9, 100);
     this.groupPanel2.Margin = new System.Windows.Forms.Padding(2);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(243, 59);
     //
     //
     //
     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 = 4;
     this.groupPanel2.Text = "命名方式";
     //
     // cbxEnroll
     //
     this.cbxEnroll.AutoSize = true;
     //
     //
     //
     this.cbxEnroll.BackgroundStyle.Class = "";
     this.cbxEnroll.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.cbxEnroll.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.cbxEnroll.Location = new System.Drawing.Point(11, 5);
     this.cbxEnroll.Margin = new System.Windows.Forms.Padding(2);
     this.cbxEnroll.Name = "cbxEnroll";
     this.cbxEnroll.Size = new System.Drawing.Size(80, 21);
     this.cbxEnroll.TabIndex = 0;
     this.cbxEnroll.Text = "入學照片";
     //
     // cbxGraduate
     //
     this.cbxGraduate.AutoSize = true;
     //
     //
     //
     this.cbxGraduate.BackgroundStyle.Class = "";
     this.cbxGraduate.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.cbxGraduate.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.cbxGraduate.Location = new System.Drawing.Point(97, 5);
     this.cbxGraduate.Margin = new System.Windows.Forms.Padding(2);
     this.cbxGraduate.Name = "cbxGraduate";
     this.cbxGraduate.Size = new System.Drawing.Size(80, 21);
     this.cbxGraduate.TabIndex = 1;
     this.cbxGraduate.Text = "畢業照片";
     //
     // groupPanel1
     //
     this.groupPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     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.cbxGraduate);
     this.groupPanel1.Controls.Add(this.cbxEnroll);
     this.groupPanel1.Location = new System.Drawing.Point(9, 37);
     this.groupPanel1.Margin = new System.Windows.Forms.Padding(2);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(243, 56);
     //
     //
     //
     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 = 3;
     this.groupPanel1.Text = "照片項目";
     //
     // btnBrowse
     //
     this.btnBrowse.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBrowse.AutoSize = true;
     this.btnBrowse.BackColor = System.Drawing.Color.Transparent;
     this.btnBrowse.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnBrowse.Location = new System.Drawing.Point(206, 9);
     this.btnBrowse.Margin = new System.Windows.Forms.Padding(2);
     this.btnBrowse.Name = "btnBrowse";
     this.btnBrowse.Size = new System.Drawing.Size(44, 25);
     this.btnBrowse.TabIndex = 2;
     this.btnBrowse.Text = "瀏覽";
     this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
     //
     // txtFilePath
     //
     this.txtFilePath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.txtFilePath.Border.Class = "TextBoxBorder";
     this.txtFilePath.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtFilePath.Location = new System.Drawing.Point(73, 9);
     this.txtFilePath.Margin = new System.Windows.Forms.Padding(2);
     this.txtFilePath.Name = "txtFilePath";
     this.txtFilePath.Size = new System.Drawing.Size(119, 25);
     this.txtFilePath.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(10, 11);
     this.labelX1.Margin = new System.Windows.Forms.Padding(2);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(60, 21);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "資料來源";
     //
     // PhotosBatchImportForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(259, 198);
     this.Controls.Add(this.cbxByClassNameSeatNo);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.btnUpload);
     this.Controls.Add(this.groupPanel2);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.btnBrowse);
     this.Controls.Add(this.txtFilePath);
     this.Controls.Add(this.labelX1);
     this.DoubleBuffered = true;
     this.Margin = new System.Windows.Forms.Padding(2);
     this.Name = "PhotosBatchImportForm";
     this.Text = "批次匯入學生照片(jpg格式)";
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel2.PerformLayout();
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     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.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.txt_mota = new DevComponents.DotNetBar.Controls.TextBoxX();
     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(12, 200);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(637, 267);
     //
     //
     //
     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 KHÁCH HÀNG";
     //
     // 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(611, 238);
     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 = 53;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Tên Nhóm";
     this.columnHeader2.Width = 218;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Mô Tả";
     this.columnHeader4.Width = 329;
     //
     // 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.labelX1);
     this.groupPanel2.Controls.Add(this.txt_mota);
     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(108, 38);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(388, 158);
     //
     //
     //
     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 = 1;
     this.groupPanel2.Text = "THÔNG TIN NHÓM KHÁCH HÀNG";
     //
     // labelX1
     //
     this.labelX1.Location = new System.Drawing.Point(3, 56);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(97, 25);
     this.labelX1.TabIndex = 72;
     this.labelX1.Text = "Mô Tả:";
     //
     // txt_mota
     //
     //
     //
     //
     this.txt_mota.Border.Class = "TextBoxBorder";
     this.txt_mota.FocusHighlightEnabled = true;
     this.txt_mota.Location = new System.Drawing.Point(106, 44);
     this.txt_mota.Multiline = true;
     this.txt_mota.Name = "txt_mota";
     this.txt_mota.Size = new System.Drawing.Size(193, 47);
     this.txt_mota.TabIndex = 1;
     //
     // 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, 103);
     this.panel5.Margin = new System.Windows.Forms.Padding(0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(382, 30);
     this.panel5.TabIndex = 2;
     //
     // buttonX6
     //
     this.buttonX6.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX6.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.buttonX6.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX6.Location = new System.Drawing.Point(158, 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.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.buttonX4.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX4.Location = new System.Drawing.Point(240, 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.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.buttonX5.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX5.Location = new System.Drawing.Point(75, 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(3, 12);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(97, 25);
     this.labelX26.TabIndex = 60;
     this.labelX26.Text = "Tên Nhóm KH:";
     //
     // fromNhomKH
     //
     this.ClientSize = new System.Drawing.Size(661, 523);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.groupPanel2);
     this.Name = "fromNhomKH";
     this.Load += new System.EventHandler(this.fromNhomKH_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.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.btduongdan = new DevComponents.DotNetBar.ButtonX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.btthoat = new DevComponents.DotNetBar.ButtonX();
     this.txtduongdan = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.btbackup = new DevComponents.DotNetBar.ButtonX();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.btduongdan);
     this.panelEx1.Controls.Add(this.labelX2);
     this.panelEx1.Controls.Add(this.labelX1);
     this.panelEx1.Controls.Add(this.btthoat);
     this.panelEx1.Controls.Add(this.txtduongdan);
     this.panelEx1.Controls.Add(this.btbackup);
     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(572, 262);
     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 = 1;
     //
     // btduongdan
     //
     this.btduongdan.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btduongdan.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btduongdan.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btduongdan.Location = new System.Drawing.Point(444, 115);
     this.btduongdan.Name = "btduongdan";
     this.btduongdan.Size = new System.Drawing.Size(69, 27);
     this.btduongdan.TabIndex = 22;
     this.btduongdan.Text = "Browse";
     this.btduongdan.Click += new System.EventHandler(this.btduongdan_Click);
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     this.labelX2.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX2.ForeColor = System.Drawing.Color.Blue;
     this.labelX2.Location = new System.Drawing.Point(188, 29);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(240, 41);
     this.labelX2.TabIndex = 21;
     this.labelX2.Text = "Backup cơ sở dữ liệu";
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     this.labelX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.ForeColor = System.Drawing.Color.Blue;
     this.labelX1.Location = new System.Drawing.Point(153, 117);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(90, 20);
     this.labelX1.TabIndex = 20;
     this.labelX1.Text = "Tên csdl";
     //
     // btthoat
     //
     this.btthoat.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btthoat.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btthoat.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btthoat.Location = new System.Drawing.Point(348, 170);
     this.btthoat.Name = "btthoat";
     this.btthoat.Size = new System.Drawing.Size(66, 27);
     this.btthoat.TabIndex = 3;
     this.btthoat.Text = "Thoát";
     this.btthoat.Click += new System.EventHandler(this.btthoat_Click);
     //
     // txtduongdan
     //
     //
     //
     //
     this.txtduongdan.Border.Class = "TextBoxBorder";
     this.txtduongdan.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtduongdan.Location = new System.Drawing.Point(269, 115);
     this.txtduongdan.Name = "txtduongdan";
     this.txtduongdan.Size = new System.Drawing.Size(169, 27);
     this.txtduongdan.TabIndex = 0;
     //
     // btbackup
     //
     this.btbackup.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btbackup.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btbackup.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btbackup.Location = new System.Drawing.Point(273, 170);
     this.btbackup.Name = "btbackup";
     this.btbackup.Size = new System.Drawing.Size(69, 27);
     this.btbackup.TabIndex = 2;
     this.btbackup.Text = "Backup";
     this.btbackup.Click += new System.EventHandler(this.btbackup_Click);
     //
     // frmbackup
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(572, 262);
     this.Controls.Add(this.panelEx1);
     this.Name = "frmbackup";
     this.Text = "frmbackup";
     this.Load += new System.EventHandler(this.frmbackup_Load);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmbackup_FormClosing);
     this.panelEx1.ResumeLayout(false);
     this.ResumeLayout(false);
 }