WD2000: Run-Time Error Using True Parameter on NewTemplate Method (212691)



The information in this article applies to:

  • Microsoft Word 2000

This article was previously published under Q212691

SYMPTOMS

When you run a macro that passes True as a parameter to the NewTemplate method of the Dialogs property, the following error message appears:

Run-time error '9118': Parameter value was out of acceptable range.

CAUSE

The NewTemplate method only takes 0 or 1 as a valid parameter. Your macro may be using True for the parameter, and the value for "True" is -1.

The following Microsoft Visual Basic for Applications code block demonstrates this problem:

   Set dlgDialog = Dialogs(wdDialogFileNew)
   dlgDialog.NewTemplate = True ' <- Attempts to set a value of -1.
   dlgDialog.Show
				

RESOLUTION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to 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 requirements. To resolve this problem, use 1 as the parameter for the NewTemplate method instead of True or -1. For example:

dlgDialog.NewTemplate = 1
				

MORE INFORMATION

For more information about how to use the sample code in this article, click the article number below to view the article in the Microsoft Knowledge Base:

212536 OFF2000: How to Run Sample Code from Knowledge Base Articles


Modification Type:MajorLast Reviewed:6/17/2005
Keywords:kbbug kbdtacode kberrmsg kbpending KB212691