PRB: Calling dBASE UDF: "File '<UDF_name>.PRG' Does Not Exist"

ID: Q114658

The information in this article applies to:

SYMPTOMS

A 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.

CAUSE

dBASE recognizes only the first nine characters of a UDF name. FoxPro recognizes the first ten characters.

WORKAROUND

Modify your program so that all calls to UDFs use at least the first ten characters of the UDF name.

STATUS

This behavior is by design.

MORE INFORMATION

Steps to Reproduce Problem

Run 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 x

Once 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 msg KBCategory: kb3rdparty kberrmsg kbprb KBSubcategory: FxinteropGeneral

Last Reviewed: June 26, 1995