The USFile Write Method

Previous Next

See Also

The Write method writes text to a file previously opened by the USFile.Open method in WRITE or APPEND mode.

The syntax is:

INVOKE USFile.Write

WITH

SELECT <Alias>, <Value>

Where Alias is the alias of the file to write to, previously assigned to a file using the USFile.Open method. The alias is case insensitive and may be preceded by 'USFile.'.

Example:

INVOKE USFile.Write

WITH

SELECT 'USFile.ToursFile', t.name

FROM Tours t