Пример #1
0
        //cargar tamaño hoja
        private void TamPrinter()
        {
            //datos boleta
            string datos = System.IO.Directory.GetCurrentDirectory() + @"\config.cfg";

            if (System.IO.File.Exists(datos))           //personal
            {
                cargar_config aux = new cargar_config();
                aux.guarda_variables(@"\printer.ini");

                hoja_alto  = Int32.Parse(aux.get_nombre_empresa());
                hoja_ancho = Int32.Parse(aux.get_nombre_dueno());
                font1      = new Font("Courier new", Int32.Parse(aux.get_color1()));
                font2      = new Font("Courier new", Int32.Parse(aux.get_color2()));
                font3      = new Font("Courier new", Int32.Parse(aux.get_color3()));
                font4      = new Font("Courier new", Int32.Parse(aux.get_color4()));
            }
            else            //default
            {
                hoja_alto  = 350;
                hoja_ancho = 302;
                font1      = new Font("Courier new", 10);
                font2      = new Font("Courier new", 12);
                font3      = new Font("Courier new", 16);
                font4      = new Font("Courier new", 18);
            }
        }
Пример #2
0
        private void validar_soft()
        {
            licencia aux = new licencia();

            if (aux.get_validar())
            {
                sesion_nombre_propiedad.Text = "Licencia propiedad de " + aux_config.get_nombre_dueno();
            }
            else
            {
                sesion_nombre_propiedad.Text = "Versión Prueba - Ingrese la licencia.";
            }
        }