Site hosted by Angelfire.com: Build your free website today!
NAME
  FIELD Statement

SYNOPSIS
  FIELD [#]filenumber%, fieldwidth% AS stringvariable$
                      [,fieldwidth% AS stringvariable$] ...
      o filenumber%        The number of an open file.
      o fieldwidth%        The number of characters in the field.
      o stringvariable$    A variable that identifies the field and contains
                           field data.
      o Record variables usually provide a better way to handle record data.

DESCRIPTION
  Allocates space for variables in a random-access file buffer.

  Example:
      OPEN "FILEDAT.DAT" FOR RANDOM AS #1 LEN = 80
      FIELD #1, 30 AS name$, 50 AS address$

SEE ALSO
  GET (File I/O) PUT (File I/O) LSET RSET TYPE