MSIR.0781 END (block) expected, not END (block): Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
(Automatically generated page update)
Line 1: Line 1:
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>Public</tt>, or <tt>Class</tt>, or <tt>Subroutine</tt>. One common mistake is to end a <tt>Public Shared</tt> or <tt>Private Shared</tt> block with just an<tt>End Public</tt> or <tt>End Private</tt>. For these blocks, the <tt>End</tt> statement must be <tt>End Public Shared</tt> and or <tt>End Private Shared</tt>, respectively.
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 <var>Public</var>, or <tt>Class</tt>, or <tt>Subroutine</tt>. One common mistake is to end a <tt>Public Shared</tt> or <tt>Private Shared</tt> block with just an<tt>End Public</tt> or <tt>End Private</tt>. For these blocks, the <tt>End</tt> statement must be <tt>End Public Shared</tt> and or <tt>End Private Shared</tt>, respectively.


[[Category:Sirius Mods messages]]
[[Category:Sirius Mods messages]]

Revision as of 19:11, 23 April 2014

An End statement was followed by the incorrect qualifier. The qualifier on the End statement must match the statement that starts the block, for example Public, or Class, or Subroutine. One common mistake is to end a Public Shared or Private Shared block with just anEnd Public or End Private. For these blocks, the End statement must be End Public Shared and or End Private Shared, respectively.