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=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,62959480ff06e49e,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-07-04 15:25:07 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: ma740988@pegasus.cc.ucf.edu (Mark) Newsgroups: comp.lang.ada Subject: Two questions Date: 4 Jul 2002 15:25:06 -0700 Organization: http://groups.google.com/ Message-ID: NNTP-Posting-Host: 132.170.29.122 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1025821507 25718 127.0.0.1 (4 Jul 2002 22:25:07 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 4 Jul 2002 22:25:07 GMT Xref: archiver1.google.com comp.lang.ada:26861 Date: 2002-07-04T22:25:07+00:00 List-Id: Gents I'd like to do a GUI application in ADA. The application will be run on Solaris. Is there a 'free' toolset I could start off with that offers ease of use. Rapid seems to be the only one. In any event, help. Could someone provide sample code on accomplishing a task. I have an application where I want the user to enter up to 250 values max. Values are in the range 1 .. 65535. So now the user will first tell me how many values he wants: lets assume the user wants 10 values. My next question would be for user to enter the 10 values within the range specified above. I'll then store user defined values into an array which I'll pass on to a function that'll take user defined values and parse into 'hibyte versus lobyte'. The function part i can handle however,the user selection part I'm a bit confused about. I'd like to also have the option to to use a random number generator. This helps such that if the user watns 200 values. I'll generate 200 random numbers within specified range. So now my 'menu' would look like this: -- 1. How many numbers. -- 2. Random Numbers or User defined -- 3. Store numbers into array. -- 4. Pass numbers into function. I could do all this in Visual C etc, but as i'm learning Ada I've grown to like it and am now trying to perfect my Ada. Thanks in advance