XL97: Page Fault When Running DDE Macro or Closing WindowsLast reviewed: February 27, 1998Article ID: Q169176 |
The information in this article applies to:
SYMPTOMSWhen you run a Microsoft Visual Basic for Applications macro or procedure that uses dynamic data exchange (DDE) commands or you try to restart or shut down Microsoft Windows, one of the following error messages appears:
Microsoft Windows 95 -------------------- This program has performed an illegal operation and will be shut down. If the problem persists, contact the program vendor. When you click Details, an error message similar to one of the following appears: EXCEL caused an invalid page fault in module OLEAUT32.DLL at 0137:65349854. EXCEL caused an invalid page fault in module EXCEL.EXE at 0137:302036d4. Microsoft Windows NT -------------------- This Windows application cannot respond to the End Task request. It may be busy, waiting for a response from you, or it may have stopped executing. -or- An application error has occurred and an application error log is being generated. EXCEL.exe Exception access violation (0xc0000005),Address 0x30276e52. CAUSEThis problem occurs when you do the following:
RESOLUTIONIf you open a DDE channel, you must terminate the channel before you quit Microsoft Excel. To terminate a DDE channel, use the DDETerminate method, as in the following example:
Application.DDETerminate <ChanNum>where <ChanNum> is the channel number returned by the DDEInitiate method. If you encounter this problem, restart Microsoft Windows, and then edit the macro or procedure in Microsoft Excel. Insert the DDETerminate statement into the appropriate location in the code. For more information, see the sample macro in the "More Information" section of this article.
STATUSMicrosoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATIONMicrosoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/refguide/default.aspThe following macro creates two DDE sessions to Microsoft Excel, inserts a new workbook, and then terminates the DDE channels that it created. To run this macro, follow these steps:
REFERENCESFor more information about creating DDE channels, click the Index tab in Visual Basic Help, type the following text
DDEInitiate methodand then double-click the selected text to go to the "DDEInitiate Method" topic.
|
Additional query words: XL97
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |