Hello,
Can someone provide an example of printing text using DEFINE PRINTER... that prints text in WHITE and background in black (inverted)?
Thank you,
Hello,
Can someone provide an example of printing text using DEFINE PRINTER... that prints text in WHITE and background in black (inverted)?
Thank you,
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oPrn
PRINT oPrn PREVIEW
PAGE
SETBKCOLOR( oPrn:hDCOut, CLR_BLACK )
oPrn:Say( 0, 0, "This is a test", , , CLR_WHITE, 2 )
ENDPAGE
ENDPRINT
RETURN NILThank you Enrico