MSIR.0798 Explicit (globses) name required for shared variables

From m204wiki
Revision as of 16:45, 9 November 2010 by Admin (talk | contribs) (1 revision)
Jump to navigation Jump to search

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 the leading percent) as their global or session name if one is not specified, shared variables do not.

 Specify an explicit global name as in the following example:<pre> class silly public shared variable absurd is object stringList - shared('SILLY:ABSURD') end public shared end class