Upgraded To 11.6, Can't Find Openedge.core.enummember. Class Object

Cecil

19+ years progress programming and still learning.
I've upgraded to OE 11.6 WebSpeed Workshop for Windows and now my code will not compile because it can't find OpenEdge.Core.EnumMember class file.

Is it in a procedure file? I through it was part of the gui/OpenEdge.Core.pl.??
 

Cecil

19+ years progress programming and still learning.
Yup it does seems that EnumMember.cls file is missing from the OpenEdge.Core.pl procedure libary in Version 11.6.
 

Cecil

19+ years progress programming and still learning.
I managed to yank this information from the 11.5 Procedure library.

Code:
/************************************************
Copyright (c)  2013 by Progress Software Corporation. All rights reserved.
*************************************************/
/** ------------------------------------------------------------------------
    File        : EnumMember
    Purpose     : Abstract class for Enumerations' members. 
    Syntax      :
    Description :
    @author pjudge
    Created     : Thu Jan 21 10:07:10 EST 2010
    Notes       : * We could add a temp-table to manage the EnumMembers' values
                    etc. That's not done right now because there's no pressing
                    need for it.
                 * Value takes precedence over name, when both are specified.
                 * This version based on the AutoEdge|TheFactory version
  --------------------------------------------------------------------- */
 

mollyfud

Member
I assume it was removed as not necessary when Enum support was added to the product in 11.6.
Not sure if this helps or not.
 
Top