DOCUMENT:Q189949 07-AUG-1998 [vbwin] TITLE :PRB: Run-Time Error After an ActiveX Server Crashes PRODUCT :Microsoft Visual Basic for Windows PROD/VER:WINDOWS:5.0,6.0 OPER/SYS:WINDOWS KEYWORDS: ====================================================================== --------------------------------------------------------------------- The information in this article applies to: - Microsoft Visual Basic Learning, Professional, and Enterprise Editions for Windows, versions 5.0, 6.0 --------------------------------------------------------------------- SYMPTOMS ======== If an ActiveX Server (EXE) object is instantiated in a Visual Basic client application, and the ActiveX server crashes, Visual Basic 5.0 and Visual Basic 6.0 will return the following error messages, respectively, every time the server object is subsequently referenced: Run-time Error '-2147023174 (800706ba)': Automation Error Run-time Error '462': The remote server machine does not exist or is unavailable This includes attempts to use the keyword New or CreateObject to restart the server. CAUSE ===== After the ActiveX server crashes, Visual Basic attempts to re-establish a connection to the server and the above error is triggered. STATUS ====== This behavior is by design. MORE INFORMATION ================ Steps to Reproduce Behavior --------------------------- Create the Server ----------------- 1. Launch Visual Basic and create a new ActiveX EXE project. Class1 is created by default. 2. Paste the following code into the code window: Option Explicit Public Event SomeEvent() Public Sub Test() MsgBox "Test" RaiseEvent SomeEvent End Sub 3. Select Make Project1.exe from the File menu to compile the ActiveX EXE. Create the Client ----------------- 1. Create a new Standard EXE project. Form1 is created by default. 2. In the Properties window, change the Name Property of the project to "Client." 3. Select References from the Project menu, and check Project1. 4. In Client, add a CommandButton (Command1) to Form1 and paste the following code into the code module for Form1: Option Explicit Dim WithEvents clsTest As Class1 Private Sub Command1_Click() Set clsTest = New Class1 clsTest.Test End Sub Private Sub clsTest_SomeEvent() MsgBox "SomeEvent" End Sub 5. Press the F5 key to run the project and click on Command1. 6. Message boxes "Test" and "SomeEvent" pop up subsequently. Click OK on both MessageBoxes to close them. 7. Press the CTRL+ALT+DEL key combination to bring up the Task Manager. 8. Under Windows NT4, Select the Processes tab, scroll down the list, and browse for the name of the ActiveX EXE server, Project1. Select it and click the End Process button. Under Windows 95 or Windows 98, select Project1 from the program list and click the End Task button. 9. Go back to the running Visual Basic client and click on Command1. Either of the two error messages (depending on the version of Visual Basic used) mentioned in the Symptoms section above occurs. Additional query words: kbDSupport kbActiveX KBDSE kbDSupport kbVBp500 kbVBp600 kbNoKeyWord kbVBp ====================================================================== Version : WINDOWS:5.0,6.0 Platform : WINDOWS Issue type : kbprb ============================================================================= 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. Copyright Microsoft Corporation 1998.