//double HallarTotIng() //{ // int n_row = 0; // double n_valor = 0; // for (n_row = 2; n_row <= FgDato.Rows.Count - 1; n_row++) // { // if (FgDato.GetData(n_row, 10).ToString() == "True") // { // n_valor = n_valor + Convert.ToDouble(FgDato.GetData(n_row, 7)); // } // } // return n_valor; //} //double HallarTotEgr() //{ // int n_row = 0; // double n_valor = 0; // for (n_row = 2; n_row <= FgDato.Rows.Count - 1; n_row++) // { // if (FgDato.GetData(n_row, 10).ToString() == "True") // { // n_valor = n_valor + Convert.ToDouble(FgDato.GetData(n_row, 8)); // } // } // return n_valor; //} bool CamposOK() { bool booEstado = true; if (Convert.ToInt32(CboCta.SelectedValue) == 0) { MessageBox.Show("¡ No ha especificado el numero de cuenta a conciliar !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); booEstado = false; CboCta.Focus(); return(booEstado); } if (TxtFchEmi.Text == "") { MessageBox.Show("¡ No ha especificado la fecha de la conciliacion !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); booEstado = false; TxtFchEmi.Focus(); return(booEstado); } if (Convert.ToInt32(CboPer.SelectedValue) == 0) { MessageBox.Show("¡ No ha especificadoel periodo de la conciliacion !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); booEstado = false; CboPer.Focus(); return(booEstado); } if (TxtSalIni.Text == "") { MessageBox.Show("¡ No ha especificado el saldo inicial para empezar la conciliacion !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); booEstado = false; TxtSalIni.Focus(); return(booEstado); } return(booEstado); }
private void CmdBuscar_Click(object sender, System.EventArgs e) { if (Convert.ToInt32(CboTipExi.SelectedValue) == 0) { MessageBox.Show("¡ No ha especificado el tipo de existencia !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); CboTipExi.Focus(); return; } //if (TxtFchIni.Text == "") //{ // MessageBox.Show("¡ No ha especificado la fecha de inicio de la busqueda !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); // TxtFchIni.Focus(); // return; //} //if (TxtFchFin.Text == "") //{ // MessageBox.Show("¡ No ha especificado la fecha final de la busqueda !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); // TxtFchFin.Focus(); // return; //} if (Convert.ToInt32(CboPer.SelectedValue) == 0) { MessageBox.Show("¡ No ha indicado el periodo a consultar !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); CboPer.Focus(); return; } //if (Convert.ToDateTime(TxtFchIni.Text) > Convert.ToDateTime(TxtFchFin.Text)) //{ // MessageBox.Show("¡ La fecha de inicio no puede ser mayor a la fecha final !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); // TxtFchFin.Focus(); // return; //} MostrarDatos(); }
private void button1_Click(object sender, System.EventArgs e) { if (DgLista.RowCount == 2) { MessageBox.Show("¡ Ha especificado el item a mostrar !", "", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); CboPer.Focus(); return; } int n_IdRegistro = Convert.ToInt32(DgLista.Columns["n_id"].CellValue(DgLista.Row).ToString()); string c_producto = DgLista.Columns["c_despro"].CellValue(DgLista.Row).ToString(); FrmKardexDetalle frm = new FrmKardexDetalle(); frm.n_iditem = n_IdRegistro; frm.n_idtipexi = Convert.ToInt32(CboTipExi.SelectedValue); frm.c_idmes = Convert.ToInt32(CboPer.SelectedValue).ToString("00"); frm.c_idano = STU_SISTEMA.ANOTRABAJO.ToString(); frm.n_idalmacen = Convert.ToInt32(CboAlmacen.SelectedValue); frm.STU_SISTEMA = STU_SISTEMA; frm.mysConec = mysConec; frm.c_producto = c_producto; frm.Show(); }