home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / PRINTER / ZBPLT101.ZIP / HELLO.PLT < prev    next >
Encoding:
Text File  |  1991-03-15  |  462 b   |  19 lines

  1. ** HELLO.PLT
  2. **
  3. ** Prints an underlined 'Hello' at the top of a landscape page.
  4. ** Shows an example of how the CHAR command is used.
  5. **
  6. FORM IN 2 L 0.50 0.50 0.50 0.50
  7. MOVA 4.50 0.20
  8. **
  9. ** turn underlining on, add leading spaces
  10. **   esc  &   d   0   D  sp  sp
  11. CHAR 027 038 100 048 068 032 032
  12. **
  13. ** output text
  14. TEXT Hello!
  15. **
  16. **  trailing spaces, underlining off and line feed
  17. **   sp  sp  esc  &   d   @  lf
  18. CHAR 032 032 027 038 100 064 010
  19.