Beispiel #1
0
        private void GetCobranzaGeneral()
        {
            Clases.cCobranzaGeneral cob = new Clases.cCobranzaGeneral();
            double Importe = cob.GetTotalCobranza();

            txtCobranzaGeneral.Text = Importe.ToString();
            Clases.cFunciones fun = new Clases.cFunciones();
            if (Importe > 0)
            {
                txtCobranzaGeneral.Text = fun.SepararDecimales(txtCobranzaGeneral.Text);
                txtCobranzaGeneral.Text = fun.FormatoEnteroMiles(txtCobranzaGeneral.Text);
            }
        }