71
120LPRINT “2ND TAB OF CHANNEL’*; I
130LPRINT CHR$(12);
140NEXT I
150LPRINT CHR$(27) ;“@”
160END
When you run this program you should get like this.
TOP OF FORM | TOP OF FORH | TOP OF FORH |
1ST TAB OF CHANNEL 1
1ST TAB OF CHANNEL 2
1ST TAB OF CHANNEL 3
ZND TAB OF CHANNEL 1
2ND TAB OF CHANNEL 2
ZND TAB OF CHANNEL 3
II
In this program we set tabs at 10 and 20 in channel 1 in line
20.In line 30 we set tabs 15 and 25 in channel 2, and in line 40 we set tabs 17 and 28 in channel 3.
Because the channels are stored, you must make the printer to recall one before you use it, so we used (ESC)“I”CHR$(nO) in line 80.