How to print graphic characters
Posted: Sun Dec 20, 2020 3:55 pm
In this sample, the graphic character (a vertical line) is not printed. Any ideas?
EMG
Code: Select all
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oPrn, oFnt
PRINT oPrn PREVIEW
DEFINE FONT oFnt NAME "Courier New" SIZE 0, -16 OF oPrn
PAGE
oPrn:Say( 100, 100, "This should be a vertical line (ALT-179): " + CHR( 179 ), oFnt )
ENDPAGE
ENDPRINT
RELEASE FONT oFnt
RETURN NIL