ID: Q169176
The information in this article applies to:
When 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:
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.
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.
This problem occurs when you do the following:
-and-
- You quit Microsoft Windows.
-or-
- You run the same procedure or another procedure that creates a DDE
channel to the same program.
If 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.
Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article.
Microsoft 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 professionals 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/
The 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:
1. Start Microsoft Excel 97. In a new workbook, press Alt+F11 to
start the Visual Basic Editor.
2. On the Insert menu, click Module and type the following macro in
the module sheet:
Sub DDESessions()
Dim LobjExcelApp as Object
Dim LwbNewWB as Object
' Perform commands within loop two times.
For i = 1 to 2
' Create an object to Microsoft Excel.
Set LobjExcelApp = CreateObject("Excel.application")
' Create workbook object.
Set LwbNewWB = LobjExcelApp.Workbooks.Add
' Get DDE channel to Microsoft Excel.
LwChanNum1 = Application.DDEInitiate("Excel", "System")
' Insert new workbook.
Application.DDEExecute LwChanNum1, "[New]"
' Quit workbook.
Application.DDEExecute LwChanNum1, "[Quit()]"
' Terminate this DDE channel.
Application.DDETerminate LwChanNum1
Next i
MsgBox "DDESessions is complete"
End Sub
3. On the File menu, click "Close and Return to Microsoft Excel."
4. In the workbook, click Macro on the Tools menu, and then click Macros.
Click DDESessions, and then click Run. When the message box that
indicates the macro is completed appears, click OK.
For more information about creating DDE channels, click the Index tab in Visual Basic Help, type the following text
DDEInitiate method
and then double-click the selected text to go to the "DDEInitiate Method"
topic.
Additional query words: XL97
Keywords : kberrmsg kbdta kbdtacode xlgpf KbVBA
Version : WINDOWS:97
Platform : WINDOWS
Issue type : kbprb
Last Reviewed: May 18, 1999