Beispiel #1
0
 public void RehberKaydet(DevComponents.DotNetBar.Controls.TextBoxX txt_Ad, DevComponents.DotNetBar.Controls.MaskedTextBoxAdv txt_Tel, DevComponents.DotNetBar.Controls.TextBoxX txt_fax, DevComponents.DotNetBar.Controls.TextBoxX txt_email, DevComponents.DotNetBar.Controls.TextBoxX txt_web, RichTextBox txt_adres)
 {
     if (txt_Ad.Text != "" && txt_Tel.Text != "" && txt_email.Text != "")
     {
         baglanti.Open();
         cmd = new SqlCommand("INSERT INTO RehberList(KisiAdi,Telefon,Fax,Email,Web,Adres) VALUES(@KA,@Tel,@Fax,@mail,@Web,@Adres)", baglanti);
         cmd.Parameters.Add("KA", txt_Ad.Text);
         cmd.Parameters.Add("Tel", txt_Tel.Text);
         cmd.Parameters.Add("Fax", txt_fax.Text);
         cmd.Parameters.Add("mail", txt_email.Text);
         cmd.Parameters.Add("Web", txt_web.Text);
         cmd.Parameters.Add("Adres", txt_adres.Text);
         cmd.ExecuteNonQuery();
         cmd.Dispose();
         baglanti.Close();
     }
     else
     {
         MessageBoxEx.EnableGlass         = false;
         MessageBoxEx.MessageBoxTextColor = System.Drawing.Color.Black;
         MessageBoxEx.Show("    Eksik  veya  hatalı  veri  girişi!    ", "Dikkat", MessageBoxButtons.OK, MessageBoxIcon.Warning);
     }
 }
Beispiel #2
0
 public void RehberGuncelle(DevComponents.DotNetBar.Controls.TextBoxX txt_Ad, DevComponents.DotNetBar.Controls.MaskedTextBoxAdv txt_Tel, DevComponents.DotNetBar.Controls.TextBoxX txt_fax, DevComponents.DotNetBar.Controls.TextBoxX txt_email, DevComponents.DotNetBar.Controls.TextBoxX txt_web, RichTextBox txt_adres, int id)
 {
     if (txt_Ad.Text != "" && txt_Tel.Text != "" && txt_email.Text != "")
     {
         baglanti.Open();
         cmd = new SqlCommand("UPDATE RehberList SET KisiAdi=@KA, Telefon=@Tel, Fax=@Fax, Email=@mail, Web=@Web, Adres=@Adres WHERE KisiID=@id", baglanti);
         cmd.Parameters.Add("KA", txt_Ad.Text);
         cmd.Parameters.Add("Tel", txt_Tel.Text);
         cmd.Parameters.Add("Fax", txt_fax.Text);
         cmd.Parameters.Add("mail", txt_email.Text);
         cmd.Parameters.Add("Web", txt_web.Text);
         cmd.Parameters.Add("Adres", txt_adres.Text);
         cmd.Parameters.Add("id", id);
         cmd.ExecuteNonQuery();
         cmd.Dispose();
         baglanti.Close();
     }
     else
     {
         MessageBoxEx.EnableGlass         = false;
         MessageBoxEx.MessageBoxTextColor = System.Drawing.Color.Black;
         MessageBoxEx.Show("    Eksik  veya  hatalı  veri  girişi!    ", "Dikkat", MessageBoxButtons.OK, MessageBoxIcon.Warning);
     }
 }
Beispiel #3
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);
     }
 }
