DOCERR: Excel Code in Chapter 16 of Online Docs Incorrect

Last reviewed: January 10, 1997
Article ID: Q156453
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, version 5.0

SUMMARY

An Excel code example under the section titled "Controlling Visual FoxPro from Other Applications" in Chapter 16 of the Visual FoxPro 5.0 Online Documentation needs modification to work.

MORE INFORMATION

The following incorrect code from the Online Documentation demonstrates how Excel might use Visual FoxPro as a server:

   Sub FoxTest()
      Dim oFox as Object
      Set oFox = CreateObject("VisualFoxPro.Application")

      oFox.DoCmd "USE customer"
      oFox.DoCmd "SELECT contact, phone FROM customer
        WHERE country = " + Chr$(39) + USA+ Chr$(39) + " INTO CURSOR cust"
      oFox.DataToClip "cust",,3
      Range("A1:B1").Select
      ActiveSheet.Paste
   End Sub

Make the following changes to the Online Documentation example:

  1. Add the following line before 'oFox.DoCmd "USE customer"':

          oFox.DoCmd "SET DEFAULT TO HOME()+ '\samples\data'"
    

  2. The WHERE clause has to be on the same line with the SELECT. Make sure the Excel editor does not place any extra characters in this line.

  3. Add the following line before 'Range("A1:B1").Select' :

          ActiveWorkbook.Sheets(2).Activate
    


KBCategory: kbinterop kbdocerr
KBSubcategory: FxinteropExcel
Additional reference words: 5.00 kbdsd ole 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.