private void fechaInicio_ValueChanged(object sender, EventArgs e)
        {
            utilitarios.maneja_fechas fecha = new maneja_fechas();
            DateTime  fec    = fechaInicio.Value;
            string    fechai = fecha.fechaCortaMysql(fechaInicio) + " 00:00:00";
            string    fechaf = fecha.fechaCortaMysql(fechaFinal) + " 23:59:59";
            DataTable dato   = conexiones_BD.clases.clientes.ventasXcliente(tabla_Clientes.CurrentRow.Cells[2].Value.ToString(), fechai, fechaf);

            if (dato.Rows.Count == 0)
            {
                MessageBox.Show("No existe comprar en esas fechas", "No hay compras", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
            else
            {
                lblTotal.Text = "$" + dato.Rows[0][0].ToString();
                cargandoCompras(fechai, fechaf);
            }
        }
        private void colocandoDetallesdeVentas()
        {
            utilitarios.maneja_fechas fecha = new maneja_fechas();
            DateTime fec    = fechaFinal.Value;
            string   fechai = fec.Year.ToString() + "-01-01 00:00:00";
            string   fechaf = fecha.fechaCortaMysql(fechaFinal) + " 23:59:59";

            Console.WriteLine(fechaf);
            lblTotal.Text = "$" + conexiones_BD.clases.clientes.ventasXcliente(tabla_Clientes.CurrentRow.Cells[2].Value.ToString(), fechai, fechaf).Rows[0][0].ToString();
            cargandoCompras(fechai, fechaf);
        }
        private void clientes_frecuentes_Load(object sender, EventArgs e)
        {
            gadgets.horientaciones_textos.colocarTitulo(panelTitulo, lblEncanezado);
            cargandoTablas();

            DateTime fec = fechaFinal.Value;

            fechaInicio.Text = "01/01/" + fec.Year;
            utilitarios.maneja_fechas fecha = new maneja_fechas();
            fi = fec.Year.ToString() + "-01-01 00:00:00";
            ff = fecha.fechaCortaMysql(fechaFinal) + " 23:59:59";

            activandoAreaDetalles(false);
        }
        private void cargarLista()
        {
            maneja_fechas fecha = new maneja_fechas();

            cargandoListas.cargarLista(conexiones_BD.clases.compras.compras.factura_ingresadas(fecha.fechaCortaMysql(fechaa)), listaDocu, "numero_factura", "numero_factura");
            if (listaDocu.Items.Count != 0)
            {
                listaDocu.SelectedIndex = 0;
                cargarFactura();
            }
            else
            {
                listaDocu.Text = "";
            }
            utilitarios.cargandoListas.cargarLista(vendedor, listaVendedor, "usuario", "idusuario");
            int index = listaVendedor.FindStringExact(sesion.Datos[0]);

            listaVendedor.SelectedIndex = index;
        }