Beispiel #4
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>
 /// 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.txtNombreCliente = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.txtMonto = new DevComponents.DotNetBar.Controls.MaskedTextBoxAdv();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.radioMembresia = new System.Windows.Forms.RadioButton();
     this.radioCaso = new System.Windows.Forms.RadioButton();
     this.radioOtro = new System.Windows.Forms.RadioButton();
     this.tabControl2 = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.btnBuscarCaso = new DevComponents.DotNetBar.ButtonX();
     this.txtDinamico = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.lbDinamico = new DevComponents.DotNetBar.LabelX();
     this.btnAgregarPago = new DevComponents.DotNetBar.ButtonX();
     this.btnCrearRecibo = new DevComponents.DotNetBar.ButtonX();
     this.fechaPago = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.txtDescripcion = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtRecibidoPor = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.txtObservacion = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.comboMoneda = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.dataGridDescripcionPago = new System.Windows.Forms.DataGridView();
     this.descripcion = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.monto = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.control = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fecha = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.peri_pago = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.monto_pend = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.observaciones = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cod_caso = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.num_pago = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.monto_Pago = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.expandablePanel1 = new DevComponents.DotNetBar.ExpandablePanel();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl2)).BeginInit();
     this.tabControl2.SuspendLayout();
     this.tabControlPanel1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.fechaPago)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridDescripcionPago)).BeginInit();
     this.expandablePanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // txtNombreCliente
     //
     this.txtNombreCliente.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.txtNombreCliente.Border.Class = "TextBoxBorder";
     this.txtNombreCliente.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtNombreCliente.ForeColor = System.Drawing.Color.Black;
     this.txtNombreCliente.Location = new System.Drawing.Point(74, 15);
     this.txtNombreCliente.Name = "txtNombreCliente";
     this.txtNombreCliente.Size = new System.Drawing.Size(361, 20);
     this.txtNombreCliente.TabIndex = 1;
     //
     // labelX3
     //
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(26, 13);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(48, 23);
     this.labelX3.TabIndex = 6;
     this.labelX3.Text = "Cliente:";
     //
     // txtMonto
     //
     //
     //
     //
     this.txtMonto.BackgroundStyle.Class = "TextBoxBorder";
     this.txtMonto.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtMonto.ButtonClear.Visible = true;
     this.txtMonto.CutCopyMaskFormat = System.Windows.Forms.MaskFormat.IncludeLiterals;
     this.txtMonto.InsertKeyMode = System.Windows.Forms.InsertKeyMode.Default;
     this.txtMonto.Location = new System.Drawing.Point(74, 191);
     this.txtMonto.Name = "txtMonto";
     this.txtMonto.Size = new System.Drawing.Size(99, 20);
     this.txtMonto.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.txtMonto.TabIndex = 4;
     this.txtMonto.Text = "";
     this.txtMonto.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtMonto.TextMaskFormat = System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals;
     //
     // labelX4
     //
     this.labelX4.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(21, 188);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(43, 23);
     this.labelX4.TabIndex = 4;
     this.labelX4.Text = "Importe:";
     //
     // radioMembresia
     //
     this.radioMembresia.AutoSize = true;
     this.radioMembresia.BackColor = System.Drawing.Color.Transparent;
     this.radioMembresia.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radioMembresia.Location = new System.Drawing.Point(44, 19);
     this.radioMembresia.Name = "radioMembresia";
     this.radioMembresia.Size = new System.Drawing.Size(88, 19);
     this.radioMembresia.TabIndex = 3;
     this.radioMembresia.TabStop = true;
     this.radioMembresia.Text = "Membresia";
     this.radioMembresia.UseVisualStyleBackColor = false;
     //
     // radioCaso
     //
     this.radioCaso.AutoSize = true;
     this.radioCaso.BackColor = System.Drawing.Color.Transparent;
     this.radioCaso.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radioCaso.Location = new System.Drawing.Point(148, 19);
     this.radioCaso.Name = "radioCaso";
     this.radioCaso.Size = new System.Drawing.Size(161, 19);
     this.radioCaso.TabIndex = 0;
     this.radioCaso.TabStop = true;
     this.radioCaso.Text = "Pago Por Servicio (Caso)";
     this.radioCaso.UseVisualStyleBackColor = false;
     //
     // radioOtro
     //
     this.radioOtro.AutoSize = true;
     this.radioOtro.BackColor = System.Drawing.Color.Transparent;
     this.radioOtro.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radioOtro.Location = new System.Drawing.Point(323, 19);
     this.radioOtro.Name = "radioOtro";
     this.radioOtro.Size = new System.Drawing.Size(48, 19);
     this.radioOtro.TabIndex = 0;
     this.radioOtro.TabStop = true;
     this.radioOtro.Text = "Otro";
     this.radioOtro.UseVisualStyleBackColor = false;
     //
     // tabControl2
     //
     this.tabControl2.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabControl2.CanReorderTabs = true;
     this.tabControl2.Controls.Add(this.tabControlPanel1);
     this.tabControl2.ForeColor = System.Drawing.Color.Black;
     this.tabControl2.Location = new System.Drawing.Point(12, 1);
     this.tabControl2.Name = "tabControl2";
     this.tabControl2.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.tabControl2.SelectedTabIndex = 0;
     this.tabControl2.Size = new System.Drawing.Size(458, 451);
     this.tabControl2.Style = DevComponents.DotNetBar.eTabStripStyle.SimulatedTheme;
     this.tabControl2.TabIndex = 10;
     this.tabControl2.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabControl2.Tabs.Add(this.tabItem1);
     this.tabControl2.Text = "tabControl2";
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.groupBox1);
     this.tabControlPanel1.Controls.Add(this.btnAgregarPago);
     this.tabControlPanel1.Controls.Add(this.btnCrearRecibo);
     this.tabControlPanel1.Controls.Add(this.fechaPago);
     this.tabControlPanel1.Controls.Add(this.labelX7);
     this.tabControlPanel1.Controls.Add(this.labelX5);
     this.tabControlPanel1.Controls.Add(this.txtDescripcion);
     this.tabControlPanel1.Controls.Add(this.txtRecibidoPor);
     this.tabControlPanel1.Controls.Add(this.labelX6);
     this.tabControlPanel1.Controls.Add(this.labelX2);
     this.tabControlPanel1.Controls.Add(this.txtObservacion);
     this.tabControlPanel1.Controls.Add(this.labelX3);
     this.tabControlPanel1.Controls.Add(this.txtNombreCliente);
     this.tabControlPanel1.Controls.Add(this.comboMoneda);
     this.tabControlPanel1.Controls.Add(this.txtMonto);
     this.tabControlPanel1.Controls.Add(this.labelX4);
     this.tabControlPanel1.Controls.Add(this.labelX1);
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 26);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(458, 425);
     this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.White;
     this.tabControlPanel1.Style.BackColor2.Color = System.Drawing.Color.White;
     this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(172)))), ((int)(((byte)(168)))), ((int)(((byte)(153)))));
     this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel1.Style.GradientAngle = -90;
     this.tabControlPanel1.TabIndex = 1;
     this.tabControlPanel1.TabItem = this.tabItem1;
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.btnBuscarCaso);
     this.groupBox1.Controls.Add(this.txtDinamico);
     this.groupBox1.Controls.Add(this.lbDinamico);
     this.groupBox1.Controls.Add(this.radioMembresia);
     this.groupBox1.Controls.Add(this.radioCaso);
     this.groupBox1.Controls.Add(this.radioOtro);
     this.groupBox1.Location = new System.Drawing.Point(21, 92);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(414, 90);
     this.groupBox1.TabIndex = 17;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Concepto";
     //
     // btnBuscarCaso
     //
     this.btnBuscarCaso.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnBuscarCaso.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnBuscarCaso.Location = new System.Drawing.Point(278, 55);
     this.btnBuscarCaso.Name = "btnBuscarCaso";
     this.btnBuscarCaso.Size = new System.Drawing.Size(56, 20);
     this.btnBuscarCaso.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnBuscarCaso.TabIndex = 5;
     this.btnBuscarCaso.Text = "Buscar";
     this.btnBuscarCaso.Click += new System.EventHandler(this.btnBuscarCaso_Click);
     //
     // txtDinamico
     //
     this.txtDinamico.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.txtDinamico.Border.Class = "TextBoxBorder";
     this.txtDinamico.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtDinamico.ForeColor = System.Drawing.Color.Black;
     this.txtDinamico.Location = new System.Drawing.Point(172, 55);
     this.txtDinamico.Name = "txtDinamico";
     this.txtDinamico.Size = new System.Drawing.Size(100, 20);
     this.txtDinamico.TabIndex = 4;
     //
     // lbDinamico
     //
     //
     //
     //
     this.lbDinamico.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbDinamico.Location = new System.Drawing.Point(109, 53);
     this.lbDinamico.Name = "lbDinamico";
     this.lbDinamico.Size = new System.Drawing.Size(56, 23);
     this.lbDinamico.TabIndex = 3;
     this.lbDinamico.Text = "labelX8";
     this.lbDinamico.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // btnAgregarPago
     //
     this.btnAgregarPago.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnAgregarPago.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnAgregarPago.Location = new System.Drawing.Point(180, 389);
     this.btnAgregarPago.Name = "btnAgregarPago";
     this.btnAgregarPago.Size = new System.Drawing.Size(104, 23);
     this.btnAgregarPago.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnAgregarPago.TabIndex = 8;
     this.btnAgregarPago.Text = "Agregar";
     //
     // btnCrearRecibo
     //
     this.btnCrearRecibo.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnCrearRecibo.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnCrearRecibo.Location = new System.Drawing.Point(290, 389);
     this.btnCrearRecibo.Name = "btnCrearRecibo";
     this.btnCrearRecibo.Size = new System.Drawing.Size(145, 23);
     this.btnCrearRecibo.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnCrearRecibo.TabIndex = 9;
     this.btnCrearRecibo.Text = "Crear Recibo";
     this.btnCrearRecibo.Click += new System.EventHandler(this.btnCrearRecibo_Click);
     //
     // fechaPago
     //
     //
     //
     //
     this.fechaPago.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechaPago.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechaPago.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechaPago.ButtonDropDown.Visible = true;
     this.fechaPago.IsPopupCalendarOpen = false;
     this.fechaPago.Location = new System.Drawing.Point(331, 56);
     //
     //
     //
     this.fechaPago.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechaPago.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechaPago.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechaPago.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechaPago.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechaPago.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechaPago.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechaPago.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechaPago.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechaPago.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechaPago.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechaPago.MonthCalendar.DisplayMonth = new System.DateTime(2012, 7, 1, 0, 0, 0, 0);
     this.fechaPago.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechaPago.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechaPago.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechaPago.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechaPago.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechaPago.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechaPago.MonthCalendar.TodayButtonVisible = true;
     this.fechaPago.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechaPago.Name = "fechaPago";
     this.fechaPago.Size = new System.Drawing.Size(104, 20);
     this.fechaPago.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechaPago.TabIndex = 13;
     //
     // labelX7
     //
     this.labelX7.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX7.Location = new System.Drawing.Point(21, 218);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(75, 23);
     this.labelX7.TabIndex = 14;
     this.labelX7.Text = "Descripción: ";
     //
     // labelX5
     //
     this.labelX5.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Location = new System.Drawing.Point(290, 54);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(48, 23);
     this.labelX5.TabIndex = 15;
     this.labelX5.Text = "Fecha:";
     //
     // txtDescripcion
     //
     this.txtDescripcion.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     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(21, 247);
     this.txtDescripcion.Multiline = true;
     this.txtDescripcion.Name = "txtDescripcion";
     this.txtDescripcion.Size = new System.Drawing.Size(414, 19);
     this.txtDescripcion.TabIndex = 6;
     //
     // txtRecibidoPor
     //
     this.txtRecibidoPor.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.txtRecibidoPor.Border.Class = "TextBoxBorder";
     this.txtRecibidoPor.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtRecibidoPor.ForeColor = System.Drawing.Color.Black;
     this.txtRecibidoPor.Location = new System.Drawing.Point(75, 54);
     this.txtRecibidoPor.Name = "txtRecibidoPor";
     this.txtRecibidoPor.Size = new System.Drawing.Size(173, 20);
     this.txtRecibidoPor.TabIndex = 2;
     //
     // labelX6
     //
     this.labelX6.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX6.Location = new System.Drawing.Point(21, 272);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(75, 23);
     this.labelX6.TabIndex = 4;
     this.labelX6.Text = "Observacion: ";
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(8, 51);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(71, 23);
     this.labelX2.TabIndex = 13;
     this.labelX2.Text = "Recibido por:";
     //
     // txtObservacion
     //
     this.txtObservacion.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.txtObservacion.Border.Class = "TextBoxBorder";
     this.txtObservacion.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtObservacion.ForeColor = System.Drawing.Color.Black;
     this.txtObservacion.Location = new System.Drawing.Point(21, 301);
     this.txtObservacion.Multiline = true;
     this.txtObservacion.Name = "txtObservacion";
     this.txtObservacion.Size = new System.Drawing.Size(414, 82);
     this.txtObservacion.TabIndex = 7;
     //
     // comboMoneda
     //
     this.comboMoneda.DisplayMember = "Text";
     this.comboMoneda.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboMoneda.FormattingEnabled = true;
     this.comboMoneda.ItemHeight = 14;
     this.comboMoneda.Items.AddRange(new object[] {
     this.comboItem1});
     this.comboMoneda.Location = new System.Drawing.Point(247, 191);
     this.comboMoneda.Name = "comboMoneda";
     this.comboMoneda.Size = new System.Drawing.Size(192, 20);
     this.comboMoneda.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboMoneda.TabIndex = 5;
     //
     // comboItem1
     //
     this.comboItem1.Text = "NIO-Córdobas Nicaragüenses";
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(193, 188);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(43, 23);
     this.labelX1.TabIndex = 11;
     this.labelX1.Text = "Moneda:";
     //
     // tabItem1
     //
     this.tabItem1.AttachedControl = this.tabControlPanel1;
     this.tabItem1.BackColor = System.Drawing.Color.White;
     this.tabItem1.BackColor2 = System.Drawing.Color.White;
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "--- Pago ---        ";
     //
     // dataGridDescripcionPago
     //
     this.dataGridDescripcionPago.AllowUserToAddRows = false;
     this.dataGridDescripcionPago.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.dataGridDescripcionPago.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridDescripcionPago.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.descripcion,
     this.monto,
     this.control,
     this.fecha,
     this.peri_pago,
     this.monto_pend,
     this.observaciones,
     this.cod_caso,
     this.num_pago,
     this.monto_Pago});
     this.dataGridDescripcionPago.Location = new System.Drawing.Point(10, 37);
     this.dataGridDescripcionPago.MultiSelect = false;
     this.dataGridDescripcionPago.Name = "dataGridDescripcionPago";
     this.dataGridDescripcionPago.Size = new System.Drawing.Size(458, 390);
     this.dataGridDescripcionPago.TabIndex = 11;
     //
     // descripcion
     //
     this.descripcion.HeaderText = "Descripción";
     this.descripcion.Name = "descripcion";
     this.descripcion.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.descripcion.Width = 300;
     //
     // monto
     //
     this.monto.HeaderText = "Monto";
     this.monto.Name = "monto";
     this.monto.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // control
     //
     this.control.HeaderText = "control";
     this.control.Name = "control";
     this.control.Visible = false;
     //
     // fecha
     //
     this.fecha.HeaderText = "Fecha";
     this.fecha.Name = "fecha";
     this.fecha.Visible = false;
     //
     // peri_pago
     //
     this.peri_pago.HeaderText = "Periodo";
     this.peri_pago.Name = "peri_pago";
     this.peri_pago.Visible = false;
     //
     // monto_pend
     //
     this.monto_pend.HeaderText = "montoPendiente";
     this.monto_pend.Name = "monto_pend";
     this.monto_pend.Visible = false;
     //
     // observaciones
     //
     this.observaciones.HeaderText = "Observaciones";
     this.observaciones.Name = "observaciones";
     this.observaciones.Visible = false;
     //
     // cod_caso
     //
     this.cod_caso.HeaderText = "codigocaso";
     this.cod_caso.Name = "cod_caso";
     this.cod_caso.Visible = false;
     //
     // num_pago
     //
     this.num_pago.HeaderText = "Column1";
     this.num_pago.Name = "num_pago";
     this.num_pago.Visible = false;
     //
     // monto_Pago
     //
     this.monto_Pago.HeaderText = "Column1";
     this.monto_Pago.Name = "monto_Pago";
     this.monto_Pago.Visible = false;
     //
     // expandablePanel1
     //
     this.expandablePanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.expandablePanel1.CollapseDirection = DevComponents.DotNetBar.eCollapseDirection.RightToLeft;
     this.expandablePanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.expandablePanel1.Controls.Add(this.dataGridDescripcionPago);
     this.expandablePanel1.Location = new System.Drawing.Point(476, 12);
     this.expandablePanel1.Name = "expandablePanel1";
     this.expandablePanel1.Size = new System.Drawing.Size(485, 440);
     this.expandablePanel1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.expandablePanel1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandablePanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.expandablePanel1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandablePanel1.Style.GradientAngle = 90;
     this.expandablePanel1.TabIndex = 13;
     this.expandablePanel1.TitleStyle.Alignment = System.Drawing.StringAlignment.Center;
     this.expandablePanel1.TitleStyle.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandablePanel1.TitleStyle.Border = DevComponents.DotNetBar.eBorderType.RaisedInner;
     this.expandablePanel1.TitleStyle.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.expandablePanel1.TitleStyle.GradientAngle = 90;
     this.expandablePanel1.TitleText = "Pagos";
     //
     // RealizarPago
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.BackColor = System.Drawing.Color.WhiteSmoke;
     this.ClientSize = new System.Drawing.Size(933, 457);
     this.Controls.Add(this.expandablePanel1);
     this.Controls.Add(this.tabControl2);
     this.Name = "RealizarPago";
     this.Text = "RealizarPago";
     ((System.ComponentModel.ISupportInitialize)(this.tabControl2)).EndInit();
     this.tabControl2.ResumeLayout(false);
     this.tabControlPanel1.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.fechaPago)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridDescripcionPago)).EndInit();
     this.expandablePanel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Método necesario para admitir el Diseñador. No se puede modificar 
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ControlUsuario));
     this.etiNombre = new DevComponents.DotNetBar.LabelX();
     this.txtNombre = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtEmail = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.etiEmail = new DevComponents.DotNetBar.LabelX();
     this.txtTelefono = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.etiTelefono = new DevComponents.DotNetBar.LabelX();
     this.etiFechIni = new DevComponents.DotNetBar.LabelX();
     this.etiFechFin = new DevComponents.DotNetBar.LabelX();
     this.txtPassword = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.txtUser = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.etiUsuario = new DevComponents.DotNetBar.LabelX();
     this.chkActivo = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.txtCodUsuario = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.etiCodigoUsuario = new DevComponents.DotNetBar.LabelX();
     this.chkAdmin = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.btnMarcarSalida = new DevComponents.DotNetBar.ButtonX();
     this.btnResetPassword = new DevComponents.DotNetBar.ButtonX();
     this.txtFechInic = new DevComponents.DotNetBar.Controls.MaskedTextBoxAdv();
     this.txtFechSali = new DevComponents.DotNetBar.Controls.MaskedTextBoxAdv();
     this.valUsuario = new DevComponents.DotNetBar.Validator.SuperValidator();
     this.valNombreReq = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Debe ingresar el nombre del usuario");
     this.valEmailInvalid = new DevComponents.DotNetBar.Validator.RegularExpressionValidator();
     this.valTelfInvalid = new DevComponents.DotNetBar.Validator.RegularExpressionValidator();
     this.valUsuarioReq = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Debe ingresar un username para el usuario");
     this.valUsuarioError = new System.Windows.Forms.ErrorProvider(this.components);
     this.valUsuarioHighlighter = new DevComponents.DotNetBar.Validator.Highlighter();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.expandabePanelUsuarios = new DevComponents.DotNetBar.ExpandablePanel();
     this.dgvUsuarios = new System.Windows.Forms.DataGridView();
     ((System.ComponentModel.ISupportInitialize)(this.valUsuarioError)).BeginInit();
     this.expandabePanelUsuarios.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvUsuarios)).BeginInit();
     this.SuspendLayout();
     //
     // etiNombre
     //
     this.etiNombre.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.etiNombre.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.etiNombre.Location = new System.Drawing.Point(172, 86);
     this.etiNombre.Name = "etiNombre";
     this.etiNombre.Size = new System.Drawing.Size(75, 23);
     this.etiNombre.TabIndex = 0;
     this.etiNombre.Text = "Nombre:";
     //
     // txtNombre
     //
     this.txtNombre.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     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(260, 89);
     this.txtNombre.Margin = new System.Windows.Forms.Padding(10);
     this.txtNombre.MaxLength = 50;
     this.txtNombre.Name = "txtNombre";
     this.txtNombre.ReadOnly = true;
     this.txtNombre.Size = new System.Drawing.Size(165, 20);
     this.txtNombre.TabIndex = 2;
     this.valUsuario.SetValidator1(this.txtNombre, this.valNombreReq);
     this.txtNombre.Enter += new System.EventHandler(this.txtNombre_Enter);
     //
     // txtEmail
     //
     this.txtEmail.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtEmail.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtEmail.Border.Class = "TextBoxBorder";
     this.txtEmail.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtEmail.ForeColor = System.Drawing.Color.Black;
     this.txtEmail.Location = new System.Drawing.Point(260, 129);
     this.txtEmail.Margin = new System.Windows.Forms.Padding(10);
     this.txtEmail.MaxLength = 50;
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.ReadOnly = true;
     this.txtEmail.Size = new System.Drawing.Size(165, 20);
     this.txtEmail.TabIndex = 3;
     this.valUsuario.SetValidator1(this.txtEmail, this.valEmailInvalid);
     this.txtEmail.Enter += new System.EventHandler(this.txtEmail_Enter);
     //
     // etiEmail
     //
     this.etiEmail.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.etiEmail.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.etiEmail.Location = new System.Drawing.Point(172, 126);
     this.etiEmail.Name = "etiEmail";
     this.etiEmail.Size = new System.Drawing.Size(75, 23);
     this.etiEmail.TabIndex = 2;
     this.etiEmail.Text = "Email:";
     //
     // txtTelefono
     //
     this.txtTelefono.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtTelefono.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtTelefono.Border.Class = "TextBoxBorder";
     this.txtTelefono.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtTelefono.ForeColor = System.Drawing.Color.Black;
     this.txtTelefono.Location = new System.Drawing.Point(260, 169);
     this.txtTelefono.Margin = new System.Windows.Forms.Padding(10);
     this.txtTelefono.MaxLength = 20;
     this.txtTelefono.Name = "txtTelefono";
     this.txtTelefono.ReadOnly = true;
     this.txtTelefono.Size = new System.Drawing.Size(165, 20);
     this.txtTelefono.TabIndex = 4;
     this.valUsuario.SetValidator1(this.txtTelefono, this.valTelfInvalid);
     this.txtTelefono.Enter += new System.EventHandler(this.txtTelefono_Enter);
     //
     // etiTelefono
     //
     this.etiTelefono.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.etiTelefono.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.etiTelefono.Location = new System.Drawing.Point(172, 166);
     this.etiTelefono.Name = "etiTelefono";
     this.etiTelefono.Size = new System.Drawing.Size(75, 23);
     this.etiTelefono.TabIndex = 4;
     this.etiTelefono.Text = "Teléfono:";
     //
     // etiFechIni
     //
     this.etiFechIni.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.etiFechIni.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.etiFechIni.Location = new System.Drawing.Point(172, 209);
     this.etiFechIni.Name = "etiFechIni";
     this.etiFechIni.Size = new System.Drawing.Size(75, 23);
     this.etiFechIni.TabIndex = 7;
     this.etiFechIni.Text = "Fecha Inicio:";
     //
     // etiFechFin
     //
     this.etiFechFin.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.etiFechFin.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.etiFechFin.Location = new System.Drawing.Point(172, 249);
     this.etiFechFin.Name = "etiFechFin";
     this.etiFechFin.Size = new System.Drawing.Size(75, 23);
     this.etiFechFin.TabIndex = 9;
     this.etiFechFin.Text = "Fecha Salida:";
     //
     // txtPassword
     //
     this.txtPassword.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPassword.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtPassword.Border.Class = "TextBoxBorder";
     this.txtPassword.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtPassword.ForeColor = System.Drawing.Color.Black;
     this.txtPassword.Location = new System.Drawing.Point(590, 129);
     this.txtPassword.Margin = new System.Windows.Forms.Padding(10);
     this.txtPassword.Name = "txtPassword";
     this.txtPassword.PasswordChar = '*';
     this.txtPassword.ReadOnly = true;
     this.txtPassword.Size = new System.Drawing.Size(165, 20);
     this.txtPassword.TabIndex = 8;
     //
     // labelX1
     //
     this.labelX1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(502, 126);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.TabIndex = 12;
     this.labelX1.Text = "Contraseña:";
     //
     // txtUser
     //
     this.txtUser.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtUser.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtUser.Border.Class = "TextBoxBorder";
     this.txtUser.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtUser.ForeColor = System.Drawing.Color.Black;
     this.txtUser.Location = new System.Drawing.Point(590, 89);
     this.txtUser.Margin = new System.Windows.Forms.Padding(10);
     this.txtUser.MaxLength = 10;
     this.txtUser.Name = "txtUser";
     this.txtUser.ReadOnly = true;
     this.txtUser.Size = new System.Drawing.Size(165, 20);
     this.txtUser.TabIndex = 7;
     this.valUsuario.SetValidator1(this.txtUser, this.valUsuarioReq);
     this.txtUser.Enter += new System.EventHandler(this.txtUser_Enter);
     //
     // etiUsuario
     //
     this.etiUsuario.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.etiUsuario.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.etiUsuario.Location = new System.Drawing.Point(502, 86);
     this.etiUsuario.Name = "etiUsuario";
     this.etiUsuario.Size = new System.Drawing.Size(75, 23);
     this.etiUsuario.TabIndex = 10;
     this.etiUsuario.Text = "Usuario:";
     //
     // chkActivo
     //
     this.chkActivo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.chkActivo.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkActivo.Enabled = false;
     this.chkActivo.Location = new System.Drawing.Point(590, 169);
     this.chkActivo.Name = "chkActivo";
     this.chkActivo.Size = new System.Drawing.Size(100, 23);
     this.chkActivo.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkActivo.TabIndex = 9;
     this.chkActivo.Text = "Usuario Activo";
     //
     // txtCodUsuario
     //
     this.txtCodUsuario.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCodUsuario.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtCodUsuario.Border.Class = "TextBoxBorder";
     this.txtCodUsuario.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtCodUsuario.ForeColor = System.Drawing.Color.Black;
     this.txtCodUsuario.Location = new System.Drawing.Point(260, 49);
     this.txtCodUsuario.Margin = new System.Windows.Forms.Padding(10);
     this.txtCodUsuario.Name = "txtCodUsuario";
     this.txtCodUsuario.ReadOnly = true;
     this.txtCodUsuario.Size = new System.Drawing.Size(100, 20);
     this.txtCodUsuario.TabIndex = 1;
     this.txtCodUsuario.TabStop = false;
     //
     // etiCodigoUsuario
     //
     this.etiCodigoUsuario.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.etiCodigoUsuario.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.etiCodigoUsuario.Location = new System.Drawing.Point(172, 46);
     this.etiCodigoUsuario.Name = "etiCodigoUsuario";
     this.etiCodigoUsuario.Size = new System.Drawing.Size(75, 23);
     this.etiCodigoUsuario.TabIndex = 17;
     this.etiCodigoUsuario.Text = "Cod_Usuario:";
     //
     // chkAdmin
     //
     this.chkAdmin.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.chkAdmin.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkAdmin.Enabled = false;
     this.chkAdmin.Location = new System.Drawing.Point(590, 206);
     this.chkAdmin.Name = "chkAdmin";
     this.chkAdmin.Size = new System.Drawing.Size(100, 23);
     this.chkAdmin.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkAdmin.TabIndex = 10;
     this.chkAdmin.Text = "Administrador";
     //
     // btnMarcarSalida
     //
     this.btnMarcarSalida.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnMarcarSalida.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnMarcarSalida.Enabled = false;
     this.btnMarcarSalida.Location = new System.Drawing.Point(373, 249);
     this.btnMarcarSalida.Name = "btnMarcarSalida";
     this.btnMarcarSalida.Size = new System.Drawing.Size(18, 20);
     this.btnMarcarSalida.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnMarcarSalida.TabIndex = 18;
     this.btnMarcarSalida.Text = "M";
     this.btnMarcarSalida.Tooltip = "Marcar Salida";
     this.btnMarcarSalida.Click += new System.EventHandler(this.btnMarcarSalida_Click);
     //
     // btnResetPassword
     //
     this.btnResetPassword.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnResetPassword.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnResetPassword.Enabled = false;
     this.btnResetPassword.Location = new System.Drawing.Point(768, 129);
     this.btnResetPassword.Name = "btnResetPassword";
     this.btnResetPassword.Size = new System.Drawing.Size(41, 20);
     this.btnResetPassword.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnResetPassword.TabIndex = 19;
     this.btnResetPassword.Text = "Reset";
     this.btnResetPassword.Click += new System.EventHandler(this.btnResetPassword_Click);
     //
     // txtFechInic
     //
     //
     //
     //
     this.txtFechInic.BackgroundStyle.Class = "TextBoxBorder";
     this.txtFechInic.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtFechInic.ButtonClear.Enabled = false;
     this.txtFechInic.ButtonClear.Visible = true;
     this.txtFechInic.CutCopyMaskFormat = System.Windows.Forms.MaskFormat.IncludeLiterals;
     this.txtFechInic.Enabled = false;
     this.txtFechInic.InsertKeyMode = System.Windows.Forms.InsertKeyMode.Default;
     this.txtFechInic.Location = new System.Drawing.Point(260, 209);
     this.txtFechInic.Margin = new System.Windows.Forms.Padding(10);
     this.txtFechInic.Mask = "00/00/0000";
     this.txtFechInic.Name = "txtFechInic";
     this.txtFechInic.Size = new System.Drawing.Size(100, 20);
     this.txtFechInic.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.txtFechInic.TabIndex = 5;
     this.txtFechInic.Text = "";
     this.txtFechInic.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtFechInic.TextMaskFormat = System.Windows.Forms.MaskFormat.IncludeLiterals;
     this.txtFechInic.ValidatingType = typeof(System.DateTime);
     this.txtFechInic.Enter += new System.EventHandler(this.txtFechInic_Enter);
     //
     // txtFechSali
     //
     //
     //
     //
     this.txtFechSali.BackgroundStyle.Class = "TextBoxBorder";
     this.txtFechSali.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtFechSali.ButtonClear.Enabled = false;
     this.txtFechSali.ButtonClear.Visible = true;
     this.txtFechSali.CutCopyMaskFormat = System.Windows.Forms.MaskFormat.IncludeLiterals;
     this.txtFechSali.Enabled = false;
     this.txtFechSali.InsertKeyMode = System.Windows.Forms.InsertKeyMode.Default;
     this.txtFechSali.Location = new System.Drawing.Point(260, 249);
     this.txtFechSali.Margin = new System.Windows.Forms.Padding(10);
     this.txtFechSali.Mask = "00/00/0000";
     this.txtFechSali.Name = "txtFechSali";
     this.txtFechSali.Size = new System.Drawing.Size(100, 20);
     this.txtFechSali.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.txtFechSali.TabIndex = 6;
     this.txtFechSali.Text = "";
     this.txtFechSali.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtFechSali.TextMaskFormat = System.Windows.Forms.MaskFormat.IncludeLiterals;
     this.txtFechSali.ValidatingType = typeof(System.DateTime);
     //
     // valUsuario
     //
     this.valUsuario.ContainerControl = this;
     this.valUsuario.ErrorProvider = this.valUsuarioError;
     this.valUsuario.Highlighter = this.valUsuarioHighlighter;
     //
     // valNombreReq
     //
     this.valNombreReq.ErrorMessage = "Debe ingresar el nombre del usuario";
     this.valNombreReq.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // valEmailInvalid
     //
     this.valEmailInvalid.EmptyValueIsValid = true;
     this.valEmailInvalid.ErrorMessage = "Ingrese un email válido";
     this.valEmailInvalid.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     this.valEmailInvalid.ValidationExpression = "^([0-9a-zA-Z]([-\\.\\w]*[0-9a-zA-Z])*@([0-9a-zA-Z][-\\w]*[0-9a-zA-Z]\\.)+[a-zA-Z]{2,9" +
         "})$";
     //
     // valTelfInvalid
     //
     this.valTelfInvalid.EmptyValueIsValid = true;
     this.valTelfInvalid.ErrorMessage = "Ingrese un teléfono válido";
     this.valTelfInvalid.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     this.valTelfInvalid.ValidationExpression = "0*[1-9][0-9]*";
     //
     // valUsuarioReq
     //
     this.valUsuarioReq.ErrorMessage = "Debe ingresar un username para el usuario";
     this.valUsuarioReq.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // valUsuarioError
     //
     this.valUsuarioError.ContainerControl = this;
     this.valUsuarioError.Icon = ((System.Drawing.Icon)(resources.GetObject("valUsuarioError.Icon")));
     //
     // valUsuarioHighlighter
     //
     this.valUsuarioHighlighter.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(376, 13);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(175, 23);
     this.labelX4.TabIndex = 20;
     this.labelX4.Text = "Usuarios";
     //
     // expandabePanelUsuarios
     //
     this.expandabePanelUsuarios.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.expandabePanelUsuarios.CanvasColor = System.Drawing.SystemColors.Control;
     this.expandabePanelUsuarios.CollapseDirection = DevComponents.DotNetBar.eCollapseDirection.TopToBottom;
     this.expandabePanelUsuarios.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.expandabePanelUsuarios.Controls.Add(this.dgvUsuarios);
     this.expandabePanelUsuarios.Location = new System.Drawing.Point(0, 278);
     this.expandabePanelUsuarios.Name = "expandabePanelUsuarios";
     this.expandabePanelUsuarios.Size = new System.Drawing.Size(926, 205);
     this.expandabePanelUsuarios.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.expandabePanelUsuarios.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandabePanelUsuarios.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.expandabePanelUsuarios.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandabePanelUsuarios.Style.GradientAngle = 90;
     this.expandabePanelUsuarios.TabIndex = 21;
     this.expandabePanelUsuarios.TitleStyle.Alignment = System.Drawing.StringAlignment.Center;
     this.expandabePanelUsuarios.TitleStyle.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandabePanelUsuarios.TitleStyle.Border = DevComponents.DotNetBar.eBorderType.RaisedInner;
     this.expandabePanelUsuarios.TitleStyle.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.expandabePanelUsuarios.TitleStyle.GradientAngle = 90;
     this.expandabePanelUsuarios.TitleText = "Lista de Usuarios";
     //
     // dgvUsuarios
     //
     this.dgvUsuarios.AllowUserToAddRows = false;
     this.dgvUsuarios.AllowUserToDeleteRows = false;
     this.dgvUsuarios.AllowUserToResizeRows = false;
     this.dgvUsuarios.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgvUsuarios.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvUsuarios.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvUsuarios.Location = new System.Drawing.Point(0, 26);
     this.dgvUsuarios.MultiSelect = false;
     this.dgvUsuarios.Name = "dgvUsuarios";
     this.dgvUsuarios.ReadOnly = true;
     this.dgvUsuarios.RowHeadersVisible = false;
     this.dgvUsuarios.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvUsuarios.Size = new System.Drawing.Size(926, 179);
     this.dgvUsuarios.TabIndex = 2;
     //
     // ControlUsuario
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.expandabePanelUsuarios);
     this.Controls.Add(this.labelX4);
     this.Controls.Add(this.txtFechSali);
     this.Controls.Add(this.txtFechInic);
     this.Controls.Add(this.btnResetPassword);
     this.Controls.Add(this.btnMarcarSalida);
     this.Controls.Add(this.chkAdmin);
     this.Controls.Add(this.txtCodUsuario);
     this.Controls.Add(this.etiCodigoUsuario);
     this.Controls.Add(this.chkActivo);
     this.Controls.Add(this.txtPassword);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.txtUser);
     this.Controls.Add(this.etiUsuario);
     this.Controls.Add(this.etiFechFin);
     this.Controls.Add(this.etiFechIni);
     this.Controls.Add(this.txtTelefono);
     this.Controls.Add(this.etiTelefono);
     this.Controls.Add(this.txtEmail);
     this.Controls.Add(this.etiEmail);
     this.Controls.Add(this.txtNombre);
     this.Controls.Add(this.etiNombre);
     this.Name = "ControlUsuario";
     this.Size = new System.Drawing.Size(926, 483);
     ((System.ComponentModel.ISupportInitialize)(this.valUsuarioError)).EndInit();
     this.expandabePanelUsuarios.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvUsuarios)).EndInit();
     this.ResumeLayout(false);
 }