Star Micronics NB-15 user manual Try setting the margins with this program

Models: NB-15

1 114
Download 114 pages 4.7 Kb
Page 71
Image 71
Try setting the margins with this program:

SETTING LEFT AND RIGHT MARGINS

The left and right margins of this\printer work just like a typewriter - once they are set all the printing is done between them. The commands to set the margins are given in the follow- ing table:

Table 6-5

Left and right margin commands

Function

Control code

Setleftmarginatcolumnn

(ESC)“l”CHR$(n)

Setrightmarginatcolumnn

(ESC)“Q”CHR$(n)

Try setting the margins with this program:

10Demo of margins 20 GOSUB 70

30 LPRINT C~$(27);“1”;CHR$(lO);

40 LPRINT CHR$(27);“Q”;CHR$(70);

50 GOSUB 70

60 END

70FOR I=1 TO 80

80 LPRINT “X”;

90 NEXT I

100LPRINT

110RETURN

The first thing that this program does is to branch to the subroutine that starts in line 70 . This subroutine prints 80 X’s in a row. The first time that the subroutine is used, all the X’s fit in one line. Then line 30 sets the left margin to 10, and line 40 sets the right margin to 70. Once again the subroutine is used, but this time the X’s won’t all fit on one line since there is now only room for 60 characters between the margins.

Run the program. The results will look like this:

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxx

When you want to reset the margins to the default values, you have two choices. You can either turn the printer off and back

Page 71
Image 71
Star Micronics NB-15 user manual Try setting the margins with this program