home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / database / 9374 < prev    next >
Encoding:
Text File  |  1993-01-24  |  937 b   |  27 lines

  1. Newsgroups: comp.databases
  2. Path: sparky!uunet!newsflash.concordia.ca!mizar.cc.umanitoba.ca!umnoor
  3. From: umnoor@ccu.umanitoba.ca (Nasir Ahmed Noor)
  4. Subject: Re: Two-dimensional array simulation in Paradox
  5. Message-ID: <C1E1Iq.I76@ccu.umanitoba.ca>
  6. Keywords: PARADOX ARRAYS
  7. Sender: news@ccu.umanitoba.ca
  8. Nntp-Posting-Host: ccu.umanitoba.ca
  9. Organization: University of Manitoba, Winnipeg, Canada
  10. References: <C1DM13.HLA@world.std.com>
  11. Date: Mon, 25 Jan 1993 02:28:01 GMT
  12. Lines: 13
  13.  
  14. dcm@world.std.com (David C McGaffin) writes:
  15.  
  16. >    However, I can think of no way to get the size of the 
  17. >    array, without passing it to the procedure.
  18.  
  19. The proc you are using is closed. It means it does not know of anyother
  20. var that exists outside of it UNLESS you tell it so. In your proc, add 
  21. following as line #2
  22.                    UseVars aArray
  23. UseVars is followed by a comma separated list of variables you want your
  24. 'closed' proc to use.
  25.  
  26. --nasir
  27.