- Code: Select all Expand view
- #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
EMG