MSIR.0807 Can't declare (meth) after (meth) already invoked

From m204wiki
Revision as of 19:26, 23 April 2014 by JAL (talk | contribs)
Jump to navigation Jump to search

A Constructor or Disallow statement in a Public or Private block specified a New or Discard method after such a method had already been explicitly invoked. Since these methods exist for all classes, whether or not they're declared, it is possible to use them before they are declared. However, as this message indicates, such a use is invalid.

Make sure the class's Public or Private block is declared before any code that uses a New or Discard message.

An Auto New setting on a variable declaration is considered an invocation of the New method, so an Auto New object should be declared after the Public and Private blocks for its class.