home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / MEMOXLT.ZIP / MEMOXLT.DOC < prev    next >
Encoding:
Text File  |  1987-02-12  |  1.1 KB  |  26 lines

  1.       Last revision: February 12, 1987 at 17:39
  2.  
  3. The MEMOEDIT feature of Clipper is often overlooked and ignored, but
  4. with some reason.  While MEMOEDIT provides a reasonable editor, you
  5. have no control over the characters it inserts thus making problems
  6. when you wish to use the string generated from the editor.  Clipper
  7. now provides a MEMOTRAN() function that allows some control but not
  8. for everything.  The function provided by MEMOXLT allows more control
  9. and since you have the source, it can be modified.
  10.  
  11. The following is from the source code file and explains both the function
  12. and its options.
  13.  
  14. * MEMOXLT()
  15. * Syntax: MEMOXLT(mem_var [, hard_xlt [,soft_xlt [,lf_xlt [, strip_flag]]]] )
  16. * Return: A string containing in the contents of the mem_var string 
  17. *         with hard/soft CR and LF converted and  hi bit stripped.
  18.  
  19. * default: hard/soft CRs (0D/8D) plus LF (0A) are removed
  20. *........: and all other characters are bitwise anded with 7F.
  21. *........: MEMOXLT(mem_var, "", "", "", .T.) is default settings
  22. *........: MEMOXLT(mem_var, CHR(13), CHR(141), CHR(10), .F.) no changes
  23.  
  24. Enjoy,  Harry M. Van Tassell
  25.  
  26.