home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / CPM / DBASEII / DBEDIT.TXT < prev    next >
Text File  |  2000-06-30  |  2KB  |  32 lines

  1. DBASE II EDITING TIPS
  2. by Beverly Howard, Kaypro Austin Club, May 1987
  3.  
  4. (Using an external editor with dBASE II)
  5.  
  6. When trying to write, edit and test dBase programs with your
  7. favorite word processor, the time losses due to typing in all of
  8. the commands exiting and entering almost (I said almost) make it
  9. worthwhile using the primitive "MODIFY COMMAND" editor.  The
  10. dBase command "QUIT TO" can make exiting to edit easy.  the
  11. following tips assume that you are working on a program named
  12. "TEST.CMD" and your word processor is named "PW.COM".  First
  13. create and run a program named "WORK.CMD" containing the
  14. following lines.
  15.  
  16. STORE "QUIT TO 'A:PW B:TEST.CMD','DBASE WORK'" TO QT DO TEST
  17.  
  18. When you need to edit the program, type "&QT <CR>" at the dot
  19. prompt and dBase will terminate and call up PW.COM on drive A
  20. editing "B:TEST.CMD".  After you have finished editing and quit
  21. PW.COM, the command "DBASE WORK <CR>" will automatically be
  22. executed and "WORK.CMD" will store the "QT" command and start
  23. "TEST.CMD".  If you are really in a hurry, you could add the
  24. "QUIT TO" command to the end of "WORK.CMD" which would insert you
  25. back in PW.COM editing "TEST.CMD" immediately after "TEST" ends.
  26.  
  27. Having a "WORK.CMD" program is a good idea in any case as you can
  28. store variables, set the date and drive, call .DBF files, run
  29. programs and do any other housekeeping you normally do when you
  30. start dBase.  The "QUIT TO" command can be added to the end of
  31. your normal "WORK.CMD" file as needs dictate.
  32.