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,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.43.135.194 with SMTP id ih2mr6487600icc.7.1425635320664; Fri, 06 Mar 2015 01:48:40 -0800 (PST) X-Received: by 10.140.32.34 with SMTP id g31mr246448qgg.21.1425635320526; Fri, 06 Mar 2015 01:48:40 -0800 (PST) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!mx02.eternal-september.org!feeder.eternal-september.org!news.glorb.com!hl2no4026218igb.0!news-out.google.com!db6ni44602igc.0!nntp.google.com!hl2no4026209igb.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Fri, 6 Mar 2015 01:48:40 -0800 (PST) In-Reply-To: <973cdbad-228c-401f-bd51-d2bac0d1549e@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=217.140.96.140; posting-account=r0RePAgAAABkc8iAou09Mtfbf-fnKQql NNTP-Posting-Host: 217.140.96.140 References: <973cdbad-228c-401f-bd51-d2bac0d1549e@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <54d737cf-1790-429d-a650-3341741250ab@googlegroups.com> Subject: Re: Question: How do I establish a (.exe) program link for immediate calling of my cipher programs from a computer desktop say. From: MM Injection-Date: Fri, 06 Mar 2015 09:48:40 +0000 Content-Type: text/plain; charset=ISO-8859-1 Xref: news.eternal-september.org comp.lang.ada:25118 Date: 2015-03-06T01:48:40-08:00 List-Id: On Friday, 6 March 2015 09:05:02 UTC, Austin Obyrne wrote: > When you've all stopped laughing at this mundane question would somebody please put me right. > > My interest alone is in the core cipher programs that I write and store away in folders in my computer and I would like to make these programs more portable locally here at home. > > Apart from being a very good problem solver in Ada I have no pretention of being able to 'mix it' with the heavier developers in your group so I have no compunction about humbly slapping my soul on the table in this matter. > > I need to be able to do this as de rigueur in future with finished work because I want to make my stuff to be more transparent and user-friendly. > > Your help as always would be appreciated. > > Cheers - Austin O'Byrne Whenever you hit the 'Run ' button in your IDE, a .exe file is produced. That is how the program gets run. You will see these .exe files in all the .zip files you have uploaded to your web site. You will also see a bunch of .obj files, which are the compiled, but not yet linked files produced when each .adb (Ada source) file is compiled. Your Windows machine may not display the extensions by default, but you can turn them on. (Under the "View" option/tab, if I remember correctly.) M --