MikMek SubMicro Manual de usuario Pagina 47

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 135
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 46
47
Sample Basic Program
The following basic program was used to print the sample Japanese ticket.
CLS
OPEN "lpt1:" FOR OUTPUT AS #1
WIDTH #1, 255
PRINT #1, "<F25><RR><HW2,2><RC0,2300>";
FOR i = 1 TO 7 'row number
FOR j = 1 TO 94 'cell number
IF j MOD 20 = 0 THEN
PRINT #1, CHR$(13);
END IF
PRINT #1, CHR$(i + 160); CHR$(j + 160);
NEXT j
PRINT #1, CHR$(13); CHR$(13);
NEXT i
PRINT #1, CHR$(12);
Sample Ticket Rows 1-7 of KANJI Font
Note: The above was printed on a 300 dpi printer. We suggest deleting the <HW2,2> command on 200 dpi
printers to avoid oversized characters.
Vista de pagina 46
1 2 ... 42 43 44 45 46 47 48 49 50 51 52 ... 134 135

Comentarios a estos manuales

Sin comentarios