WD: "WordBasic Err=100. Syntax Error" When Using Custom DialogLast reviewed: February 2, 1998Article ID: Q109291 |
The information in this article applies to:
SYMPTOMSYou may receive the following error message when you are working with a custom dialog box:
Word Basic Err=100. Syntax Error CAUSEIn the versions of Word listed in the beginning of this article, a custom dialog defined with
RESOLUTIONMicrosoft 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 engineers 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/supportnet/refguide/To eliminate the syntax error, add a text string for the title of the dialog box. The following macro is correct and does not produce an error message.
Sub Main Begin Dialog UserDialog 208, 107, 363, 160, "Title" OKButton 39, 33, 88, 21 End Dialog Dim dlg As UserDialog Dialog dlg End Sub REFERENCES"Microsoft Word Developer's Kit," version 6.0, pages 110; 270-271
|
Additional query words: hung err
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |