FIX: Visual FoxPro Quits If You Click Ignore or Suspend/Resume

Last reviewed: February 20, 1997
Article ID: Q141479
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, versions 3.0 and 3.0b

SYMPTOMS

A Program Error occurs while executing code when the Valid event of a Get object refers to a procedure that does not exist. If the user clicks either Ignore or Suspend followed by Resume, Visual FoxPro guits.

WORKAROUND

Either implement an error handling routine to trap for this error or click Cancel during the Program Error of Visual FoxPro's default error handling routine.

STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. This problem has been fixed in Visual FoxPro 5.0 for Windows.

MORE INFORMATION

Steps to Reproduce Problem

  1. Create a program containing the following code:

    DEFINE POPUP test_pop DEFINE BAR 1 OF test_pop PROMPT "Bar 1" DEFINE BAR 2 OF test_pop PROMPT "Bar 2"

    @ 2.000,1.333 GET test_pos ;

          PICTURE "@&N" ;
          POPUP test_pop;
          SIZE 5,15 ;
          DEFAULT 1 ;
          VALID pop_test()
    

    READ CYCLE RELEASE BAR ALL OF test_pop

  2. Save and close the program. Then use the DO command to run the program.

  3. Press the ENTER key. At this point, the following Program Error occurs:

    File 'pop_test.prg' does not exist.

  4. Click Ignore. This results in an Illegal Operation error or general protection (GP) fault depending on the version of Windows installed on the computer.


KBCategory: kbprg kbbuglist kbfixlist
KBSubcategory: FxprgGeneral VFoxWin buglist3.00 buglist3.00b fixlist5.00
Additional reference words: 3.00 3.00b crash


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: February 20, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.