home *** CD-ROM | disk | FTP | other *** search
/ DOS Wares / doswares.zip / doswares / DATABASE / DB4COMP / README < prev    next >
Encoding:
Text File  |  1993-03-16  |  5.4 KB  |  151 lines

  1.  
  2.                     Welcome to dBASE Compiler for DOS 
  3.                     ---------------------------------
  4.  
  5. This file contains important, late-breaking information about dBASE 
  6. Compiler for DOS, including revisions to the documentation.  Information 
  7. in this file supersedes information in the documentation.
  8.  
  9. TABLE OF CONTENTS
  10. -----------------
  11. 1.  How to Contact Borland
  12. 2.  Configuring dBASE's Virtual Memory Manager (VMM)
  13. 3.  Error Messages
  14. 4.  Compiling and Linking in One Step
  15. 5.  Running an Executable File in Multiple Sessions
  16. 6.  Documentation Changes
  17.  
  18. 1. HOW TO CONTACT BORLAND
  19. -------------------------
  20. If you have any problems with the product, please read this file and 
  21. the manuals first.  If you still need assistance, you can get help from 
  22. the following sources:
  23.  
  24.   1. CompuServe bulletin board: GO BORLAND
  25.      - Provides access to the Borland forums where you can ask technical
  26.        questions, and get the latest technical information, sample 
  27.        files, utilities, and ideas.
  28.  
  29.   2. File Download BBS: 1-408-439-9096 (8, N, 1)
  30.      - Contains sample files, applications, and technical information
  31.        that you can download.
  32.  
  33.   3. Automated Support: 
  34.        800 Automated Support (phone): 1-800-524-8420
  35.        Online Automated Support (via modem): 1-408-431-5250 (8, N, 1) 
  36.        - Provides up-to-date technical information 24 hours a day, seven
  37.          days a week.  Also provides product information, usage tips,
  38.          troubleshooting information, and answers to commonly-asked
  39.          questions.
  40.  
  41.   4. TECHFAX service: 1-800-822-4269 
  42.      - A 24-hours a day service that provides technical information
  43.        on all Borland products and delivers it to your fax machine.
  44.  
  45.   5. dBASE Advisor Line: 1-900-555-1003.
  46.      - A faster, more comprehensive level of technical support.  Each
  47.        call is $2.00 per minute (the first minute is free).
  48.  
  49.   6. Borland Express Support Line: 1-800-524-8420
  50.      - Provides recorded answers to common questions. 
  51.  
  52.   7. dBASE Technical Support: 1-408-431-9060
  53.  
  54. For more information about all of the Borland Technical Support programs, 
  55. read the brochure, "Borland introduces a New Class of Technical Support," 
  56. included with this product.
  57.  
  58. Information You Need When You Call Technical Support
  59. ----------------------------------------------------
  60. When you call Technical Support, please have the following information 
  61. ready:
  62.  
  63.   a. Product name and serial number on your original distribution disk.  
  64.      Please have your serial number ready or we will be unable to process 
  65.      your call.
  66.  
  67.   b. Product version number. 
  68.  
  69.   c. Computer brand, model, and the brands and model numbers of any 
  70.      additional hardware.
  71.  
  72.   d. Operating system and version number. (The version number can be 
  73.      determined by typing VER at the DOS prompt.)
  74.  
  75.   e. Contents of your AUTOEXEC.BAT file.
  76.  
  77.   f. Contents of your CONFIG.SYS file.
  78.  
  79.  
  80. 2. CONFIGURING dBASE'S VIRTUAL MEMORY MANAGER (VMM)
  81. ---------------------------------------------------
  82. When you run BDC or a dBASE executable file on a system with less than 
  83. 4.5MB extended memory, dBASE's VMM runs automatically and manages your 
  84. system's memory and disk space for the best performance.
  85.  
  86. You can customize VMM's settings by modifying its configuration file,
  87. DBASE.VMC, located in the Compiler home directory.  If you want to
  88. customize the environment that your executable file is running in, you
  89. must rename DBASE.VMC to the name of your executable file.  For example,
  90. if the name of your executable file is TEST.EXE, rename DBASE.VMC to
  91. TEST.VMC.  Then, when you run TEST.EXE, VMM will use the memory settings
  92. you specified in TEST.VMC. 
  93.  
  94. If you want to limit the amount of memory that dBASE Compiler for DOS 
  95. or your executable file uses without modifying the .VMC file, you can 
  96. use the DOS environmental variable, DOS16M.  For example, SET DOS16M=:4M 
  97. limits the Compiler or your executable file to 4MB of memory.
  98.  
  99. For more information about configuring VMM, read "Optimizing dBASE IV"
  100. in the dBASE IV 2.0 "Programming in dBASE IV" manual.  
  101.  
  102.  
  103. 3. ERROR MESSAGES
  104. -----------------
  105. The dBASE Compiler for DOS error messages are documented in ERRORMSG.TXT,
  106. a text file that is copied to your Compiler home directory during
  107. installation.  
  108.  
  109.  
  110. 4. COMPILING AND LINKING IN ONE STEP 
  111. ------------------------------------
  112. You can specify source files (.PRG, .FRG, .LBG, etc.) as well as
  113. object files (.DBO, .FRO, .LBO, etc.) in the BDC command line, or
  114. in a @filelist to compile and link files in one step.  
  115.  
  116. BDC ignores the specified object files during compilation, generates
  117. object files from the specified source files, then invokes BDL which
  118. links all the object files.
  119.  
  120. For example, you can list all the files you want to compile and link
  121. in a @filelist as follows:
  122.  
  123. MAIN.PRG
  124. MYSQL.DBO
  125. MYBIN.BIN
  126. MYQBE.QBE
  127. MYFRG.FRG
  128. MYFMT.FMO
  129.  
  130. Then, to compile the source files and link the object files in one
  131. step, use the BDC command as follows:
  132.  
  133. BDC @filelist
  134.  
  135.  
  136. 5. RUNNING AN EXECUTABLE FILE IN MULTIPLE SESSIONS
  137. --------------------------------------------------
  138. If you run your executable (.EXE) file in multiple sessions under
  139. Windows, you must set the file as read-only to avoid share violations.
  140.  
  141.  
  142. 6. DOCUMENTATION CHANGES
  143. ------------------------
  144. - p. 23:  The explicit rule example in the "Writing Rules" section
  145.   should be as follows:
  146.  
  147.      myprog.dbo: myprog.prg
  148.         BDC -c myprog.prg
  149.  
  150.  
  151.