Canceling AutoOpen Macro Gives Hourglass--Appears Hung |
Q106470
If you create a template with an AutoOpen macro and open the template by one of these methods
Microsoft 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.
To 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 Bye
Trap:
SendKeys "{esc}"
Bye:
End Sub
Additional query words: 6.0 hang crash winword word6
Keywords : kbofficeprog
Issue type :
Technology :
|
Last Reviewed: March 28, 2000 © 2001 Microsoft Corporation. All rights reserved. Terms of Use. |