home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Unleashed / Visual_Basic_4_Unleashed_SAMS_Publishing_1995.iso / crystal / crystal.40 / disk1 / crwdefs.inc < prev    next >
Encoding:
Text File  |  1995-04-20  |  1.2 KB  |  40 lines

  1. '
  2. ' File:    crwdefs.inc
  3. '
  4. ' Author:  Greg Hoffenbacker
  5. ' Date:    06 Oct 93 
  6. '
  7. ' Purpose: Include file for crwsetup.inc, contains defines for different software builds.
  8. '
  9. ' Revisions:
  10. '
  11. ' Note: Comments begin with ' or REM.  Metacommands begin with '$.
  12. '
  13.  
  14.  
  15.  
  16. ' Uncomment the correct define for each different installation.
  17.  
  18. ''$DEFINE CRW
  19. ''$DEFINE CRWPRO
  20. '$DEFINE CRWEVALUATE
  21. '$DEFINE OEM1
  22.  
  23.  
  24. ' Uncomment this define to activate the file searching.
  25.  
  26. ''$DEFINE FIND_APP_FILE
  27.  
  28.   
  29. '$IFDEF FIND_APP_FILE
  30.  
  31.     ' Change these to the correct application and file name to be searched for.
  32.     CONST S_OEM_SEARCH_FOR_APP$    = "Protogen+"    ' This is the name of the application.  This name appears in the Search and Set Application Directory dialogs.  Maximum length is about 10 uppercase letters or 13 lowercase letters.
  33.     CONST S_OEM_SEARCH_FOR_FILE$   = "PVCUSTOM.TAB" ' This is the name of the file to search for.
  34.  
  35.     ' Do not change these.
  36.     CONST S_OEM_SEARCH_MESSAGE$    = "Searching for "
  37.     CONST S_ERR_APPLNOTFOUND$      = " not found in: "
  38.     CONST D_FILELOCATION           = 800
  39.     CONST SYM_FILELOCATION$        = "FILELOCATION"
  40. '$ENDIF