home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / lang / pascal / 5258 < prev    next >
Encoding:
Text File  |  1992-09-08  |  1014 b   |  37 lines

  1. Newsgroups: comp.lang.pascal
  2. Path: sparky!uunet!spool.mu.edu!sol.ctr.columbia.edu!ucselx!crash!tech
  3. From: tech@crash.cts.com (Don Bontemps)
  4. Subject: Re: I need help with copying "records"
  5. Organization: CTS Network Services (crash, ctsnet), El Cajon, CA
  6. Date: 08 Sep 92 20:11:58 PDT
  7. Message-ID: <1992Sep08.201158.21948@crash>
  8. References: <1992Sep07.162555.5226@crash> <92252.103512BOYDJ@QUCDN.QueensU.CA>
  9. Lines: 26
  10.  
  11. In article <92252.103512BOYDJ@QUCDN.QueensU.CA> Jeff Boyd <BOYDJ@QUCDN.QueensU.CA> writes:
  12. >
  13. >tech@crash.cts.com (Don Bontemps) wrote:
  14. >>
  15. >>This question is regarding the manipulation of record arrays.  Suppose I
  16. >>declare the following record array:
  17. >>
  18. >  ...
  19. >>
  20. >>Now if I wanted to copy data[1] to data [2], could I just say
  21. >>data[2] := data[1] or would I have to do it this way
  22. >>data[2].name := data[1].name and so on and so forth.  Your help
  23. >>would be greatly appreciated.  Thanks (in advance).
  24. >>
  25. >
  26. >
  27. >When you tried it both ways, what happened?
  28. >
  29. >
  30. >jeff
  31. >
  32.  
  33. I figured it out already.  
  34.  
  35.  
  36.  
  37.