ERR: Unable to Find Proc./Func. UPDATEGRLast reviewed: April 30, 1996Article ID: Q120293 |
The information in this article applies to:
SYMPTOMSWhen you are building an application from a project in FoxPro for Windows, you may receive the error message "Unable to find Proc./Func. UPDATEGR" if a program in the project references the UPDATEGRPH procedure in GENGRAPH.APP.
CAUSEFoxPro is unable to resolve the reference to UPDATEGRPH.
RESOLUTIONThere are two ways to resolve this problem:
Method 1In the program that references UPDATEGRPH, define a variable and substitute a name expression with this variable for "UPDATEGRPH":
z = "UPDATEGRPH"
DO (z) IN gengraph.app WITH <expC1>, <expN>[, <expN2> ;
[, <expC2>[, <array>, <expC3>]]]
Method 2Declare a dummy procedure for UPDATEGRPH in the program that references UPDATEGRPH:
DO updategrph IN gengraph.app WITH <expC1>, <expN>[, <expN2> ;
[, expC2>[, <array>, <expC3>]]]
PROCEDURE updategrph
RETURN
For a description of the parameters in UPDATEGRPH, please see the following
article in the Microsoft Knowledge Base:
ARTICLE-ID: Q101597 TITLE : Using UPDATEGRPH in GENGRAPH.APP |
Additional reference words: FoxWin 2.50 2.50a 2.50b 2.60 2.60a errmsg
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |