DOCERR: Help Topic "Switching Views" Is Incorrect in VFP 3.0

Last reviewed: January 10, 1997
Article ID: Q156171
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, versions 3.0, 3.0b

SUMMARY

The example in the Visual FoxPro Help under "Switching Between Local and Remote Data at Run Time" has an error. Step 7 states the following incorrectly:

   In the Init event code for the data environment, call the data
   environment's OpenTables method:

      THIS.OpenTables

MORE INFORMATION

For the example to work correctly, step 7 should be changed to the following:

   In the Load event code for the form, call the data environment's
   OpenTables method:

      THISFORM.Dataenvironment.OpenTables

You must also change step 8, which states the following incorrectly:

   In the Init event code for the cursor, set the CursorSource property to
   the appropriate view, based on the setting of the user-defined form
   property.

   For example, the following code checks the form property and accordingly
   sets the CursorSource to a remote or local view:

      IF THISFORM.UseRemote = .T.
         THIS.CursorSource = RemoteView
      ELSE
         THIS.CursorSource = LocalView
      ENDIF

Change step 8 to the following:

   In the OpenTables method code for the data environment, set the
   CursorSource property of the cursor to the appropriate view, based on
   the setting of the user-defined form property.

   For example, the following code checks the form property and accordingly
   sets the CursorSource to a remote or local view:

      IF THISFORM.UseRemote = .T.
         THIS.Cursor1.CursorSource = RemoteView
      ELSE
         THIS.Cursor1.CursorSource = LocalView
      ENDIF

NOTE: The topic "Switching Between Local and Remote Data at Run Time" does not appear in the Visual FoxPro 5.0 Help.


KBCategory: kbprg kbdocerr
KBSubcategory: FxtoolFormdes
Additional reference words: 3.00 3.00b kbdsd VFoxWin



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