home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a034 / 2.ddi / ERRORMSG.TXT < prev    next >
Encoding:
Text File  |  1994-02-02  |  18.4 KB  |  697 lines

  1.                   dBASE Compiler for DOS Error Messages
  2.                   -------------------------------------
  3.  
  4. This file lists the dBASE Compiler for DOS error messages in alphabetical 
  5. order.  If you get an error message that is not listed here, refer to  
  6. Appendix G, "dBASE Error Messages," in the Language Reference.
  7.  
  8.  
  9.  
  10. ')' missing in macro invocation
  11.  
  12.     MAKE error.  Left and right parentheses are required to invoke 
  13.     a macro.  For example:
  14.         
  15.         MACRO = DIR *.prg
  16.         $(MACRO)
  17.  
  18.  
  19. #include: expecting a file name
  20.  
  21.     BDC error.  Your program contains an #include preprocessor directive 
  22.     that doesn't have a file name specified.
  23.  
  24.  
  25. Argument mismatch
  26.  
  27.     BDC error.  The arguments in a called macro do not match the 
  28.     macro's defined parameter list.  For example:
  29.         
  30.         #define x(y)  y       
  31.         ? x                && missing parameter
  32.  
  33.  
  34. Bad filename format in include statement
  35.  
  36.     MAKE error.  Include file names must be surrounded by quotes 
  37.     ("filename") or angle brackets (<filename>).  The file name was 
  38.     missing the opening quote or angle bracket.  If you used a macro, 
  39.     the resulting expansion text is incorrect, that is, it is not 
  40.     surrounded by quote marks.
  41.  
  42.  
  43. Bad macro output translator
  44.  
  45.     MAKE error.  Invalid syntax for substitution within macros.  
  46.     For example:
  47.  
  48.         $(MODEL:=s)  or  $(MODEL:)  or  $(MODEL:s)
  49.  
  50.  
  51. Bad undef statement syntax
  52.  
  53.     MAKE error.  An !undef statement must contain a single identifier 
  54.     (and nothing else) as the body of the directive.
  55.  
  56.  
  57. Can't create output file: <filename>
  58.  
  59.     BDC error.  BDC could not create the preprocessed output (.dpp) 
  60.     file.  You may have specified an invalid path with the -P or -p
  61.     option, or your system may not have enough disk space.
  62.  
  63.  
  64. Can't find include file <filename>
  65.  
  66.     BDC error.  Make sure you've used the correct include file name 
  67.     and/or path in your #include statement, or with the -I option.  
  68.  
  69.  
  70. Can't open file: <filename>
  71.  
  72.     BDC error.  You may have specified a file that doesn't exist.
  73.  
  74.  
  75. Cannot create <filename>!
  76.  
  77.     BDL, DSPLIT, or DJOIN error.  BDL or DJOIN could not create
  78.     the executable file, or DSPLIT could not create the file
  79.     segments because:
  80.     -  You have specified an invalid path with the -E option (BDL)
  81.        or -O option (DPSLIT or DJOIN)
  82.     -  There is an existing read-only file with the same name
  83.     -  Your system has run out of file handles.
  84.  
  85.  
  86. Cannot execute <filename>!
  87.  
  88.     Your executable file could not be executed.  Your system may not 
  89.     have enough memory.
  90.  
  91.  
  92. Cannot have multiple paths for implicit rule
  93.  
  94.     MAKE error.  You can only have a single path for each of the 
  95.     extensions in an implicit rule.  Multiple path lists are only 
  96.     allowed for dependents in an explicit rule.  For example:
  97.         
  98.         {path1;path2}.prg.dbo:   #Invalid
  99.         {path}.prg.dbo           #Valid
  100.  
  101.  
  102. Cannot have path list for target
  103.  
  104.     MAKE error.  You can only specify a path list for dependents of an
  105.     explicit rule.  For example:
  106.  
  107.         {path1;path2}prog.exe: prog.dbo   #Invalid
  108.         prog.exe: {path1;path2}prog.dbo   #Valid
  109.  
  110.  
  111. Cannot open <filename>!
  112.  
  113.     BDL, DSPLIT, or DJOIN error.  You may have specified a file that 
  114.     doesn't exist.
  115.  
  116.  
  117. Cannot split to more than 999 file segments!
  118.  
  119.     DSPLIT error.  The file segment size that you specified with the 
  120.     -S option is too small.  Enter a higher value so that DSPLIT creates 
  121.     fewer than 999 file segments.  
  122.  
  123.  
  124. Cannot write to <filename>!
  125.  
  126.     BDL, DSPLIT, or DJOIN error.  A write error occurred while BDL,  
  127.     DSPLIT, or DJOIN was writing to a file.
  128.     
  129.     If using BDL, this message is also displayed if you specified an 
  130.     invalid filename for the resulting executable file.  For example, 
  131.     BDL @Allfiles -E Aux is invalid because "Aux" is a DOS device name.
  132.  
  133.  
  134. Circular dependency exists in makefile
  135.  
  136.     MAKE error.  The makefile indicates that a file needs to be 
  137.     up-to-date before it can be built.  Take, for example, the 
  138.     following explicit rules:
  139.  
  140.         file1: file2
  141.         file2: file3
  142.         file3: file1
  143.  
  144.     This implies that file1 depends on file2, which depends on file3, 
  145.     and file3 depends on file1.  This is illegal since a file cannot 
  146.     depend on itself, directly or indirectly.
  147.  
  148.  
  149. Colon expected
  150.  
  151.     MAKE error.  You have forgotten to put the colon at the end of 
  152.     your implicit rule.
  153.    
  154.        .prg.dbo:   #Correct
  155.        .prg.dbo    #Incorrect
  156.  
  157.  
  158. Command arguments too long
  159.  
  160.     MAKE error.  The arguments to a command were more than the 
  161.     128-character limit imposed by DOS.
  162.  
  163.  
  164. Command syntax error
  165.  
  166.     MAKE error.  This message is displayed in the following cases:
  167.     - The first rule line of the makefile contained any leading whitespace.
  168.     - An implicit rule did not consist of .ext.ext:.
  169.     - An explicit rule did not contain a name before the : character.
  170.     - A command definition did not contain a name before the = character.
  171.  
  172.  
  173. Command too long
  174.  
  175.     MAKE error.  The length of a command has exceeded 128 characters.  
  176.     You might want to use a response file.
  177.  
  178.  
  179. Corrupted <filename>!
  180.  
  181.     BDL error.  DBASE.RTL is corrupted.  Reinstall it from the product 
  182.     disk.
  183.  
  184.  
  185. Could not create temporary file <filename>
  186.  
  187.     MAKE error.  MAKE was unable to open the necessary temporary file.  
  188.     The file may be read-only, or may be already open.
  189.  
  190.  
  191. Disk in drive <drive> is full! Please replace it with another disk!
  192.  
  193.     DSPLIT or DJOIN error.  The target location you specified with the 
  194.     -O option does not have enough disk space for the file segment or
  195.     reassembled file.  Try a different disk.
  196.  
  197.  
  198. Disk is full!
  199.  
  200.     BDL, DSPLIT, or DJOIN error.  The hard disk you are writing the 
  201.     file to does not have enough space.
  202.  
  203.  
  204. Disk is write-protected!
  205.  
  206.     BDL, DSPLIT, or DJOIN error.  The disk you are writing the file to 
  207.     is write-protected.
  208.  
  209.  
  210. Division by zero
  211.  
  212.     MAKE error.  A division or remainder operation in an !if statement 
  213.     has a zero divisor.
  214.  
  215.  
  216. Division by zero in #if
  217.  
  218.     BDC error.  A division in an #if statement has a zero divisor.
  219.  
  220.  
  221. <filename> does not exist - don't know how to make it
  222.  
  223.     MAKE error.  There is a nonexistant file name in the build sequence, 
  224.     and no rule exists that would allow the file name to be built.
  225.  
  226.  
  227. Drive is not ready!
  228.  
  229.     BDL, DSPLIT, or DJOIN error.  Make sure you've inserted a floppy disk 
  230.     into the drive where you are writing the file to.
  231.  
  232.  
  233. Duplicate file <filename>!
  234.  
  235.     BDL error.  You have specified an object file more than once. 
  236.     For example:  
  237.     
  238.         BDL TEST TEST
  239.         BDL TEST @FILELIST   (and FILELIST contains TEST)
  240.  
  241.  
  242. Empty #if expression
  243.  
  244.     BDC error.  You have used an #if directive without an expression.
  245.  
  246.  
  247. Expression parser: syntax error
  248.  
  249.     BDC error.  BDC encountered an error while parsing an #if statement.  
  250.     For example:
  251.  
  252.         #if foobar()   && foobar() is not defined
  253.  
  254.  
  255. Expression syntax error in !if statement
  256.  
  257.     MAKE error.  The expression in an !if statement contains a 
  258.     mismatched parenthesis, an extra or missing operator, or a missing 
  259.     or extra constant.
  260.  
  261.  
  262. Extra chars ignored at end of line
  263.  
  264.     BDC warning.  BDC ignored all characters after any conditional 
  265.     #if or #elif statements.
  266.  
  267.  
  268. File <filename> is already open
  269.  
  270.     BDC error.  You are trying to compile a file that either "includes"
  271.     itself or another file recursively, for example, TEST.PRG that
  272.     contains #include "TEST.PRG".
  273.  
  274.  
  275. File not found: <filename>
  276.  
  277.     BDC error.  BDC can't find <@filename>, the file that contains the 
  278.     list of files to compile. 
  279.  
  280.  
  281. Filename too long
  282.  
  283.     MAKE error.  The file name given in an #include directive was too 
  284.     long for the compiler too process.  Path names in DOS must be no 
  285.     more than 79 characters long.
  286.  
  287.  
  288. If statement too long
  289.  
  290.     MAKE error.  An if statement has exceeded 4,096 characters.
  291.  
  292.  
  293. Ifdef statement too long
  294.  
  295.     MAKE error.  An ifdef statement has exceeded 4,096 characters.
  296.  
  297.  
  298. Ifndef statement too long
  299.  
  300.     MAKE error.  An ifndef statement has exceeded 4,096 characters. 
  301.  
  302.  
  303. Illegal character in constant expression <expression>
  304.  
  305.     MAKE error.  MAKE encountered an invalid character in a constant
  306.     expression.  If the character is a letter, this probably indicates 
  307.     a misspelled identifier.
  308.  
  309.  
  310. Illegal octal digit
  311.  
  312.     MAKE error.  An octal constant was found containing a digit of 
  313.     8 or 9.
  314.  
  315.  
  316. Illegal parameter list in #define
  317.  
  318.     BDC error.  The parameter list in a #define statement may be missing 
  319.     an ')' or you might have used a literal value in the parameter list.  
  320.     For example:
  321.     
  322.         #define VAR("x",y) DEF(v,w)    && "x" is an invalid argument
  323.         #define VAR(1) B(x)            && 1 is an invalid argument
  324.  
  325.  
  326. Illegal usage of directives
  327.  
  328.     BDC error.  You have used the directives incorrectly.  For example:
  329.         
  330.         #define $  "hello"  && Symbols such as "$" are invalid macro names
  331.         #define #if if()    && Cannot expand preprocessor directives
  332.  
  333.  
  334. Incorrect command line argument: <argument>
  335.  
  336.     MAKE error.  You've used incorrect command-line arguments.
  337.  
  338.  
  339. Incorrect option specified.....<option>!
  340.  
  341.     BDL error.  You have used a command line option that BDL doesn't
  342.     recognize.  Make sure you specify a valid option with the correct
  343.     upper- or lowercase letter.
  344.  
  345.  
  346. Insufficient memory!
  347.  
  348.     BDC, BDL, DSPLIT, or DJOIN error.  Your system doesn't have enough 
  349.     memory to run BDC, BDL, DSPLIT, or DJOIN.
  350.  
  351.  
  352. Int and string types compared
  353.  
  354.     MAKE error.  You've tried to compare an integer operand with a 
  355.     string operand in an !if or !elif expression.
  356.  
  357.  
  358. Invalid file <filename>!
  359.  
  360.     BDL error.  BDL links the following object files only: .DBO, .FMO,
  361.     .FRO, .LBO, .QBO, .UPO, and .BIN.  Filenames with other extensions 
  362.     are invalid.
  363.  
  364.  
  365. Invalid file name <filename>!
  366.  
  367.     BDL error.  You have used an invalid character in your file list.  
  368.     For example:  
  369.     
  370.         BDL TEST*
  371.  
  372.     The following are invalid characters:  [, ], =, |, <, >, +, ;,
  373.     *, ?, /, ,
  374.  
  375.  
  376. Line too long
  377.  
  378.     BDC error.  A command line in your program file exceeds 1023 
  379.     characters.
  380.  
  381.  
  382. Macro expansion too long
  383.  
  384.     MAKE error.  A macro cannot expand to more than 4,096 characters.
  385.     This error often occurs if a macro recursively expands itself.  A
  386.     macro cannot legally expand to itself.
  387.  
  388.  
  389. Macro recursion
  390.  
  391.     BDC error.  You are using a macro recursively.  For example:
  392.   
  393.         #define ABC(x) ABC(x)
  394.         ? ABC(2)
  395.  
  396.  
  397. Macro redefinition
  398.  
  399.     BDC warning.  You have defined a macro more than once.  
  400.     For example:
  401.     
  402.         #define A  "Hello"
  403.         #define A  "Bye"     
  404.  
  405.  
  406. Macro replace text <string> is too long
  407.  
  408.     MAKE error.  The macro replacement text <string> overflowed MAKE's
  409.     internal buffer of 512 bytes.
  410.  
  411.  
  412. Macro substitute text <string> is too long
  413.  
  414.     MAKE error.  The macro substitution text <string> overflowed MAKE's
  415.     internal buffer of 512 bytes.
  416.  
  417.  
  418. Maximum number of nested compiler directives exceeded
  419.  
  420.     BDC error.  You can have up to 64 nested levels.
  421.  
  422.  
  423. Misplaced elif statement
  424.  
  425.     MAKE error.  An !elif directive is missing a matching !if directive.
  426.  
  427.  
  428. Misplaced else statement
  429.  
  430.     MAKE error.  MAKE encountered an !else statement without a 
  431.     matching !if statement.  An extra !else statement could cause this
  432.     message, but it could also be caused by missing braces, or a syntax 
  433.     error in a previous !if statement.
  434.  
  435.  
  436. Misplaced endif statement
  437.  
  438.     MAKE error.  An !endif directive is missing a matching !if directive.
  439.  
  440.  
  441. No closing quote
  442.  
  443.     MAKE error.  There is no closing quote for a string expression in a
  444.     !if or !elif expression.
  445.  
  446.  
  447. No filename ending
  448.  
  449.     MAKE error.  The file name in an #include statement is missing the
  450.     correct closing quote or angle bracket.
  451.  
  452.  
  453. No macro before =
  454.  
  455.     MAKE error.  You must give a macro name before you can assign it 
  456.     a value.
  457.  
  458.  
  459. No match found for wildcard <expression>
  460.  
  461.     MAKE error.  There are no files matching the wildcard <expression> 
  462.     for MAKE to expand.  For example, if you write prog.exe: *.obj, 
  463.     MAKE displays this error message if there are no files with the .obj 
  464.     extension in the current directory.
  465.  
  466.  
  467. No matching #endif
  468.  
  469.     BDC error.  Your program contains an #if, #ifdef, or #ifndef 
  470.     directive without a matching #endif directive.
  471.  
  472.  
  473. No matching #if
  474.  
  475.     BDC error.  Your program contains an #endif directive without a
  476.     matching #if directive.
  477.  
  478.  
  479. No terminator specified for in-line file operator
  480.  
  481.     MAKE error.  The makefile contains either the && or << command-line
  482.     operators to start an in-line file, but the file is not terminated.
  483.  
  484.  
  485. No valid dbo file specified!
  486.  
  487.     BDL error.  You have not specified any .DBO files for BDL to link.
  488.  
  489.  
  490. Not enough memory
  491.  
  492.     MAKE error.  Your system doesn't have enough memory to execute MAKE.
  493.  
  494.  
  495. Only <<KEEP or <<NOKEEP
  496.  
  497.     MAKE error.  You have specified something besides KEEP or NOKEEP 
  498.     when closing a temporary inline file.
  499.  
  500.  
  501. Option <option> not valid with <option>
  502.  
  503.     BDC error.  You have specified conflicting options.  For example, 
  504.     you may have used the -c option (compile only) and specified linker 
  505.     options, or the -P option which tells BDC to write preprocessed output, 
  506.     but not to compile.  You may also have used the -L (create standalone
  507.     executable) and the -S (create compact executable) options.
  508.  
  509.  
  510. Premature EOF
  511.  
  512.     BDC error.  BDC expected more lines of code to follow a command line
  513.     that ended with a semicolon (;).  
  514.  
  515.  
  516. Redefinition of target <filename>
  517.  
  518.     MAKE error.  The named file occurs on the left side of more than one 
  519.     explicit rule.
  520.  
  521.  
  522. Rule line too long
  523.  
  524.     MAKE error.  An implicit or explicit rule was longer than 4,096 
  525.     characters.
  526.  
  527.  
  528. Specified split size is invalid!
  529.  
  530.     DSPLIT error.  You must enter an integer value for the -S<segment size>
  531.     option.  The following, for example, are invalid values: x, 1.44, 0.5.
  532.  
  533.  
  534. Specified split size is too large! (max 2GB)
  535.  
  536.     DSPLIT error.  The value you enter for the -S<segment size> option  
  537.     cannot exceed 2GB.
  538.  
  539.  
  540. Specified split size is too small! (min 1KB)
  541.  
  542.     DSPLIT error.  The value you enter for the -S<segment size> option
  543.     must be equal to or greater than 1.
  544.  
  545.  
  546. Split size is larger than <filename> itself!
  547.  
  548.     DSPLIT error.  The value you entered for the -S<segment size> option
  549.     is larger than the file you are trying to split.
  550.  
  551.  
  552. String type not allowed with this operand
  553.  
  554.     MAKE error.  You have tried to use an operand which is invalid 
  555.     for comparing string types.  Valid operands are ==, !=, <, >, <=, 
  556.     and >=.
  557.  
  558.  
  559. Too many <option> options
  560.  
  561.     BDC error.  You have specified more than 256 -D (define) statements 
  562.     in your configuration file.
  563.  
  564.  
  565. Too many files to process
  566.  
  567.     BDC error.  BDC can compile up to 2500 files.
  568.  
  569.  
  570. Too many suffixes in .SUFFIXES list
  571.  
  572.     MAKE error.  You have exceeded the 255 allowable suffixes in the
  573.     suffixes list.
  574.  
  575.  
  576. Unable to execute command: <command>
  577.  
  578.     MAKE error.  A command failed to execute; this may be because the 
  579.     command file could not be found, it was misspelled, there was no disk 
  580.     space left in the specified swap directory, the swap directory does
  581.     not exist, or (less likely) because the command has been corrupted.
  582.  
  583.  
  584. Unable to open file <filename>
  585.  
  586.     MAKE error.  You may have specified a source file that doesn't exist 
  587.     or is in use.
  588.  
  589.  
  590. Unable to open include file <filename>
  591.  
  592.     MAKE error.  The compiler could not find the named file.  This could
  593.     be caused if an !include file included itself, or if you do not have 
  594.     FILES set in CONFIG.SYS on your root directory.  Check if the named 
  595.     file exists.
  596.  
  597.  
  598. Unable to open makefile
  599.  
  600.     MAKE error.  The current directory does not contain a file named
  601.     MAKEFILE, MAKEFILE.MAK, or does not contain the file you specified 
  602.     with -f.
  603.  
  604.  
  605. Unable to redirect input or output
  606.  
  607.     MAKE error.  MAKE was unable to open the temporary files necessary 
  608.     to redirect input or output.  If you are on a network, make sure you 
  609.     have rights to the current directory.
  610.  
  611.  
  612. Unexpected end of file
  613.  
  614.     MAKE error.  The end of the makefile was reached without a temporary
  615.     inline file having been closed.
  616.  
  617.  
  618. Unexpected end of file in conditional started at line <line number>
  619.  
  620.     MAKE error.  The source file ended in the middle of a comment.  
  621.     This is normally caused by a missing close of comment (*/).
  622.  
  623.  
  624. Unknown directive
  625.  
  626.     BDC error.  You have used a directive that the preprocessor doesn't
  627.     recognize.  Check your program file for mistyped directives.
  628.  
  629.  
  630. Unknown option: <option>
  631.  
  632.     BDC error.  You have used a command line option that BDC doesn't 
  633.     recognize.  Make sure you specify the option with the correct upper- 
  634.     or lowercase letter.
  635.  
  636.  
  637. Unknown preprocessor statement
  638.  
  639.     MAKE error.  A ! character was encountered at the beginning of a 
  640.     line, and the statement name following was not error, undef, if, 
  641.     elif, include, else, or endif.
  642.  
  643.  
  644. Unterminated macro call
  645.  
  646.     BDC error.  Your program contains a macro call that is missing 
  647.     the closing parenthesis.  For example:
  648.     
  649.         #define x()  y
  650.         ? x(            
  651.  
  652.  
  653. Unterminated parameter list
  654.  
  655.     BDC error.  A macro call requiring a parameter list is not
  656.     terminated properly; a closing parenthesis may be missing.  
  657.     For example:
  658.   
  659.        #define ABC(x)  DEF(x)
  660.        ?  ABC(2
  661.  
  662.  
  663. Unterminated parameter list in #define
  664.  
  665.     BDC error.  A macro definition with a parameter list is not
  666.     terminated properly; a closing parenthesis may be missing.  
  667.     For example:
  668.     
  669.         #define A(x,   B(x)
  670.  
  671.  
  672. Unterminated string
  673.  
  674.     BDC error.  A preprocessor statement is missing the closing
  675.     quote (").  For example:
  676.     
  677.         #include "filename
  678.  
  679.  
  680. Use of : and :: dependents for target <target>
  681.  
  682.     MAKE error.  You have tried to use the target in both single and
  683.     multiple description blocks (using both the : and :: operators).
  684.     Examples:
  685.     
  686.         filea:  fileb
  687.         filea:: filec
  688.  
  689.  
  690. Write error on file <filename>
  691.  
  692.     MAKE error.  Your hard disk may contain bad sectors.
  693.  
  694.  
  695.  
  696.  
  697.