why you Use the Word "Set" Instead of "Enum" or "whatever words except Set" is it possible to call an "Enumeration Type" as a "Set Type" ?
TSetValues = (svOne, svTwo, svThree, svFour, svFive);
the Right declaration must be any name except this : TSetValues
TEnumValues = (evOne, evTwo, evThree, evFour, evFive);
Sets are declared like that:
TSet_Of_Digits = set of '1'..'9';
i hope i'm not wrong !!!