private void dtpFecha_ValueChanged(object sender, EventArgs e) { MesaBusiness mesaBusiness = new MesaBusiness(); try { if (chkEntre.Checked == false) { configurarGrilla(); string fecha = dtpFecha.Value.ToString("yyyy.MM.dd"); dgvFacturacion.DataSource = mesaBusiness.listaFecha(fecha); } else { if (dtpEntre.Value == dtpFecha.Value) { configurarGrilla(); string fecha = dtpFecha.Value.ToString("yyyy.MM.dd"); dgvFacturacion.DataSource = mesaBusiness.listaFecha(fecha); return; } configurarGrilla(); string fecha1 = dtpFecha.Value.ToString("yyyy.MM.dd"); string fecha2 = dtpEntre.Value.ToString("yyyy.MM.dd"); dgvFacturacion.DataSource = mesaBusiness.listaFechaEntre(fecha1, fecha2); } } catch (Exception ex) { throw ex; } }
private void chkEntre_CheckedChanged(object sender, EventArgs e) { try { MesaBusiness mesaBusiness = new MesaBusiness(); if (chkEntre.Checked == true) { dtpEntre.Enabled = true; lblDesde.Show(); lblHasta.Show(); string fecha1 = dtpFecha.Value.ToString("yyyy.MM.dd"); string fecha2 = dtpEntre.Value.ToString("yyyy.MM.dd"); dgvFacturacion.DataSource = mesaBusiness.listaFechaEntre(fecha1, fecha2); configurarGrilla(); } else { dtpEntre.Enabled = false; lblDesde.Hide(); lblHasta.Hide(); string fecha1 = dtpFecha.Value.ToString("yyyy.MM.dd"); dgvFacturacion.DataSource = mesaBusiness.listaFecha(fecha1); } } catch (Exception ex) { throw ex; } }
private void dtpEntre_ValueChanged(object sender, EventArgs e) { MesaBusiness mesaBusiness = new MesaBusiness(); try { if (dtpEntre.Value < dtpFecha.Value) { MessageBox.Show("La fecha no debe ser menor a fecha 'desde'"); dtpEntre.Value = dtpFecha.Value; } if (dtpEntre.Value == dtpFecha.Value) { configurarGrilla(); string fecha1 = dtpFecha.Value.ToString("yyyy.MM.dd"); dgvFacturacion.DataSource = mesaBusiness.listaFecha(fecha1); return; } entreFecha(sender, e); } catch (Exception ex) { throw ex; } }