home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / VISUAL_B / ARQS_ZIP / IVB9205.ZIP / GARRAY.BAS < prev    next >
Encoding:
BASIC Source File  |  1992-02-12  |  607 b   |  15 lines

  1. Type TestRecordType
  2.   TestArray  As String  'You can use fixed- or variable- length
  3.                         '  strings in records, as long as you don't
  4.                         '  write the records to a random file. For
  5.                         '  random file i/o, you must use fixed-length
  6.                         '  strings.
  7.                         'To use the array routines with fixed-length
  8.                         '  strings eliminate the line that initializes
  9.                         '  Array$ with spaces in the CreateArray
  10.                         '  subprogram in ARRAY.BAS
  11. End Type
  12.  
  13.  
  14.  
  15.