Si sigo algun ejemplo me da error de Error de argumento: SWITCH.
Mi primera intención es la siguiente puesto que tengo toda la factura con por ejemplo : oPrn:Cmsay(24,15.2,transform((cfactura)->dto,"999.99"),ofonttitulo,,,,1)
Parte de codigo es: (no es completo por que no es necesario), primero me da error al compilar Syntax error: "syntax error at '123456789012'"
- Code: Select all Expand view
- static function bloimprimir()
PRINTER oPrn ;
NAME oemtoansi("Factura")
DEFINE FONT oFont NAME "Arial" SIZE 0, -10 OF oPrn
DEFINE FONT oFontlinea NAME "Arial" SIZE 0, -11 OF oPrn
DEFINE FONT oFonttitulo NAME "Arial" SIZE 0, -11 OF oPrn BOLD
DEFINE FONT oFontprecio NAME "Arial" SIZE 0, -10 OF oPrn
DEFINE FONT ofontfinal NAME "Arial" SIZE 0, -8 OF oPrn
DEFINE FONT oFontfactura NAME "Arial" SIZE 0,-20 OF oPrn BOLD
DEFINE FONT oFontcopia NAME "Arial" SIZE 0,-20 OF oPrn BOLD UNDERLINE
DEFINE FONT oFontfactura NAME "Arial" SIZE 0,-30 OF oPrn BOLD UNDERLINE
DEFINE FONT oFontcourier NAME "Courier New" SIZE 0,-10 OF oPrn
page
* Aqui me gustaria imprimir el codigo de barrar con el codigo del cliente
* ejemplo:
oPrn:Cmsay(25.4,19.9,code128 '123456789012' mode 'A',ofonttitulo,,,,1)
endpage
endprint
return nil
Muchas Gracias.