home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / bit / listserv / dbasel / 813 < prev    next >
Encoding:
Text File  |  1992-08-14  |  1.8 KB  |  48 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!paladin.american.edu!auvm!UTHSCSA.BITNET!BURNFIELD
  3. Original_To:  BITNET%"DBASE-L@TECMTYVM.BITNET"
  4. Original_cc:  BURNFIELD
  5. Message-ID: <DBASE-L%92081410172600@TECMTYVM.MTY.ITESM.MX>
  6. Newsgroups: bit.listserv.dbase-l
  7. Date:         Fri, 14 Aug 1992 11:16:00 CDT
  8. Sender:       "Discussion on the use of the dBase language and related
  9.               dialects" <DBASE-L@NMSUVM1.BITNET>
  10. From:         BURNFIELD@UTHSCSA.BITNET
  11. Subject:      RE: Setting up Paths
  12. Lines: 34
  13.  
  14. I don't have the original message handy and don't remember the exact question,
  15. but I'll throw in my 2 cents worth. I am completing a project in Foxbase+/Mac
  16. and have specified where my data files are located by using the VOLUME <x> =
  17. command in my config.fx. My config.fx file contains lines similar to the
  18. following:
  19.  
  20.    VOLUME C = "HD105:project:data" (The Mac OS uses ':' instead of DOS's '\')
  21.    VOLUME D = "as_public:xfer"
  22.  
  23. When I open my datafiles, I open them as follows:
  24.  
  25.    SELECT A
  26.    USE C:database.dbf
  27.  
  28. The D volume is used as a repository for a labels print file that my system
  29. generates. I write to it as follows:
  30.  
  31.    SET DEVICE TO PRINT
  32.    SET PRINT TO D:labeldata.lis
  33.      ... print labels stuff
  34.  
  35. This has worked pretty well for me. I have a copy of config.fx on my machine
  36. that points to my data directory and a copy of config.fx on the users machines
  37. that points to their data directory. This makes it easy for me to update the
  38. system on my machine, using my data, and then transfer it to their machines and
  39. not worry about configuring the program to point to their data directory.
  40.  
  41. Again, I use Foxbase, I'm not sure if dbase III+ supports the VOLUME statement
  42. in its config.db file.
  43.  
  44. Dean Burnfield
  45. The University of Texas Health Science Center at San Antonio
  46. Bitnet address: burnfiel@uthscsa
  47. Internet address: burnfield@uthscsa.edu
  48.