home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 2: Collection B / 17Bit_Collection_B.iso / files / 1703.dms / 1703.adf / Documents / tab.tpl < prev    next >
Encoding:
Text File  |  1989-01-06  |  233 b   |  20 lines

  1. /* tab-macro */
  2.  
  3. /* löscht alle tabs und setzte an jede 10 Spalte ein tab */
  4.  
  5. /* TextPlus ist unser host. */
  6.  
  7. address 'TextPlus'
  8.  
  9. 'ClearTabs'
  10.  
  11. 'SetTab' 1
  12.  
  13. do i = 10 by 10 to 70
  14.  
  15.    'SetTab' i
  16.  
  17. end
  18.  
  19. 'Display' 'Das war das Tab-Macro!'
  20.