private void PrintPageEventHandler(object sender, PrintPageEventArgs e)
        {
            string InformacionDelError = string.Empty;

            ClsImpresionTickets.TicketDePrueba(ref e, ref InformacionDelError);

            if (InformacionDelError != string.Empty)
            {
                MessageBox.Show(InformacionDelError, "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                FrmPrincipal.ObtenerInstancia().MensajeAdvertencia("Ocurrio un error al intentar impimir el ticket");
            }
        }