|
Hello Buck, You wrote: > I interpret the manual as telling me that I must make tables, prerun-time >arrays and compile-time arrays global; that is, defined outside of all the >subprocedures. So, I can certainly use any global item inside any >subprocedure. I probably misunderstood your question... That's exactly what the manual means but you can get the effect of local compile-time arrays by doing the following inside a procedure: DName+++++++++++ETDsFrom+++To/L+++IDc.Keywords+++++++++++++++++++++++++++++ D monthsDS DS D 20 INZ('January') D 20 INZ('February') D 20 INZ('March') D 20 INZ('April') D 20 INZ('May') D 20 INZ('June') D 20 INZ('July') D 20 INZ('August') D 20 INZ('September') D 20 INZ('October') D 20 INZ('November') D 20 INZ('December') D mthName 20 DIM(12) OVERLAY(monthsDS) The fact that the array is probably full of static data means that it would be better to allocate it once rather than on each procedure call so you should specify STATIC or simply make the array global to the module anyway thus completing the circle and leading us back to the starting position. Regards, Simon Coulter. «»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«» «» FlyByNight Software AS/400 Technical Specialists «» «» Eclipse the competition - run your business on an IBM AS/400. «» «» «» «» Phone: +61 3 9419 0175 Mobile: +61 0411 091 400 /"\ «» «» Fax: +61 3 9419 0175 mailto: shc@flybynight.com.au \ / «» «» X «» «» ASCII Ribbon campaign against HTML E-Mail / \ «» «»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»«»
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.