ERR: Unable to Find Proc./Func. UPDATEGR

Last reviewed: April 30, 1996
Article ID: Q120293
The information in this article applies to:
  • Microsoft FoxPro for Windows, versions 2.5x, 2.6, 2.6a

SYMPTOMS

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

CAUSE

FoxPro is unable to resolve the reference to UPDATEGRPH.

RESOLUTION

There are two ways to resolve this problem:

Method 1

In 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 2

Declare 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
KBCategory: kbprg kberrmsg
KBSubcategory: FxprgMacrosub


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: April 30, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.