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_20,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,8179c5e594eb425e,start X-Google-Attributes: gid103376,public From: Renwick Preston Subject: Contraint error Date: 1998/10/11 Message-ID: <3620BB8F.2973CE00@phoenix.net>#1/1 X-Deja-AN: 399933381 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii X-Trace: news.giganews.com 908114718 209.127.52.206 (Sun, 11 Oct 1998 09:05:18 CDT) MIME-Version: 1.0 NNTP-Posting-Date: Sun, 11 Oct 1998 09:05:18 CDT Newsgroups: comp.lang.ada Date: 1998-10-11T00:00:00+00:00 List-Id: My program just started creating a constraint error after I added some Boolean variables with code that used those variables. I'm thinking that the way I'm using them is what is causing the problem. I first initialize them all to False. In my program I have a case statement with some code for each case. Here is a snippet: case Month when June If June_Completed then <- Line added < some code here> June_Completed := True; <- Line added End if; <- Line added end case; Everything worked fine until I added the lines marked. What could be the problem? Ren