PRB: Error "OLE Error Code 0x80080005 Server Execution Failed"

Last reviewed: February 28, 1997
Article ID: Q164360
3.00 3.00b 5.00 WINDOWS kbenv kbprb

The information in this article applies to:

  • Microsoft Visual FoxPro for Windows, versions 3.0, 3.0b, 5.0

SYMPTOMS

If the "at" symbol ("@") is in the name of your computer, you may receive the following error message when running a manually written MSGraph program:

   OLE error code 0x80080005 Server execution failed

RESOLUTION

To resolve this problem, the "at" symbol ("@") must be removed from the name of the computer as follows:

  1. Right-click the Network Neighborhood icon and click Properties.

  2. Click the Identification tab.

  3. In the Computer Name box, remove the "at" symbol ("@") from the name of the computer.

  4. Click OK and restart the computer. On non-Windows 95 networks you may have to resolve this new computer name for proper network operation.

  5. Run the Graph1.prg program, located in the MORE INFORMATION section below, from the Command window.

The MSGraph Bar chart appears on the screen.

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

Place the following code into a .prg file and execute it:

   #DEFINE tab chr(09)
   #DEFINE cr_lf chr(13) + chr(10)
   LOCAL FruitData
   Fruit_Data = " "   + tab + "Fruits" + cr_lf + ;
        "Apples"  + tab + "1"      + cr_lf + ;
             "Oranges" + tab + "2"      + cr_lf + ;
             "Pears"   + tab + "3"      + cr_lf
   CREATE TABLE frt_graph (mygraph G)
   APPEND BLANK
   APPEND GENERAL MyGraph CLASS "MSGRAPH" DATA Fruit_Data
   MODIFY GENERAL MyGraph

If you have an "at" symbol ("@") in the computer name you will receive the following error message.

   OLE error code 0x80080005 Server execution failed


KBCategory: kbenv kbprb
KBSubcategory: FxenvOs vfoxwin
Additional reference words: 3.00 3.00b 5.00
Keywords : FxenvOs vfoxwin kbenv kbprb
Version : 3.00 3.00b 5.00
Platform : WINDOWS


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