From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=0.6 required=5.0 tests=BAYES_40,INVALID_MSGID,XPRIO autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,8643e392874c5028,start X-Google-Attributes: gid103376,public From: "Karlene" Subject: Enumeration Constants Date: 2000/04/13 Message-ID: <8d3kqg$c4$1@news.cowan.edu.au>#1/1 X-Deja-AN: 610527091 X-Priority: 3 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Organization: Edith Cowan University X-MSMail-Priority: Normal Newsgroups: comp.lang.ada Date: 2000-04-13T00:00:00+00:00 List-Id: I want to define the following constants in my program but i am not sure how to distiguish what the values are. What is meant by the values is that for examle the small group, the values are 3, 4, 5, 6. For the Large group it is 12 to whatever number. How can i show this?? NAME VALUE DATA TYPE ROLE Single 1 - 2 Enumeration (group_type) Distinguishes group size by amount of tickets purchased Small 3 - 6 Enumeration (group_type) Distinguishes group size by amount of tickets purchased Medium 7 - 11 Enumeration (group_type) Distinguishes group size by amount of tickets purchased Large 12 - more Enumeration (group_type) Distinguishes group size by amount of tickets purchased