Reset Statement

Description

Closes all disk files opened using the Open statement.

Syntax

Reset

Remarks

The Reset statement syntax closes all active files opened by the Open statement and writes the contents of all file buffers to disk.

See Also

Close Statement, End Statement, Open Statement.

Example

This example uses the Reset statement to close all open files and write the contents of all file buffers to disk.


For FileNumber = 1 To 5    ' Loop 5 times.
    ' Open file for output.
    Open "TEST" & FileNumber For Output As #FileNumber
    Write #FileNumber, "Hello World"    ' Write data to file.
Next FileNumber
Reset    ' Close files and write contents 
    ' to disk.