WD: Macro Halts When You Press ESC Key in Dynamic Dialog Box |
Q109274
If you press ESC during a user (or dynamic) dialog box definition in a WordBasic macro, Word halts the macro and the following error message occurs:
WordBASIC: The macro was interrupted.
To prevent a macro from halting when you press ESC in a user dialog box,
you must trap the ESC key using the DisableInput statement.
The following sample macro demonstrates the correct use of the DisableInput
statement.
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 a Microsoft Certified Partner or the Microsoft fee-based
consulting line at (800) 936-5200. For more information about Microsoft Certified
Partners, please see the following page on the World Wide Web:
http://www.microsoft.com/partner/referral/For more information about the support options available from Microsoft, please see the following page on the World Wide Web:
http://support.microsoft.com/directory/overview.asp
Sub MAIN
Begin Dialog UserDialog 109, 81, "Test", .DialogFunction
OKButton 10, 6, 88, 21
CancelButton 10, 30, 88, 21
PushButton 10, 54, 88, 21, "Text"
End Dialog
Dim dlg As UserDialog
x = Dialog(dlg)
End Sub
Function DialogFunction(identifier$, action, wvalue)
DisableInput 1
Select Case action
Case 1
Case 2
If identifier$ = "Cancel" Then
DialogFunction = 0
For xyz = 1 To 50
Print "Cancel pressed"
Next xyz
Else
DialogFunction = 1
End If
Case Else
End Select
End Function
This functionality is by design of Microsoft Word.
This use of the DisableInput statement conflicts with the information in online Help for the DisableInput command and on page 340 of the "Microsoft Word Developer's Kit." Both resources state that "DisableInput does not affect the use of ESC for canceling a dialog box." This statement is not true for dynamic (user) dialog boxes, for which DisableInput does prevent the ESC key from interrupting the macro.
"Microsoft Word Developer's Kit," version 6.0, page 340
Additional query words: docerr trapping
Keywords : kbmacro wordnt kbmacroexample winword ntword macword word6 word7 word95
Issue type : kbprb
Technology : kbWordSearch kbWordWSearch kbWordMSearch
|
Last Reviewed: December 29, 2000 © 2001 Microsoft Corporation. All rights reserved. Terms of Use. |