void Nuevo() { n_QueHace = 1; Tab1.TabPages[0].Enabled = false; Blanquea(); Bloquea(); ActivarTool(); LblTitulo2.Text = "Agregando Nuevo Registro"; Tab1.SelectedIndex = 1; CboLocal.Focus(); }
void Modificar() { n_QueHace = 2; Tab1.TabPages[0].Enabled = false; Blanquea(); Bloquea(); ActivarTool(); int intIdRegistro = Convert.ToInt32(DgLista.Columns[0].CellValue(DgLista.Row).ToString()); VerRegistro(intIdRegistro); LblTitulo2.Text = "Modificando Registro"; Tab1.SelectedIndex = 1; CboLocal.Focus(); }
void Nuevo() { n_QueHace = 1; Tab1.TabPages[0].Enabled = false; booAgregando = true; Blanquea(); Bloquea(); ActivarTool(); LblTitulo2.Text = "Agregando Nuevo Registro"; Tab1.SelectedIndex = 1; CboSerDef.Enabled = false; OptTipCob2.Checked = true; dtSerPla = funDatos.DataTableFiltrar(dtSerPla, "n_idpla = " + Convert.ToInt16(CboLocal.SelectedValue) + ""); funDatos.ComboBoxCargarDataTable(CboSerCobAdi, dtSerPla, "n_id", "c_des"); CboLocal.Focus(); booAgregando = false; }
bool CamposOK() { bool booEstado = true; if (Convert.ToInt32(CboLocal.SelectedValue) == 0) { MessageBox.Show("¡ No ha especificado el nombre del Local !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); booEstado = false; CboLocal.Focus(); return(booEstado); } if (LblidTrab.Text == "") { MessageBox.Show("¡ No ha especificado el nombre del trabajador !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); booEstado = false; TxtTrabajador.Focus(); return(booEstado); } return(booEstado); }
void Modificar() { n_QueHace = 2; booAgregando = true; Tab1.TabPages[0].Enabled = false; Blanquea(); Bloquea(); ActivarTool(); int intIdRegistro = Convert.ToInt16(DgLista.Columns[0].CellValue(DgLista.Row).ToString()); VerRegistro(intIdRegistro); CboSerDef.Enabled = true; LblTitulo2.Text = "Modificando Registro"; Tab1.SelectedIndex = 1; //dtSerPla = funDatos.DataTableFiltrar(dtSerPla, "n_idpla = " + Convert.ToInt16(CboLocal.SelectedValue) + ""); //funDatos.ComboBoxCargarDataTable(CboSerCobAdi, dtSerPla, "n_id", "c_des"); CboLocal.Focus(); booAgregando = false; }
bool CamposOK() { bool booEstado = true; if (Convert.ToInt16(CboLocal.SelectedValue) == 0) { MessageBox.Show("¡ No ha especificado el nombre del Local !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); booEstado = false; CboLocal.Focus(); return(booEstado); } if ((OptTipCob1.Checked == false) && (OptTipCob2.Checked == false) && (OptTipCob3.Checked == false)) { MessageBox.Show("¡ No ha especificado el tipo de cobranza para este local !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); booEstado = false; OptTipCob1.Focus(); return(booEstado); } if (Convert.ToInt16(CboDocDef.SelectedValue) == 0) { MessageBox.Show("¡ No ha especificado el documento por defecto para este local !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); booEstado = false; CboDocDef.Focus(); return(booEstado); } if (Convert.ToInt16(CboSerDef.SelectedValue) == 0) { MessageBox.Show("¡ No ha especificado el servicio por defecto para este local !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); booEstado = false; CboSerDef.Focus(); return(booEstado); } if (TxtFac.Text == "") { MessageBox.Show("¡ No ha especificado el numero de serie para la factura de este local !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); booEstado = false; TxtFac.Focus(); return(booEstado); } if (TxtBol.Text == "") { MessageBox.Show("¡ No ha especificado el numero de serie para la boleta de este local !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); booEstado = false; TxtBol.Focus(); return(booEstado); } if (TxtTik.Text == "") { MessageBox.Show("¡ No ha especificado el numero de serie para el ticket de este local !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); booEstado = false; TxtTik.Focus(); return(booEstado); } if (Convert.ToInt16(CboSerCobAdi.SelectedValue) == 0) { MessageBox.Show("¡ No ha especificado el servicio para el cobro adicional de horas !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); booEstado = false; CboSerCobAdi.Focus(); return(booEstado); } return(booEstado); }