OFF97: Error Using Help Method with Microsoft Word 97Last reviewed: June 4, 1997Article ID: Q161805 |
97
WINDOWS
kbinterop kbusage kbprg kbcode kberrmsg
The information in this article applies to:
SYMPTOMSWhen you run a Visual Basic for Applications macro in any of the programs listed at the beginning of this article, you may receive the following error message:
This program has performed an illegal operation and will be shut down. If the problem persists, contact the program vendor.If you click Details, you receive the following error message:
WINWORD caused an invalid page fault in module MSO97.DLL at 0137:307be411. CAUSEThis problem will occur if the following conditions are true:
WORKAROUNDTo prevent this problem from occurring, use the Assistant object and the Help method together rather than the Help method by itself to display help in Microsoft Word 97. For example:
Do Use Don't Use ---------------------- ----------------------------- WordApp.Assistant.Help WordApp.Help helptype:=wdHelp 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 INFORMATIONIn Visual Basic for Applications macros, you can use the CreateObject and GetObject methods of OLE Automation to communicate with and control other programs. For example, a macro in Microsoft Excel 97 can start and control an instance of Microsoft Word 97. If you use OLE Automation to control an instance of Microsoft Word 97, you may receive an error if you use the Help method to display Help in Microsoft Word 97 and then quit the instance of Microsoft Word 97 without first closing the Help window. Microsoft provides examples of Visual Basic for Applications procedures 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. The Visual Basic procedures in this article are provided 'as is' and Microsoft does not guarantee that they can be used in all situations. While Microsoft support engineers can help explain the functionality of a particular macro, they will not modify these examples to provide added functionality, nor will they help you construct macros to meet your specific needs. If you have limited programming experience, you may want to consult one of the Microsoft Solution Providers. Solution Providers offer a wide range of fee-based services, including creating custom macros. For more information about Microsoft Solution Providers, call Microsoft Customer Information Service at (800) 426-9400. The following sample macro illustrates the steps necessary for the problem to occur:
Sub Test() Dim WordApp As Object 'Begin using OLE Automation to communicate with Microsoft Word 97. Set WordApp = CreateObject("Word.Application") WordApp.Visible = True AppActivate WordApp.Name 'Display Help in Microsoft Word 97. Using this line of code will 'ultimately cause the problem to occur. WordApp.Help helptype:=wdHelp 'Quit Microsoft Word 97. The crash actually occurs here. WordApp.Quit Set WordApp = Nothing End SubIf you replace the line:
WordApp.Help helptype:=wdHelpwith the line:
WordApp.Assistant.Helpthe error does not occur.
|
KBCategory: kbinterop kbusage kbprg kbcode kberrmsg
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |