A sample code :
This code is ok . work print in Epson
The work print in Brother HL duplex ( default printer)
Function Main()
local oPrn
PRINT oPrn TO "miEpson"
PAGE
oPrn:Say( 4, 4, "hola mundo" )
ENDPAGE
ENDPRINT
return nilThis code is ok . work print in Epson
unction Main()
local oPrn
PRINT oPrn TO "miEpson"
oPrn:SetPage(1) // code added
PAGE
oPrn:Say( 4, 4, "hola mundo" )
ENDPAGE
ENDPRINT
return nilThe work print in Brother HL duplex ( default printer)