home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.databases
- Path: sparky!uunet!newsflash.concordia.ca!mizar.cc.umanitoba.ca!umnoor
- From: umnoor@ccu.umanitoba.ca (Nasir Ahmed Noor)
- Subject: Re: Two-dimensional array simulation in Paradox
- Message-ID: <C1E1Iq.I76@ccu.umanitoba.ca>
- Keywords: PARADOX ARRAYS
- Sender: news@ccu.umanitoba.ca
- Nntp-Posting-Host: ccu.umanitoba.ca
- Organization: University of Manitoba, Winnipeg, Canada
- References: <C1DM13.HLA@world.std.com>
- Date: Mon, 25 Jan 1993 02:28:01 GMT
- Lines: 13
-
- dcm@world.std.com (David C McGaffin) writes:
-
- > However, I can think of no way to get the size of the
- > array, without passing it to the procedure.
-
- The proc you are using is closed. It means it does not know of anyother
- var that exists outside of it UNLESS you tell it so. In your proc, add
- following as line #2
- UseVars aArray
- UseVars is followed by a comma separated list of variables you want your
- 'closed' proc to use.
-
- --nasir
-