PRB: AutoOpenTables/AutoCloseTables Ignored in Program

Last reviewed: January 8, 1996
Article ID: Q141912
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, versions 3.0 and 3.0b

SYMPTOMS

When creating a form visually, you discover that the data environment's AutoOpenTables property is set to True (.T.) by default and the tables and views will automatically be opened when the form is run. If the data environment is instantiated from within a program, the value of AutoOpenTables and AutoCloseTables is ignored.

WORKAROUND

Call the OPENTABLES or CLOSETABLES methods directly.

STATUS

Microsoft is researching this behavior and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

Steps to Reproduce Behavior

  1. Create a new program file, and type the following code:

    ******* Begin Program **********

    public oData1 oData1=CREATEOBJECT("MyData") && Instaniate the Data Environment

       DEFINE CLASS MyData AS dataenvironment   && DataEnvironment Class
       Name = "Dataenvironment"
       AutoOpenTables=.T.
       AutoCloseTables=.T.
       ADD OBJECT "Cursor1" AS MyCursor     && ADD OBJECT for each
       ENDDEFINE                            && cursor in Dataenvironment
    
       DEFINE CLASS MyCursor AS cursor      && Cursor Class
       Alias = "author"
       Database = "C:\vfp\samples\data\testdata.dbc"
       CursorSource = "customer"
       Name = "Cursor1"
       ENDDEFINE
    
       ******* End Program *******
    
    

  2. Run the program.

  3. Check the View window. You will see that no tables are opened. The Data Environment's AutoOpenTables is ignored.

  4. In the Command window type:

    oData1.OpenTables

    NOTE: If the Testdata.dbc is not in your Path, you need to locate it.

  5. Note that the table is opened.

  6. Inside the Command window, type:

    oData1.CloseTables

  7. The OpenTables/CloseTables must be called directly because AutoOpenTables and AutoCloseTables are ignored.


Additional reference words: 3.00 3.00b VFoxWin
KBCategory: kbprg kbprb
KBSubcategory: FxprgBrowse


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: January 8, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.