FIX: Error "OLE Error Code 0x80080005 Server Execution Failed" (164360)



The information in this article applies to:

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

This article was previously published under Q164360

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 has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This has been corrected in Visual FoxPro 6.0.

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

Modification Type:MajorLast Reviewed:10/15/2003
Keywords:kbbug kbenv kbfix kbvfp600fix KB164360