Canceling AutoOpen Macro Gives Hourglass--Appears HungLast reviewed: July 30, 1997Article ID: Q106470 |
The information in this article applies to:
SUMMARYIf you create a template with an AutoOpen macro and open the template by one of these methods
This problem does NOT occur if you open the file from the File menu.
STATUSMicrosoft has confirmed this to be a problem in Word version 6.0 for Windows. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available. This is not a problem in Word version 6.0 for the Macintosh.
WORKAROUNDTo avoid this problem, design your macro to trap the ESC key, and then use a SendKeys statement to send another ESC key when trapped. The following WordBASIC macro demonstrates this: WARNING: ANY USE BY YOU OF THE CODE PROVIDED IN THIS ARTICLE IS AT YOUR OWN RISK. Microsoft provides this macro code "as is" without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose. SUB Main On Error Goto Trap: msgbox "Press ESC to cancel." Goto ByeTrap: SendKeys "{esc}"Bye:
End SubKbcategory: kbusage kbmacro KBSubcategory: |
Additional query words: 6.0 hang crash winword word6
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |