home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / GET10.ZIP / GETTHIS.DOC < prev    next >
Encoding:
Text File  |  1988-11-09  |  903 b   |  38 lines

  1. How to GET started
  2.  
  3.  1. Make a GET directory (TP\GET)
  4.  2. Copy extracted GET.ARC files into it
  5.  3. Print GET.DOC and GETDEMO.DOC
  6.  4. Make an OBJ directory if you don't have one (TP\OBJ)
  7.  5. DeARC GETOBJ.ARC into the OBJ directory
  8.  6. Make a TPU directory if you don't have one (TP\TPU)
  9.  7. Move QWIK.TPU into the TPU directory
  10.  8. Set directory options: run TURBO then
  11.  
  12.      F10, Options, Directories, OBJ and enter \TP\OBJ
  13.      then TPU and enter \TP\TPU
  14.  
  15.      escape to menu
  16.  
  17.  9. Compile GETVARS and GET units, move TPU files to \TP\TPU
  18. 10. Run GETDEMO, Read GETDEMO.DOC and play
  19.  
  20.  
  21.  
  22. Remember
  23.  
  24. Set PaintingFields to false and RedisplayPrompts to true if you
  25. embed calls to GET procedures in your code outside the context
  26. of a form.
  27.  
  28. your code;
  29.  
  30. PaintingFields  := false;
  31. RedisplayFields := true;
  32. GET...
  33.  
  34. your code;
  35.  
  36.  
  37. To see how to make a form, examine GETDEMO.PAS
  38.