home *** CD-ROM | disk | FTP | other *** search
/ PSION CD 2 / PsionCDVol2.iso / Programs / 377 / BACKLITE.SIS / macTextutils.opl (.txt) < prev    next >
Encoding:
EPOC OPL Source  |  1998-10-28  |  520 b   |  23 lines

  1.  
  2.  
  3. rem // Backlite+Plus macro - macTextUtils J.kneen 31/8/98
  4.  
  5. proc macUppercase:
  6.     BLSwitchtoCurrent:
  7.     BLPastetext:(UPPER$(BLCopy$:))
  8. endp
  9.  
  10. PROC macLowercase:
  11.     BLSwitchtoCurrent:
  12.     BLPastetext:(LOWER$(BLCopy$:))
  13. ENDP
  14.  
  15.  
  16. PROC macRemarkText:
  17.     BLSwitchtoCurrent:
  18.     BLPastetext:("rem "+BlCopy$:)
  19. ENDP
  20.  
  21.  
  22.  
  23.