PRB: Calling dBASE UDF: "File '<UDF_name>.PRG' Does Not Exist"Last reviewed: June 26, 1995Article ID: Q114658 |
The information in this article applies to:
SYMPTOMSA program created in dBASE that calls a user-defined function (UDF) causes the following error message when run in FoxPro:
File '<UDF_name>.PRG' does not exist. CAUSEdBASE recognizes only the first nine characters of a UDF name. FoxPro recognizes the first ten characters.
WORKAROUNDModify your program so that all calls to UDFs use at least the first ten characters of the UDF name.
STATUSThis behavior is by design.
MORE INFORMATION
Steps to Reproduce ProblemRun the following program:
WAIT 'Main' DO P234567890 && displays 'In Procedure' DO P23456789 && error in FoxPro, but valid in dBASE a=F234567890('') && displays 'In Function' b=F23456789('') && error in FoxPro, but valid in dBASE PROCEDURE P23456789012345 WAIT 'In Procedure' RETURN FUNCTION F23456789012345 PARAMETERS x WAIT 'In Function' RETURN xOnce the "File '<UDF_name>' does not exist" error message is displayed, choose Ignore when prompted and continue running the program. dBASE is manufactured by a vendor independent of Microsoft; we make no warranty, implied or otherwise, regarding this product's performance or reliability.
|
Additional reference words: FoxDos FoxWin 2.50 2.50a 2.50b 2.60 errmsg err
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |