home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / clipper / memoge.zip / MEMOGET.DOC < prev    next >
Text File  |  1993-08-02  |  2KB  |  49 lines

  1.   ---------------------------------------------------------------------------
  2. MemoGet.doc  7/31/93
  3.  
  4. Author: Shaun Botha (CompuServe: 70043,2641)
  5.  
  6. Let me know if you make any changes so that I and others can be kept updated.
  7.  
  8. PS: Just in case...
  9.        Author accepts no responsibility for damage caused to software, hardware
  10.        marital status, etc resulting from the use of the provided code.
  11.  
  12.         I have to do this - a friend of mine is a litigation lawyer!
  13.   ---------------------------------------------------------------------------
  14.  
  15. MemoGet is my little attempt at 'GET'ting a memo field.
  16.  
  17. The basic idea is that the GET displays only the first few characters of the
  18. memo.  In order to modify the memo you need to press a special key to
  19. access the memo (by default I've used Alt+Enter but you can change this).
  20.  
  21. Example:
  22.     ..
  23.     @ 5, 5 say "Name   :" get cName
  24.     @ 6, 5 say "Notes  :" get cNotes as memo 6, 15, 20, 40
  25.     @ 7, 5 say "Address:" get cAddr
  26.     ..
  27.  
  28. The numbers after the '..as memo' indicate the coordinates of the window to
  29. be used by memoEdit for modification of the memo.  MemoGet provides a default
  30. memo editor but you may specifiy your own as part of the GET statement as
  31. follows:
  32.     ..
  33.     @ 6, 5 say "Notes  :" get cNotes as memo 6, 15, 20, 40 editor myEditor
  34.     ..
  35.  
  36. * Do not include parenthesis as part of the name for your custom editor - they
  37.   will be inserted by the preprocessor
  38.  
  39.  
  40. Files:
  41.     MemoGet.ch :    Provides the GET command for MemoGetting
  42.     MemoGet.prg:    Provides custom reader block and associated functions for
  43.                     processing 'GOT' memos.  Link MemoGet.obj with your app -
  44.                     obviously
  45.  
  46. Hope you like it
  47.  
  48. ShaunB..
  49.