SP_COPYITOUT

 COPYITOUT()

  Short:
  ------
  COPYITOUT() Copies records to a new DBF

  Returns:
  --------
  nothing

  Syntax:
  -------
  COPYITOUT()

  Description:
  ------------
  Copies records to a new DBF, with query and tagging
  options.

  Examples:
  ---------
   Use (dbf_file)

   COPYITOUT()

  Notes:
  -------
  For more control, see COPYFIELDS(). If field
  selection is not needed, use COPYITOUT(), which is smaller and
  faster.

  Source:
  -------
  S_COPY.PRG

 

SP_COPYFIELDS

COPYFIELDS()

  Short:
  ------
  COPYFIELDS() Copies selected fields of selected records to new dbf

  Returns:
  --------
  None

  Syntax:
  -------
  COPYFIELDS([aFields,[aDescript]])

  Description:
  ------------
  This metafunction allows selection of fields, and
  selection of record criteria (filter) to be copied to a new DBF.

  [aFields]  is an array of valid field names. Default
  is all fields. Fields not of the current area are not allowed.

  [aDescript] is an array of field descriptions, which
  can only be passed if [aFields]  is passed, and which must
  reflect the fields in [aFields]

  Examples:
  ---------
   use (cDbfName)

   COPYFIELDS()  // its a metafunction...

  Source:
  -------
  S_COPYF.PRG