User contributions for 198.242.244.47
Jump to navigation
Jump to search
9 November 2010
- 15:0115:01, 9 November 2010 diff hist +418 N MSIR.0814 (What) expected Created page with "The default value following a <tt>Default</tt> keyword in a method declaration had incorrect format. The <tt>Default</tt> keyword is expected to be followed by a string or numeri..."
- 15:0115:01, 9 November 2010 diff hist +354 N MSIR.0813 Maximum number of parameters, (num), exceeded Created page with "A method declaration exceeded the limit on the number of parameters. Since this limit is quite high (at least 64), it is suggestive of an error in the method declaration. If that..."
- 15:0115:01, 9 November 2010 diff hist +344 N MSIR.0812 Class requires (cltype) not (ocltype) Created page with "An object declaration or other reference was made for a class that used the wrong class category. For example, an enumeration class object was declared as <tt>Object</tt>, or a p..."
- 15:0115:01, 9 November 2010 diff hist +42 N MSIR.0811 Created page with "Unused. Category:Sirius Mods Messages"
- 15:0115:01, 9 November 2010 diff hist +509 N MSIR.0810 (qualifier) required for class (class) Created page with "An object declaration or other reference was made for a class that requires further qualification, but the class name was not further qualified. For example, a file object was de..."
- 15:0115:01, 9 November 2010 diff hist +435 N MSIR.0809 Disallow only valid in Public block Created page with "A <tt>Disallow</tt> declaration appeared in a Private block. <tt>Disallow</tt> is only intended to restrict use of <tt>New</tt> or <tt>Discard</tt> outside the class so such a de..."
- 15:0115:01, 9 November 2010 diff hist +635 N MSIR.0808 New must be disallowed in Public block to be a Private constructor Created page with "A <tt>New</tt> constructor was declared in a <tt>Private</tt> block but <tt>New</tt> had not been disallowed in the <tt>Public</tt> block. If the intent is to really have a priva..."
- 15:0115:01, 9 November 2010 diff hist +797 N MSIR.0807 Can't declare (meth) after (meth) already invoked Created page with "A <tt>Constructor</tt> or <tt>Disallow</tt> statement in a <tt>Public</tt> or <tt>Private</tt> block specified a <tt>New</tt> or <tt>Discard</tt> method, after such a method had ..."
- 15:0115:01, 9 November 2010 diff hist +364 N MSIR.0806 Arrays not allowed in Public/Private block -- use Collections Created page with "An <tt>Array</tt> was declared inside a class's Public or Private block. As this message indicates, this is not allowed, and as the message further indicates, a collection class ..."
- 15:0115:01, 9 November 2010 diff hist +412 N MSIR.0805 Statement label multiply defined Created page with "The same label appeared multiple times within a method. This message is identical to M204.0223 with the exception that MSIR.0805 is an error rather than a warning, causing the co..."
- 15:0115:01, 9 November 2010 diff hist +239 N MSIR.0804 Class too big Created page with "A class's public and private (but not shared) variables, exceeded the internal class size limit. Break the class up into multiple objects; perhaps collections if some of the clas..."
- 15:0115:01, 9 November 2010 diff hist +408 N MSIR.0803 Optional or default parameter required for presence test Created page with "An <tt>Is Present</tt> or <tt>Is Not Present</tt> test was specified for something other than an Optional or Default method parameter. If the operand of the test is not a method ..."
- 15:0115:01, 9 November 2010 diff hist +310 N MSIR.0802 (entity) may not be nested Created page with "This is a compilation error for a class or structure definition. In a class definition, some entities (for example, the class itself) may not be nested. A single class definition..."
- 15:0115:01, 9 November 2010 diff hist +819 N MSIR.0801 READ SCREEN encountered in NOSCREEN mode Created page with "A ''Janus Web Server'' port was defined with the <tt>NOSCREEN</tt> parameter, presumably to prevent accidental entry to Janus Web Legacy mode, but the application running on ..."
- 15:0115:01, 9 November 2010 diff hist +209 N MSIR.0800 (name) must be (methtype) Created page with "Certain class members or member names have certain restrictions. For example, the name New may only be used for a Constructor method, and constructors must be shared methods. [[..."
- 15:0115:01, 9 November 2010 diff hist +667 N MSIR.0799 Null object passed as non-allowNull parameter Created page with "A <tt>Null</tt> was specified as an argument in a method invocation but the method declaration did not specify <tt>AllowNull</tt> for the corresponding parameter. If there are go..."
- 15:0115:01, 9 November 2010 diff hist +508 N MSIR.0798 Explicit (globses) name required for shared variables Created page with "A shared class variable was declared as Global or Session but no global or session name was specified. While non-class global or session variables use the variable name (without ..."
- 15:0115:01, 9 November 2010 diff hist +1,208 N MSIR.0797 No method linking for implied object Created page with "A method with an implied object or class was specified, and was followed by another method. This is not allowed.<pre> For example, in the following:<pre> %list is object stringLi..."
- 15:0115:01, 9 November 2010 diff hist +213 N MSIR.0796 (name) is not allowed as a member name Created page with "This is a compilation error for a class or structure definition. Certain names are reserved and may not be used for user class members. These include the names Discard and Super...."
- 15:0115:01, 9 November 2010 diff hist +401 N MSIR.0795 Unsupported method Created page with "An attempt was made to use a deprecated method at a site that isn't authorized for the deprecated method. Only sites that were likely to use such a method in the past would be au..."
- 15:0115:01, 9 November 2010 diff hist +166 N MSIR.0794 Invalid (clstr) name Created page with "An invalid name was specified on a <tt>Class</tt> or <tt>Structure</tt> statement. Class and structure names cannot contain colons. Category:Sirius Mods Messages"
- 15:0115:01, 9 November 2010 diff hist +641 N MSIR.0793 Inconsistent (what) in class header Created page with "A <tt>Class</tt> statement for a previously declared class had an attribute inconsistent with a previous declaration. Currently, this message is only used for the <tt>RequiredSuf..."
- 15:0115:01, 9 November 2010 diff hist +463 N MSIR.0792 (methname) in class (class) never defined Created page with "The indicated method was declared in a <tt>Public</tt>, <tt>Private</tt>, <tt>Public Shared</tt>, or <tt>Private Shared</tt>, block, and the method was actually invoked but the m..."
- 15:0115:01, 9 November 2010 diff hist +304 N MSIR.0791 (methodtype) not valid for (propertytype) property Created page with "A Set method was specified for a readOnly property, or a Get method was specified for a writeOnly property. These combinations of method and property types make no sense so are n..."
- 15:0115:01, 9 November 2010 diff hist +562 N MSIR.0790 Non-readOnly property cannot be called THIS Created page with "A non-readOnly property has a Set method. In the Set method, the name of the input value is the same as the name of the property. If a non-readOnly property is called this, it me..."
- 15:0115:01, 9 November 2010 diff hist +1,618 N MSIR.0789 Implied return not valid for methods that return a value Created page with "A code path analysis of a <tt>Function</tt> or property <tt>Get</tt> method has determined that it is possible to get to the end of the method without executing a <tt>return</tt>..."
- 15:0115:01, 9 November 2010 diff hist +264 N MSIR.0788 Subroutines cannot have a datatype Created page with "This is a compilation error for a class or structure definition. Class functions and properties require a datatype, that is, an Is clause (although the keyword <tt>Is</tt> is opt..."
- 15:0115:01, 9 November 2010 diff hist +723 N MSIR.0787 Result has incorrect type Created page with "A <tt>return</tt> statement was coded in a <tt>Function</tt> or the <tt>Get</tt> method of a <tt>property</tt>, but the datatype of the expression that follows the <tt>return</tt..."
- 15:0115:01, 9 November 2010 diff hist +331 N MSIR.0786 Result required for method/property Created page with "A <tt>return</tt> statement was coded in a <tt>Function</tt> or the <tt>Get</tt> method of a <tt>property</tt>. Since both these methods return a value, a <tt>return</tt> stateme..."
- 15:0115:01, 9 November 2010 diff hist +434 N MSIR.0785 (methodtype) (name) already defined Created page with "The method indicated in this message had already been defined previously when another definition was encountered. Most likely, this is caused by the procedure that contains the m..."
- 15:0115:01, 9 November 2010 diff hist +442 N MSIR.0784 (setorget) method missing for property Created page with "This is a compilation error for a class or structure definition. Property definitions require a single <tt>Get</tt> method, a single <tt>Set</tt> method, or one of each of these ..."
- 15:0115:01, 9 November 2010 diff hist +392 N MSIR.0783 Already have (setorget) method for property Created page with "This is a compilation error for a class or structure definition. Property definitions require a single Get method, a single Set method, or one of each of these types depending on..."
- 15:0115:01, 9 November 2010 diff hist +753 N MSIR.0782 Block not associated with name (name) Created page with "An <tt>End</tt> statement was followed by the correct qualifier, but the qualifier was followed by an incorrect name. The name much mas the name of the entity with which the bloc..."
- 15:0115:01, 9 November 2010 diff hist +539 N MSIR.0781 END (block) expected, not END (block) Created page with "An <tt>End</tt> statement was followed by the incorrect qualifier. The qualifier on the <tt>End</tt> statement must match the statement that starts the block, for example <tt>Pub..."
- 15:0115:01, 9 November 2010 diff hist +565 N MSIR.0780 END (what) expected Created page with "An <tt>End</tt> statement had no qualifier on it when a qualifier that matched the current block start was expected. While many User Language block structures are automatically t..."
- 15:0115:01, 9 November 2010 diff hist +42 N MSIR.0779 Created page with "Unused. Category:Sirius Mods Messages"
- 15:0115:01, 9 November 2010 diff hist +497 N MSIR.0778 (methtype) (methname) not declared Created page with "A method definition appeared for a method that had not been declared in a <tt>Public</tt>, <tt>Private</tt>, <tt>Public Shared</tt>, or <tt>Private Shared</tt> block. All methods..."
- 15:0115:01, 9 November 2010 diff hist +406 N MSIR.0777 $LIST (errtype) error in compiler, compilation aborted Created page with "A severe error occurred while compiling a request. The two possible errors are "$list full" or "CCATEMP full". An "$list full" is exceedingly unlikely during compilation so, s..."
- 15:0115:01, 9 November 2010 diff hist +565 N MSIR.0776 Mismatch between (methtype) declaration and definition Created page with "The declaration (the part in the <tt>Public</tt>, <tt>Private</tt>, <tt>Public Shared</tt>, or <tt>Private Shared</tt> block) of a method was not consistent with its definition h..."
- 15:0115:01, 9 November 2010 diff hist +663 N MSIR.0775 (what) required for (methtype) Created page with "A function or property method declaration in a class was not followed by a datatype. Since a function returns something of a specific datatype, and a property can be set to or re..."
- 15:0115:01, 9 November 2010 diff hist +259 N MSIR.0774 (attribute) not valid for (type) Created page with "This is a very generic message and indicates any one of dozens of errors on a variable declaration. For more information about the kinds of variables to which this message will a..."
- 15:0115:01, 9 November 2010 diff hist +371 N MSIR.0773 (blocktype) qualifier in (blocktype) section Created page with "A class variable was explicitly specified as <tt>Public</tt>, <tt>Private</tt>, <tt>Public Shared</tt>, or <tt>Private Shared</tt>, but that declaration did not match the block i..."
- 15:0115:01, 9 November 2010 diff hist +336 N MSIR.0772 Member (name) already defined Created page with "This is a compilation error for a class or structure definition. The name for Functions, Subroutines, Properties, and Constructors must follow the same rules as variable names an..."
- 15:0115:01, 9 November 2010 diff hist +231 N MSIR.0771 (blocktype) invalid after methods/properties Created page with "This is a compilation error for a class or structure definition. Declaration blocks, which contain declarations for all variables and methods in a class, must appear before any m..."
- 15:0115:01, 9 November 2010 diff hist +409 N MSIR.0770 (blocktype) already defined Created page with "An attempt was made to define a <tt>Public</tt>, <tt>Private</tt>, <tt>Public Shared</tt>, or <tt>Private Shared</tt> block after the block type had already been defined once. Al..."
- 15:0115:01, 9 November 2010 diff hist +332 N MSIR.0769 Local classes not supported Created page with "A <tt>Class</tt> statement appeared inside a complex subroutine or method declaration. Such a class definition would be restricted to the scope of the method or subroutine in whi..."
- 15:0115:01, 9 November 2010 diff hist +261 N MSIR.0768 (glses) name (name) already bound to other variable Created page with "A variable was declared as <tt>Global</tt> or <tt>Session</tt> but the explicit or implicit global/session name was already in use for a different variable. Change one of the glo..."
- 15:0115:01, 9 November 2010 diff hist +42 N MSIR.0767 Created page with "Unused. Category:Sirius Mods Messages"
- 15:0115:01, 9 November 2010 diff hist +541 N MSIR.0766 (Vartype) can't be Global or Session Created page with "An attempt was made to declare a variable as Global or Session but that variable was not an object. If the variable is a simple datatype or a structure, that datatype or structur..."
- 15:0115:01, 9 November 2010 diff hist +800 N MSIR.0765 (method) not (what) in class (class) Created page with "A non-shared class member was accessed via shared member syntax or a non-constructor class member was access without a variable or class name. In the former case, <tt>%(classname..."