home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a039 / 3.ddi / README < prev    next >
Encoding:
Text File  |  1991-03-12  |  1.9 KB  |  51 lines

  1.                 WELCOME TO PARADOX ENGINE 2.0
  2.                 -----------------------------
  3.  
  4. This README file contains important, last-minute information
  5. about the Paradox Engine 2.0.
  6.  
  7.  
  8. TABLE OF CONTENTS
  9. -----------------
  10.  
  11.   1.  Notes on .DLL files
  12.   2.  Programming with the Paradox Engine 2.0
  13.  
  14.  
  15. 1. NOTES ON .DLL FILES
  16. ----------------------
  17.  
  18.   When developing a Windows application using the Paradox Engine 2.0,
  19.   PXENGWIN.DLL must accompany the application.  It is imperative that you
  20.   use the most recent .DLL.  DLL's are normally stored in the \WINDOWS
  21.   directory, so you should check this directory for an existing
  22.   PXENGWIN.DLL before installing your Engine application.  If there is
  23.   an existing PXENGWIN.DLL, check the date of the file, and be sure to
  24.   use the most recent version of the DLL.
  25.  
  26. 2. Programming with the Paradox Engine 2.0
  27. ------------------------------------------
  28.  
  29.   You can use the Turbo C++ 1.0, Borland C++ 2.0, and Turbo Pascal 6.0
  30.   Integrated Development Environment (IDE) to compile your programs.
  31.   For Turbo C++ 1.0 and Borland C++ 2.0, set up a project file as
  32.   described in the C++ User's Guide.  Remember to select the Large Model
  33.   and include the PXENGTCL.LIB (PXENGWIN.LIB for Windows) in the project
  34.   file.
  35.  
  36.   If a table is open on a secondary index and you use PXSRCHFLD,
  37.   you must search on that field.  Searching on any other field returns
  38.   the error PXERR_INVPARAMETER.
  39.  
  40.   To avoid lock contention, don't open and close tables in very tight
  41.   loops.  If you're using PXTBLCLOSE to flush buffers to disk, use PXSAVE
  42.   or open the table with SaveEveryChange instead.
  43.  
  44.   In Windows you might receive the message, "Can't lock PARADOX.NET -- is
  45.   SHARE.EXE loaded?".  This message can mean that SHARE is not loaded, or
  46.   it could mean that you can't access the PARADOX.NET file.  If SHARE
  47.   is loaded, check your Paradox Network Administrator's Guide for details
  48.   on accessing PARADOX.NET.
  49.  
  50.  
  51.