home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Database / CLIPR502.DOS / SOURCE / SYS / RDDSYS.PRG < prev   
Encoding:
Text File  |  1993-02-15  |  640 b   |  24 lines

  1. /***
  2. *
  3. *  RddSys.prg
  4. *
  5. *  This program is run each time your application is started to setup
  6. *  the proper default driver.  You should modify a copy of this file
  7. *  if you wish to use a default RDD other than DBFNTX.
  8. *
  9. *  Copyright (c) 1993, Computer Associates International, Inc.
  10. *  All rights reserved.
  11. *
  12. */
  13.  
  14. ANNOUNCE RDDSYS                        // This line must not change
  15.  
  16. INIT PROCEDURE RddInit
  17.    REQUEST DBFNTX                      // Causes DBFNTX RDD to be linked in
  18.                                
  19.    rddSetDefault( "DBFNTX" )           // Set up DBFNTX as default driver
  20.  
  21.    RETURN
  22.  
  23. // eof: rddsys.prg
  24.